diff --git a/.sfdx/tools/246/StandardApexLibrary/ApexPages/Action.cls b/.sfdx/tools/246/StandardApexLibrary/ApexPages/Action.cls new file mode 100644 index 0000000..f037747 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ApexPages/Action.cls @@ -0,0 +1,7 @@ +global class Action { + global Action(String expression) { } + global Object clone() { } + global String getExpression() { } + global System.PageReference invoke() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ApexPages/Component.cls b/.sfdx/tools/246/StandardApexLibrary/ApexPages/Component.cls new file mode 100644 index 0000000..a7f29e8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ApexPages/Component.cls @@ -0,0 +1,12 @@ +global class Component { + global List childComponents; + global List componentIterations; + global ApexPages.expressions expressions; + global ApexPages.facets facets; + global String id; + global ApexPages.Component parent; + global Boolean rendered; + global Object clone() { } + global ApexPages.Component getComponentById(String id) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ApexPages/ComponentIteration.cls b/.sfdx/tools/246/StandardApexLibrary/ApexPages/ComponentIteration.cls new file mode 100644 index 0000000..7442dd2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ApexPages/ComponentIteration.cls @@ -0,0 +1,8 @@ +global class ComponentIteration { + global List childComponents; + global Object iterationValue; + global ApexPages.Component parent; + global Object clone() { } + global ApexPages.Component getComponentById(String id) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ApexPages/HammerProcessor.cls b/.sfdx/tools/246/StandardApexLibrary/ApexPages/HammerProcessor.cls new file mode 100644 index 0000000..818b706 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ApexPages/HammerProcessor.cls @@ -0,0 +1,3 @@ +global class HammerProcessor { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ApexPages/IdeaStandardController.cls b/.sfdx/tools/246/StandardApexLibrary/ApexPages/IdeaStandardController.cls new file mode 100644 index 0000000..4de741e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ApexPages/IdeaStandardController.cls @@ -0,0 +1,12 @@ +global class IdeaStandardController { + global void addFields(List fieldNames) { } + global System.PageReference cancel() { } + global System.PageReference delete() { } + global System.PageReference edit() { } + global List getCommentList() { } + global String getId() { } + global SObject getRecord() { } + global System.PageReference save() { } + global System.PageReference view() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ApexPages/IdeaStandardSetController.cls b/.sfdx/tools/246/StandardApexLibrary/ApexPages/IdeaStandardSetController.cls new file mode 100644 index 0000000..d0792ac --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ApexPages/IdeaStandardSetController.cls @@ -0,0 +1,26 @@ +global class IdeaStandardSetController { + global void addFields(List fieldNames) { } + global System.PageReference cancel() { } + global void first() { } + global Boolean getCompleteResult() { } + global String getFilterId() { } + global Boolean getHasNext() { } + global Boolean getHasPrevious() { } + global List getIdeaList() { } + global List getListViewOptions() { } + global Integer getPageNumber() { } + global Integer getPageSize() { } + global SObject getRecord() { } + global List getRecords() { } + global Integer getResultSize() { } + global List getSelected() { } + global void last() { } + global void next() { } + global void previous() { } + global System.PageReference save() { } + global void setFilterId(String filterId) { } + global void setPageNumber(Integer pageNumber) { } + global void setPageSize(Integer pageSize) { } + global void setSelected(List selected) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ApexPages/KnowledgeArticleVersionStandardController.cls b/.sfdx/tools/246/StandardApexLibrary/ApexPages/KnowledgeArticleVersionStandardController.cls new file mode 100644 index 0000000..fc37da4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ApexPages/KnowledgeArticleVersionStandardController.cls @@ -0,0 +1,11 @@ +global class KnowledgeArticleVersionStandardController { + global KnowledgeArticleVersionStandardController(SObject sobject) { } + global void addFields(List fieldNames) { } + global System.PageReference cancel() { } + global String getId() { } + global SObject getRecord() { } + global String getSourceId() { } + global void selectDataCategory(String categoryGroup, String category) { } + global System.PageReference view() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ApexPages/Message.cls b/.sfdx/tools/246/StandardApexLibrary/ApexPages/Message.cls new file mode 100644 index 0000000..9766ca8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ApexPages/Message.cls @@ -0,0 +1,10 @@ +global class Message { + global Message(ApexPages.Severity severity, String summary, String detail, String id) { } + global Message(ApexPages.Severity severity, String summary, String detail) { } + global Message(ApexPages.Severity severity, String message) { } + global String getComponentLabel() { } + global String getDetail() { } + global ApexPages.Severity getSeverity() { } + global String getSummary() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ApexPages/PageReference.cls b/.sfdx/tools/246/StandardApexLibrary/ApexPages/PageReference.cls new file mode 100644 index 0000000..1c1d5cd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ApexPages/PageReference.cls @@ -0,0 +1,3 @@ +global class PageReference { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ApexPages/SelectOption.cls b/.sfdx/tools/246/StandardApexLibrary/ApexPages/SelectOption.cls new file mode 100644 index 0000000..990bb34 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ApexPages/SelectOption.cls @@ -0,0 +1,3 @@ +global class SelectOption { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ApexPages/Severity.cls b/.sfdx/tools/246/StandardApexLibrary/ApexPages/Severity.cls new file mode 100644 index 0000000..6ee2231 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ApexPages/Severity.cls @@ -0,0 +1,7 @@ +global enum Severity { +CONFIRM, +ERROR, +FATAL, +INFO, +WARNING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ApexPages/StandardController.cls b/.sfdx/tools/246/StandardApexLibrary/ApexPages/StandardController.cls new file mode 100644 index 0000000..471bae5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ApexPages/StandardController.cls @@ -0,0 +1,12 @@ +global class StandardController { + global StandardController(SObject sobject) { } + global void addFields(List fieldNames) { } + global System.PageReference cancel() { } + global System.PageReference delete() { } + global System.PageReference edit() { } + global String getId() { } + global SObject getRecord() { } + global System.PageReference save() { } + global System.PageReference view() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ApexPages/StandardSetController.cls b/.sfdx/tools/246/StandardApexLibrary/ApexPages/StandardSetController.cls new file mode 100644 index 0000000..90ac883 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ApexPages/StandardSetController.cls @@ -0,0 +1,27 @@ +global class StandardSetController { + global StandardSetController(Database.QueryLocator queryLocator) { } + global StandardSetController(List records) { } + global void addFields(List fieldNames) { } + global System.PageReference cancel() { } + global void first() { } + global Boolean getCompleteResult() { } + global String getFilterId() { } + global Boolean getHasNext() { } + global Boolean getHasPrevious() { } + global List getListViewOptions() { } + global Integer getPageNumber() { } + global Integer getPageSize() { } + global SObject getRecord() { } + global List getRecords() { } + global Integer getResultSize() { } + global List getSelected() { } + global void last() { } + global void next() { } + global void previous() { } + global System.PageReference save() { } + global void setFilterId(String filterId) { } + global void setPageNumber(Integer pageNumber) { } + global void setPageSize(Integer pageSize) { } + global void setSelected(List selected) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/AppLauncher/AccountSettingsController.cls b/.sfdx/tools/246/StandardApexLibrary/AppLauncher/AccountSettingsController.cls new file mode 100644 index 0000000..26debbe --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/AppLauncher/AccountSettingsController.cls @@ -0,0 +1,18 @@ +global class AccountSettingsController { + global Object clone() { } + global static String getCity() { } + global static String getCountry() { } + global static List> getExtraFields(String extraFieldsFieldSet) { } + global static String getFirstName() { } + global static String getLanguage() { } + global static String getLastName() { } + global static String getLocale() { } + global static String getMobilePhone() { } + global static String getPostalCode() { } + global static String getState() { } + global static String getStreet() { } + global static String getTimeZone() { } + global static String getUserEmail() { } + global static String getWorkPhone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/AppLauncher/AppLauncherHelper.cls b/.sfdx/tools/246/StandardApexLibrary/AppLauncher/AppLauncherHelper.cls new file mode 100644 index 0000000..42423ab --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/AppLauncher/AppLauncherHelper.cls @@ -0,0 +1,4 @@ +global class AppLauncherHelper { + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/AppLauncher/AppLauncherSetupReordererController.cls b/.sfdx/tools/246/StandardApexLibrary/AppLauncher/AppLauncherSetupReordererController.cls new file mode 100644 index 0000000..3a561cf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/AppLauncher/AppLauncherSetupReordererController.cls @@ -0,0 +1,6 @@ +global class AppLauncherSetupReordererController { + global Object clone() { } + global static Map getModel() { } + global static String saveOrder(String applicationIds) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/AppLauncher/AppMenu.cls b/.sfdx/tools/246/StandardApexLibrary/AppLauncher/AppMenu.cls new file mode 100644 index 0000000..8739013 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/AppLauncher/AppMenu.cls @@ -0,0 +1,8 @@ +global class AppMenu { + global AppMenu() { } + global Object clone() { } + global static void setAppVisibility(Id appMenuItemId, Boolean isVisible) { } + global static void setOrgSortOrder(List applicationIds) { } + global static void setUserSortOrder(List applicationIds) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/AppLauncher/ChangePasswordController.cls b/.sfdx/tools/246/StandardApexLibrary/AppLauncher/ChangePasswordController.cls new file mode 100644 index 0000000..2313d57 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/AppLauncher/ChangePasswordController.cls @@ -0,0 +1,7 @@ +global class ChangePasswordController { + global static String changePassowrd(String newPassword, String confirmPassword, String oldPassword) { } + global static String changePassword(String newPassword, String confirmPassword, String oldPassword, Boolean shouldRedirect) { } + global Object clone() { } + global static String getPasswordPolicyStatement() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/AppLauncher/CommerceStoreController.cls b/.sfdx/tools/246/StandardApexLibrary/AppLauncher/CommerceStoreController.cls new file mode 100644 index 0000000..61efe23 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/AppLauncher/CommerceStoreController.cls @@ -0,0 +1,6 @@ +global class CommerceStoreController { + global CommerceStoreController() { } + global Object clone() { } + global static Map getCommerceContext() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/AppLauncher/CommunityLogoController.cls b/.sfdx/tools/246/StandardApexLibrary/AppLauncher/CommunityLogoController.cls new file mode 100644 index 0000000..6c40935 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/AppLauncher/CommunityLogoController.cls @@ -0,0 +1,7 @@ +global class CommunityLogoController { + global CommunityLogoController() { } + global Object clone() { } + global static String getCommunityName() { } + global static String getLogoURL() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/AppLauncher/EmployeeLoginLinkController.cls b/.sfdx/tools/246/StandardApexLibrary/AppLauncher/EmployeeLoginLinkController.cls new file mode 100644 index 0000000..6ff8e57 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/AppLauncher/EmployeeLoginLinkController.cls @@ -0,0 +1,7 @@ +global class EmployeeLoginLinkController { + global EmployeeLoginLinkController() { } + global Object clone() { } + global static String getEmployeeLoginUrl(String startUrl) { } + global static Boolean getIsAllowInternalUserLoginEnabled() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/AppLauncher/ForgotPasswordController.cls b/.sfdx/tools/246/StandardApexLibrary/AppLauncher/ForgotPasswordController.cls new file mode 100644 index 0000000..3d7c507 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/AppLauncher/ForgotPasswordController.cls @@ -0,0 +1,6 @@ +global class ForgotPasswordController { + global Object clone() { } + global static String forgotPassword(String username, String checkEmailUrl) { } + global static String setExperienceId(String expId) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/AppLauncher/IdentityHeaderController.cls b/.sfdx/tools/246/StandardApexLibrary/AppLauncher/IdentityHeaderController.cls new file mode 100644 index 0000000..c806319 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/AppLauncher/IdentityHeaderController.cls @@ -0,0 +1,11 @@ +global class IdentityHeaderController { + global Object clone() { } + global static Boolean getGuestUser() { } + global static Boolean getInternalUser() { } + global static String getLoginUrl() { } + global static String getLogoutUrl() { } + global static String getPhotoUrl() { } + global static String getUserDisplayName() { } + global static String getUserId() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/AppLauncher/LoginFormController.cls b/.sfdx/tools/246/StandardApexLibrary/AppLauncher/LoginFormController.cls new file mode 100644 index 0000000..b77ac33 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/AppLauncher/LoginFormController.cls @@ -0,0 +1,13 @@ +global class LoginFormController { + global Object clone() { } + global static String getForgotPasswordUrl() { } + global static Boolean getIsSelfRegistrationEnabled() { } + global static Boolean getIsUsernamePasswordEnabled() { } + global static String getLoginRightFrameUrl() { } + global static String getSelfRegistrationUrl() { } + global static Map getUsernamePasswordSelfRegEnabled() { } + global static String login(String username, String password, String startUrl) { } + global static String loginGetPageRefUrl(String username, String password, String startUrl) { } + global static String setExperienceId(String expId) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/AppLauncher/SelfRegisterController.cls b/.sfdx/tools/246/StandardApexLibrary/AppLauncher/SelfRegisterController.cls new file mode 100644 index 0000000..113df7a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/AppLauncher/SelfRegisterController.cls @@ -0,0 +1,11 @@ +global class SelfRegisterController { + global SelfRegisterController() { } + global Object clone() { } + global static String commonSelfRegisterGetRedirectUrl(String firstname, String lastname, String email, String password, String confirmPassword, String accountId, String regConfirmUrl, String extraFields, String startUrl, Boolean includePassword, Boolean redirect, Boolean enableBuyer, String buyerParams) { } + global static List> getExtraFields(String extraFieldsFieldSet) { } + global static Boolean isValidPassword(String password, String confirmPassword) { } + global static String selfRegister(String firstname, String lastname, String email, String password, String confirmPassword, String accountId, String regConfirmUrl, String extraFields, String startUrl, Boolean includePassword) { } + global static String selfRegisterGetRedirectUrl(String firstname, String lastname, String email, String password, String confirmPassword, String accountId, String regConfirmUrl, String extraFields, String startUrl, Boolean includePassword, Boolean redirect) { } + global static String setExperienceId(String expId) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/AppLauncher/SocialLoginController.cls b/.sfdx/tools/246/StandardApexLibrary/AppLauncher/SocialLoginController.cls new file mode 100644 index 0000000..c1977bc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/AppLauncher/SocialLoginController.cls @@ -0,0 +1,12 @@ +global class SocialLoginController { + global SocialLoginController() { } + global Object clone() { } + global static List getAuthProviders() { } + global static String getCommunityDomainSsoUrl(String startUrl, String developerName) { } + global static List getSamlProviders() { } + global static String getSamlSsoUrl(String startUrl, String samlId) { } + global static String getSamlSsoUrlNoCache(String startUrl, String samlId) { } + global static String getSsoUrl(String startUrl, String developerName) { } + global static String handleIdp() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Approval/LockResult.cls b/.sfdx/tools/246/StandardApexLibrary/Approval/LockResult.cls new file mode 100644 index 0000000..6eba0d5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Approval/LockResult.cls @@ -0,0 +1,9 @@ +global class LockResult { + global List errors; + global Id id; + global Boolean success; + global List getErrors() { } + global Id getId() { } + global Boolean isSuccess() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Approval/ProcessRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Approval/ProcessRequest.cls new file mode 100644 index 0000000..32b42e9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Approval/ProcessRequest.cls @@ -0,0 +1,9 @@ +global class ProcessRequest { + global String comments; + global List nextapproverids; + global String getComments() { } + global List getNextApproverIds() { } + global void setComments(String param0) { } + global void setNextApproverIds(List param0) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Approval/ProcessResult.cls b/.sfdx/tools/246/StandardApexLibrary/Approval/ProcessResult.cls new file mode 100644 index 0000000..e0e906f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Approval/ProcessResult.cls @@ -0,0 +1,17 @@ +global class ProcessResult { + global List actorids; + global String entityid; + global List errors; + global String instanceid; + global String instancestatus; + global List newworkitemids; + global Boolean success; + global List getActorIds() { } + global String getEntityId() { } + global List getErrors() { } + global String getInstanceId() { } + global String getInstanceStatus() { } + global List getNewWorkitemIds() { } + global Boolean isSuccess() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Approval/ProcessSubmitRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Approval/ProcessSubmitRequest.cls new file mode 100644 index 0000000..12c752f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Approval/ProcessSubmitRequest.cls @@ -0,0 +1,20 @@ +global class ProcessSubmitRequest { + global String objectid; + global String processdefinitionnameorid; + global Boolean skipentrycriteria; + global String submitterid; + global ProcessSubmitRequest() { } + global String getComments() { } + global List getNextApproverIds() { } + global String getObjectId() { } + global String getProcessDefinitionNameOrId() { } + global Boolean getSkipEntryCriteria() { } + global String getSubmitterId() { } + global void setComments(String param0) { } + global void setNextApproverIds(List param0) { } + global void setObjectId(String param0) { } + global void setProcessDefinitionNameOrId(String param0) { } + global void setSkipEntryCriteria(Boolean param0) { } + global void setSubmitterId(String param0) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Approval/ProcessWorkitemRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Approval/ProcessWorkitemRequest.cls new file mode 100644 index 0000000..48b98ce --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Approval/ProcessWorkitemRequest.cls @@ -0,0 +1,14 @@ +global class ProcessWorkitemRequest { + global String action; + global String workitemid; + global ProcessWorkitemRequest() { } + global String getAction() { } + global String getComments() { } + global List getNextApproverIds() { } + global String getWorkitemId() { } + global void setAction(String param0) { } + global void setComments(String param0) { } + global void setNextApproverIds(List param0) { } + global void setWorkitemId(String param0) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Approval/UnlockResult.cls b/.sfdx/tools/246/StandardApexLibrary/Approval/UnlockResult.cls new file mode 100644 index 0000000..d85cc3a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Approval/UnlockResult.cls @@ -0,0 +1,9 @@ +global class UnlockResult { + global List errors; + global Id id; + global Boolean success; + global List getErrors() { } + global Id getId() { } + global Boolean isSuccess() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/AuthConfiguration.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/AuthConfiguration.cls new file mode 100644 index 0000000..879e75e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/AuthConfiguration.cls @@ -0,0 +1,30 @@ +global class AuthConfiguration { + global AuthConfiguration(Id networkId, String start_URL) { } + global AuthConfiguration(String URL, String start_URL) { } + global Object clone() { } + global Boolean getAllowInternalUserLoginEnabled() { } + global AuthConfig getAuthConfig() { } + global List getAuthConfigProviders() { } + global static String getAuthProviderSsoDomainUrl(String communityUrl, String startUrl, String developerName) { } + global static String getAuthProviderSsoUrl(String communityUrl, String startUrl, String developerName) { } + global List getAuthProviders() { } + global String getBackgroundColor() { } + global Boolean getCertificateLoginEnabled(String domainUrl) { } + global static String getCertificateLoginUrl(String domainUrl, String startUrl) { } + global Id getDefaultProfileForRegistration() { } + global String getFooterText() { } + global String getForgotPasswordUrl() { } + global Boolean getHeadlessForgotPasswordEnabled() { } + global Boolean getHeadlessFrgtPswEnabled() { } + global Boolean getHeadlessRegistrationEnabled() { } + global String getLoginRightFrameUrl() { } + global String getLogoUrl() { } + global List getSamlProviders() { } + global static String getSamlSsoUrl(String cUrl, String startUrl, String samlId) { } + global Boolean getSelfRegistrationEnabled() { } + global String getSelfRegistrationUrl() { } + global String getStartUrl() { } + global Boolean getUsernamePasswordEnabled() { } + global Boolean isCommunityUsingSiteAsContainer() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/AuthProviderCallbackState.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/AuthProviderCallbackState.cls new file mode 100644 index 0000000..1d15979 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/AuthProviderCallbackState.cls @@ -0,0 +1,8 @@ +global class AuthProviderCallbackState { + global String body; + global Map headers; + global Map queryParameters; + global AuthProviderCallbackState(Map headers, String body, Map queryParameters) { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/AuthProviderPlugin.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/AuthProviderPlugin.cls new file mode 100644 index 0000000..403ff12 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/AuthProviderPlugin.cls @@ -0,0 +1,7 @@ +global interface AuthProviderPlugin { + String getCustomMetadataType(); + Auth.UserData getUserInfo(Map param0, Auth.AuthProviderTokenResponse param1); + Auth.AuthProviderTokenResponse handleCallback(Map param0, Auth.AuthProviderCallbackState param1); + System.PageReference initiate(Map param0, String param1); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/AuthProviderPluginClass.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/AuthProviderPluginClass.cls new file mode 100644 index 0000000..d1cef6a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/AuthProviderPluginClass.cls @@ -0,0 +1,6 @@ +global class AuthProviderPluginClass { + global AuthProviderPluginClass() { } + global Object clone() { } + global Auth.OAuthRefreshResult refresh(Map authProviderConfiguration, String refreshToken) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/AuthProviderPluginException.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/AuthProviderPluginException.cls new file mode 100644 index 0000000..58b288c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/AuthProviderPluginException.cls @@ -0,0 +1,9 @@ +global class AuthProviderPluginException extends Exception { + global AuthProviderPluginException(String param0, Exception param1) { } + global AuthProviderPluginException(Exception param0) { } + global AuthProviderPluginException(String param0) { } + global AuthProviderPluginException() { } + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/AuthProviderTokenResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/AuthProviderTokenResponse.cls new file mode 100644 index 0000000..97cc608 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/AuthProviderTokenResponse.cls @@ -0,0 +1,9 @@ +global class AuthProviderTokenResponse { + global String oauthSecretOrRefreshToken; + global String oauthToken; + global String provider; + global String state; + global AuthProviderTokenResponse(String provider, String oauthToken, String oauthSecretOrRefreshToken, String state) { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/AuthToken.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/AuthToken.cls new file mode 100644 index 0000000..f2b092f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/AuthToken.cls @@ -0,0 +1,9 @@ +global class AuthToken { + global AuthToken() { } + global Object clone() { } + global static String getAccessToken(String authProviderId, String providerName) { } + global static Map getAccessTokenMap(String authProviderId, String providerName) { } + global static Map refreshAccessToken(String authProviderId, String providerName, String oldAccessToken) { } + global static Boolean revokeAccess(String authProviderId, String providerName, String userId, String remoteIdentifier) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/C2CToken.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/C2CToken.cls new file mode 100644 index 0000000..05aaa08 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/C2CToken.cls @@ -0,0 +1,8 @@ +global class C2CToken { + global C2CToken() { } + global Object clone() { } + global static String mintJwt(String audienceId, String integrationName) { } + global static String mintJwt(String audienceId) { } + global static String mintJwtForService(String audienceId, String integrationName) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/CommunitiesUtil.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/CommunitiesUtil.cls new file mode 100644 index 0000000..a0bd5df --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/CommunitiesUtil.cls @@ -0,0 +1,9 @@ +global class CommunitiesUtil { + global CommunitiesUtil() { } + global Object clone() { } + global static String getLogoutUrl() { } + global static String getUserDisplayName() { } + global static Boolean isGuestUser() { } + global static Boolean isInternalUser() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/ConfigurableSelfRegHandler.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/ConfigurableSelfRegHandler.cls new file mode 100644 index 0000000..eb64d85 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/ConfigurableSelfRegHandler.cls @@ -0,0 +1,4 @@ +global interface ConfigurableSelfRegHandler { + Id createUser(Id param0, Id param1, Map param2, String param3); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/ConfirmUserRegistrationHandler.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/ConfirmUserRegistrationHandler.cls new file mode 100644 index 0000000..02f83e0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/ConfirmUserRegistrationHandler.cls @@ -0,0 +1,4 @@ +global interface ConfirmUserRegistrationHandler { + Id confirmUser(Id param0, Id param1, Id param2, Auth.UserData param3); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/ConnectedAppPlugin.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/ConnectedAppPlugin.cls new file mode 100644 index 0000000..383a1d3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/ConnectedAppPlugin.cls @@ -0,0 +1,12 @@ +global class ConnectedAppPlugin { + global ConnectedAppPlugin() { } + global Boolean authorize(Id userId, Id connectedAppId, Boolean isAdminApproved, Auth.InvocationContext context) { } + global Boolean authorize(Id userId, Id connectedAppId, Boolean isAdminApproved) { } + global Object clone() { } + global Map customAttributes(Id userId, Id connectedAppId, Map formulaDefinedAttributes, Auth.InvocationContext context) { } + global Map customAttributes(Id userId, Map formulaDefinedAttributes) { } + global dom.XmlNode modifySAMLResponse(Map authSession, Id connectedAppId, dom.XmlNode samlResponse) { } + global void refresh(Id userId, Id connectedAppId, Auth.InvocationContext context) { } + global void refresh(Id userId, Id connectedAppId) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/ConnectedAppPluginException.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/ConnectedAppPluginException.cls new file mode 100644 index 0000000..abf6cc1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/ConnectedAppPluginException.cls @@ -0,0 +1,9 @@ +global class ConnectedAppPluginException extends Exception { + global ConnectedAppPluginException(String param0, Exception param1) { } + global ConnectedAppPluginException(Exception param0) { } + global ConnectedAppPluginException(String param0) { } + global ConnectedAppPluginException() { } + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/DiscoveryCustomErrorException.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/DiscoveryCustomErrorException.cls new file mode 100644 index 0000000..ebb318e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/DiscoveryCustomErrorException.cls @@ -0,0 +1,9 @@ +global class DiscoveryCustomErrorException extends Exception { + global DiscoveryCustomErrorException(String param0, Exception param1) { } + global DiscoveryCustomErrorException(Exception param0) { } + global DiscoveryCustomErrorException(String param0) { } + global DiscoveryCustomErrorException() { } + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/HeadlessSelfRegistrationHandler.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/HeadlessSelfRegistrationHandler.cls new file mode 100644 index 0000000..2d29569 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/HeadlessSelfRegistrationHandler.cls @@ -0,0 +1,4 @@ +global interface HeadlessSelfRegistrationHandler { + User createUser(Id param0, Auth.UserData param1, String param2, String param3, String param4); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/InvocationContext.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/InvocationContext.cls new file mode 100644 index 0000000..dfad3a8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/InvocationContext.cls @@ -0,0 +1,17 @@ +global enum InvocationContext { +ASSET_TOKEN, +OAUTH1, +OAUTH2_JWT_BEARER_TOKEN, +OAUTH2_SAML_ASSERTION, +OAUTH2_SAML_BEARER_ASSERTION, +OAUTH2_USERNAME_PASSWORD, +OAUTH2_USER_AGENT_ID_TOKEN, +OAUTH2_USER_AGENT_TOKEN, +OAUTH2_WEB_SERVER, +OAUTH2_WEB_SERVER_ID_TOKEN, +OPENIDCONNECT, +REFRESH_TOKEN, +SAML_ASSERTION, +UNKNOWN, +USERID_ENDPOINT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/JWS.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/JWS.cls new file mode 100644 index 0000000..3a226cf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/JWS.cls @@ -0,0 +1,7 @@ +global class JWS { + global JWS(Auth.JWT jwt, String certDevName) { } + global JWS(String payload, String certDevName) { } + global Object clone() { } + global String getCompactSerialization() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/JWT.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/JWT.cls new file mode 100644 index 0000000..10174ab --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/JWT.cls @@ -0,0 +1,18 @@ +global class JWT { + global JWT() { } + global Object clone() { } + global Map getAdditionalClaims() { } + global String getAud() { } + global String getIss() { } + global Integer getNbfClockSkew() { } + global String getSub() { } + global Integer getValidityLength() { } + global void setAdditionalClaims(Map additionalClaims) { } + global void setAud(String aud) { } + global void setIss(String iss) { } + global void setNbfClockSkew(Integer nbfClockSkew) { } + global void setSub(String sub) { } + global void setValidityLength(Integer validityLength) { } + global String toJSONString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/JWTBearerTokenExchange.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/JWTBearerTokenExchange.cls new file mode 100644 index 0000000..1db1a89 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/JWTBearerTokenExchange.cls @@ -0,0 +1,23 @@ +global class JWTBearerTokenExchange { + global JWTBearerTokenExchange(String tokenEndpoint, Auth.JWS jws) { } + global JWTBearerTokenExchange() { } + global Object clone() { } + global String getAccessToken() { } + global String getGrantType() { } + global System.HttpResponse getHttpResponse() { } + global Auth.JWS getJWS() { } + global String getTokenEndpoint() { } + global void setGrantType(String grantType) { } + global void setJWS(Auth.JWS jws) { } + global void setTokenEndpoint(String tokenEndpoint) { } +global class JWTBearerTokenExchangeException extends Exception { + global JWTBearerTokenExchange.JWTBearerTokenExchangeException(String param0, Exception param1) { } + global JWTBearerTokenExchange.JWTBearerTokenExchangeException(Exception param0) { } + global JWTBearerTokenExchange.JWTBearerTokenExchangeException(String param0) { } + global JWTBearerTokenExchange.JWTBearerTokenExchangeException() { } + global Object clone() { } + global String getTypeName() { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/LightningLoginEligibility.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/LightningLoginEligibility.cls new file mode 100644 index 0000000..706099f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/LightningLoginEligibility.cls @@ -0,0 +1,9 @@ +global enum LightningLoginEligibility { +ELIGIBLE, +ORG_AUTHENTICATOR_NOT_ENABLED, +ORG_PREF_NOT_ENABLED, +USER_AUTHENTICATOR_NOT_CONNECTED, +USER_NOT_ALLOWED, +USER_NOT_ENROLLED, +USER_PERM_NOT_ENABLED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/LoginDiscoveryException.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/LoginDiscoveryException.cls new file mode 100644 index 0000000..13234a8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/LoginDiscoveryException.cls @@ -0,0 +1,9 @@ +global class LoginDiscoveryException extends Exception { + global LoginDiscoveryException(String param0, Exception param1) { } + global LoginDiscoveryException(Exception param0) { } + global LoginDiscoveryException(String param0) { } + global LoginDiscoveryException() { } + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/LoginDiscoveryHandler.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/LoginDiscoveryHandler.cls new file mode 100644 index 0000000..2227288 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/LoginDiscoveryHandler.cls @@ -0,0 +1,4 @@ +global interface LoginDiscoveryHandler { + System.PageReference login(String param0, String param1, Map param2); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/LoginDiscoveryMethod.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/LoginDiscoveryMethod.cls new file mode 100644 index 0000000..c428005 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/LoginDiscoveryMethod.cls @@ -0,0 +1,4 @@ +global enum LoginDiscoveryMethod { +LIGHTNING_LOGIN, +PASSWORD +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/MyDomainLoginDiscoveryHandler.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/MyDomainLoginDiscoveryHandler.cls new file mode 100644 index 0000000..99d545f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/MyDomainLoginDiscoveryHandler.cls @@ -0,0 +1,4 @@ +global interface MyDomainLoginDiscoveryHandler { + System.PageReference login(String param0, String param1, Map param2); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/OAuthRefreshResult.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/OAuthRefreshResult.cls new file mode 100644 index 0000000..8e3154d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/OAuthRefreshResult.cls @@ -0,0 +1,9 @@ +global class OAuthRefreshResult { + global String accessToken; + global String error; + global String refreshToken; + global OAuthRefreshResult(String accessToken, String refreshToken, String error) { } + global OAuthRefreshResult(String accessToken, String refreshToken) { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/RegistrationHandler.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/RegistrationHandler.cls new file mode 100644 index 0000000..94881e9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/RegistrationHandler.cls @@ -0,0 +1,5 @@ +global interface RegistrationHandler { + User createUser(Id param0, Auth.UserData param1); + void updateUser(Id param0, Id param1, Auth.UserData param2); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/SamlJitHandler.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/SamlJitHandler.cls new file mode 100644 index 0000000..48e838b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/SamlJitHandler.cls @@ -0,0 +1,5 @@ +global interface SamlJitHandler { + User createUser(Id param0, Id param1, Id param2, String param3, Map param4, String param5); + void updateUser(Id param0, Id param1, Id param2, Id param3, String param4, Map param5, String param6); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/SessionLevel.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/SessionLevel.cls new file mode 100644 index 0000000..50946be --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/SessionLevel.cls @@ -0,0 +1,5 @@ +global enum SessionLevel { +HIGH_ASSURANCE, +LOW, +STANDARD +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/SessionManagement.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/SessionManagement.cls new file mode 100644 index 0000000..acbd7fe --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/SessionManagement.cls @@ -0,0 +1,22 @@ +global class SessionManagement { + global SessionManagement() { } + global Object clone() { } + global static System.PageReference finishLoginDiscovery(Auth.LoginDiscoveryMethod method, Id userId) { } + global static System.PageReference finishLoginFlow(String startUrl) { } + global static System.PageReference finishLoginFlow() { } + global static String generateVerificationUrl(Auth.VerificationPolicy policy, String description, String retUrl) { } + global static Map getCurrentSession() { } + global static Auth.LightningLoginEligibility getLightningLoginEligibility(Id userId) { } + global static Map getQrCode() { } + global static Auth.SessionLevel getRequiredSessionLevelForProfile(String profileId) { } + global static Map ignoreForConcurrentSessionLimit(Object sessions) { } + global static Boolean inOrgNetworkRange(String ipAddress) { } + global static Boolean isIpAllowedForProfile(String profileId, String ipAddress) { } + global static void setSessionLevel(Auth.SessionLevel level) { } + global static Boolean validateTotpTokenForKey(String totpSharedKey, String totpCode, String description) { } + global static Boolean validateTotpTokenForKey(String totpSharedKey, String totpCode) { } + global static Boolean validateTotpTokenForUser(String totpCode, String description) { } + global static Boolean validateTotpTokenForUser(String totpCode) { } + global static System.PageReference verifyDeviceFlow(String userCode, String startUrl) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/ThirdPartyAccountLinkInfo.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/ThirdPartyAccountLinkInfo.cls new file mode 100644 index 0000000..cb8e8e2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/ThirdPartyAccountLinkInfo.cls @@ -0,0 +1,14 @@ +global class ThirdPartyAccountLinkInfo { + global String handle; + global String id; + global Boolean isNotSsoUsable; + global String provider; + global String remoteIdentifier; + global String ssoProviderId; + global String ssoProviderName; + global String thirdPartyAccountLinkKey; + global String userId; + global ThirdPartyAccountLinkInfo(String oHandle, String oRemoteIdentifier, String oUserId, String oSsoProviderId) { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/UserData.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/UserData.cls new file mode 100644 index 0000000..22697e9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/UserData.cls @@ -0,0 +1,16 @@ +global class UserData { + global Map attributeMap; + global String email; + global String firstName; + global String fullName; + global String identifier; + global String lastName; + global String link; + global String locale; + global String provider; + global String siteLoginUrl; + global String username; + global UserData(String identifier, String firstName, String lastName, String fullName, String email, String link, String username, String locale, String provider, String siteLoginUrl, Map attributeMap) { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/UserOrgInfo.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/UserOrgInfo.cls new file mode 100644 index 0000000..37a0834 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/UserOrgInfo.cls @@ -0,0 +1,14 @@ +global class UserOrgInfo { + global String email; + global Boolean isActive; + global String myDomain; + global String orgId; + global String orgName; + global String organizationType; + global String status; + global String tenantTier; + global String userId; + global String userName; + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/VerificationException.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/VerificationException.cls new file mode 100644 index 0000000..2ebdb5f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/VerificationException.cls @@ -0,0 +1,10 @@ +global class VerificationException extends Exception { + global VerificationException(Auth.VerificationPolicy policy, String retUrl, String activityDescription) { } + global VerificationException(Auth.VerificationPolicy policy, String activityDescription) { } + global Object clone() { } + global String getActivityDescription() { } + global Auth.VerificationPolicy getPolicy() { } + global String getRetUrl() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/VerificationMethod.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/VerificationMethod.cls new file mode 100644 index 0000000..16c1b00 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/VerificationMethod.cls @@ -0,0 +1,10 @@ +global enum VerificationMethod { +BUILT_IN_AUTHENTICATOR, +EMAIL, +PASSWORD, +SALESFORCE_AUTHENTICATOR, +SECURITY_KEY, +SMS, +TOTP, +U2F +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/VerificationPolicy.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/VerificationPolicy.cls new file mode 100644 index 0000000..45ae5a8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/VerificationPolicy.cls @@ -0,0 +1,3 @@ +global enum VerificationPolicy { +HIGH_ASSURANCE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Auth/VerificationResult.cls b/.sfdx/tools/246/StandardApexLibrary/Auth/VerificationResult.cls new file mode 100644 index 0000000..eb0718f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Auth/VerificationResult.cls @@ -0,0 +1,8 @@ +global class VerificationResult { + global String message; + global System.PageReference redirect; + global Boolean success; + global VerificationResult(System.PageReference redirect, Boolean success, String message) { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Cache/BulkApiKeysLimitExceededException.cls b/.sfdx/tools/246/StandardApexLibrary/Cache/BulkApiKeysLimitExceededException.cls new file mode 100644 index 0000000..ad154ab --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Cache/BulkApiKeysLimitExceededException.cls @@ -0,0 +1,9 @@ +global class BulkApiKeysLimitExceededException extends Exception { + global BulkApiKeysLimitExceededException(String param0, Exception param1) { } + global BulkApiKeysLimitExceededException(Exception param0) { } + global BulkApiKeysLimitExceededException(String param0) { } + global BulkApiKeysLimitExceededException() { } + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Cache/CacheBuilder.cls b/.sfdx/tools/246/StandardApexLibrary/Cache/CacheBuilder.cls new file mode 100644 index 0000000..e9985fc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Cache/CacheBuilder.cls @@ -0,0 +1,4 @@ +global interface CacheBuilder { + Object doLoad(String param0); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Cache/CacheBuilderExecutionException.cls b/.sfdx/tools/246/StandardApexLibrary/Cache/CacheBuilderExecutionException.cls new file mode 100644 index 0000000..0a0ddc4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Cache/CacheBuilderExecutionException.cls @@ -0,0 +1,9 @@ +global class CacheBuilderExecutionException extends Exception { + global CacheBuilderExecutionException(String param0, Exception param1) { } + global CacheBuilderExecutionException(Exception param0) { } + global CacheBuilderExecutionException(String param0) { } + global CacheBuilderExecutionException() { } + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Cache/CacheException.cls b/.sfdx/tools/246/StandardApexLibrary/Cache/CacheException.cls new file mode 100644 index 0000000..d29282d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Cache/CacheException.cls @@ -0,0 +1,9 @@ +global class CacheException extends Exception { + global CacheException(String param0, Exception param1) { } + global CacheException(Exception param0) { } + global CacheException(String msg) { } + global CacheException() { } + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Cache/ExecutionException.cls b/.sfdx/tools/246/StandardApexLibrary/Cache/ExecutionException.cls new file mode 100644 index 0000000..6d0a9bb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Cache/ExecutionException.cls @@ -0,0 +1,9 @@ +global class ExecutionException extends Exception { + global ExecutionException(String param0, Exception param1) { } + global ExecutionException(Exception param0) { } + global ExecutionException(String param0) { } + global ExecutionException() { } + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Cache/InvalidCacheBuilderException.cls b/.sfdx/tools/246/StandardApexLibrary/Cache/InvalidCacheBuilderException.cls new file mode 100644 index 0000000..79850b4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Cache/InvalidCacheBuilderException.cls @@ -0,0 +1,9 @@ +global class InvalidCacheBuilderException extends Exception { + global InvalidCacheBuilderException(String param0, Exception param1) { } + global InvalidCacheBuilderException(Exception param0) { } + global InvalidCacheBuilderException(String param0) { } + global InvalidCacheBuilderException() { } + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Cache/InvalidParamException.cls b/.sfdx/tools/246/StandardApexLibrary/Cache/InvalidParamException.cls new file mode 100644 index 0000000..7852284 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Cache/InvalidParamException.cls @@ -0,0 +1,9 @@ +global class InvalidParamException extends Exception { + global InvalidParamException(String param0, Exception param1) { } + global InvalidParamException(Exception param0) { } + global InvalidParamException(String param0) { } + global InvalidParamException() { } + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Cache/ItemSizeLimitExceededException.cls b/.sfdx/tools/246/StandardApexLibrary/Cache/ItemSizeLimitExceededException.cls new file mode 100644 index 0000000..9630b68 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Cache/ItemSizeLimitExceededException.cls @@ -0,0 +1,9 @@ +global class ItemSizeLimitExceededException extends Exception { + global ItemSizeLimitExceededException(String param0, Exception param1) { } + global ItemSizeLimitExceededException(Exception param0) { } + global ItemSizeLimitExceededException(String param0) { } + global ItemSizeLimitExceededException() { } + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Cache/Org.cls b/.sfdx/tools/246/StandardApexLibrary/Cache/Org.cls new file mode 100644 index 0000000..8f4d00e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Cache/Org.cls @@ -0,0 +1,41 @@ +global class Org { + global Integer MAX_TTL_SECS; + global Org() { } + global Object clone() { } + global static List contains(List keys) { } + global static Map contains(Set keys) { } + global static Boolean contains(String key) { } + global static Object get(System.Type cacheBuilder, String key) { } + global static List get(List keys) { } + global static Map get(Set keys) { } + global static Object get(String key) { } + global static Long getAvgGetSize() { } + global static Long getAvgGetTime() { } + global static Long getAvgValueSize() { } + global static Double getCapacity() { } + global static Set getKeys() { } + global static Long getMaxGetSize() { } + global static Long getMaxGetTime() { } + global static Long getMaxValueSize() { } + global static Double getMissRate() { } + global static String getName() { } + global static Long getNumKeys() { } + global static cache.OrgPartition getPartition(String partitionName) { } + global static void put(String key, Object value, Integer ttlSecs, cache.Visibility visibility, Boolean immutable) { } + global static void put(String key, Object value, Integer ttlSecs) { } + global static void put(String key, Object value, cache.Visibility visibility) { } + global static void put(String key, Object value) { } + global static Boolean remove(System.Type cacheBuilder, String key) { } + global static List remove(List keys) { } + global static Boolean remove(String key) { } +global class OrgCacheException extends Exception { + global Org.OrgCacheException(String param0, Exception param1) { } + global Org.OrgCacheException(Exception param0) { } + global Org.OrgCacheException(String msg) { } + global Org.OrgCacheException() { } + global Object clone() { } + global String getTypeName() { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Cache/OrgPartition.cls b/.sfdx/tools/246/StandardApexLibrary/Cache/OrgPartition.cls new file mode 100644 index 0000000..1644811 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Cache/OrgPartition.cls @@ -0,0 +1,36 @@ +global class OrgPartition { + global OrgPartition(String fullyQualifiedPartitionName) { } + global Object clone() { } + global Map contains(Set keys) { } + global Boolean contains(String key) { } + global static String createFullyQualifiedKey(String namespace, String partition, String key) { } + global static String createFullyQualifiedPartition(String namespace, String partition) { } + global Object get(System.Type cacheBuilder, String key) { } + global Map get(Set keys) { } + global Object get(String key) { } + global Long getAvgGetSize() { } + global Long getAvgGetTime() { } + global Long getAvgValueSize() { } + global Double getCapacity() { } + global Set getKeys() { } + global Long getMaxGetSize() { } + global Long getMaxGetTime() { } + global Long getMaxValueSize() { } + global Double getMissRate() { } + global String getName() { } + global Long getNumKeys() { } + global Boolean isAvailable() { } + global void put(String key, Object value, Integer ttlSecs, cache.Visibility visibility, Boolean immutable) { } + global void put(String key, Object value, Integer ttlSecs) { } + global void put(String key, Object value, cache.Visibility visibility) { } + global void put(String key, Object value) { } + global Boolean remove(System.Type cacheBuilder, String key) { } + global Boolean remove(String key) { } + global static void validateCacheBuilder(System.Type cacheBuilder) { } + global static void validateKey(Boolean isDefault, String key) { } + global static void validateKeyValue(Boolean isDefault, String key, Object value) { } + global static void validateKeys(Boolean isDefault, List keys) { } + global static void validateKeys(Boolean isDefault, Set keys) { } + global static void validatePartitionName(String name) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Cache/Partition.cls b/.sfdx/tools/246/StandardApexLibrary/Cache/Partition.cls new file mode 100644 index 0000000..54a9c5f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Cache/Partition.cls @@ -0,0 +1,36 @@ +global class Partition { + global Partition() { } + global Object clone() { } + global Map contains(Set keys) { } + global Boolean contains(String key) { } + global static String createFullyQualifiedKey(String namespace, String partition, String key) { } + global static String createFullyQualifiedPartition(String namespace, String partition) { } + global Object get(System.Type cacheBuilder, String key) { } + global Map get(Set keys) { } + global Object get(String key) { } + global Long getAvgGetSize() { } + global Long getAvgGetTime() { } + global Long getAvgValueSize() { } + global Double getCapacity() { } + global Set getKeys() { } + global Long getMaxGetSize() { } + global Long getMaxGetTime() { } + global Long getMaxValueSize() { } + global Double getMissRate() { } + global String getName() { } + global Long getNumKeys() { } + global Boolean isAvailable() { } + global void put(String key, Object value, Integer ttlSecs, cache.Visibility visibility, Boolean immutable) { } + global void put(String key, Object value, Integer ttlSecs) { } + global void put(String key, Object value, cache.Visibility visibility) { } + global void put(String key, Object value) { } + global Boolean remove(System.Type cacheBuilder, String key) { } + global Boolean remove(String key) { } + global static void validateCacheBuilder(System.Type cacheBuilder) { } + global static void validateKey(Boolean isDefault, String key) { } + global static void validateKeyValue(Boolean isDefault, String key, Object value) { } + global static void validateKeys(Boolean isDefault, List keys) { } + global static void validateKeys(Boolean isDefault, Set keys) { } + global static void validatePartitionName(String name) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Cache/PlatformCacheDelegateWrapper.cls b/.sfdx/tools/246/StandardApexLibrary/Cache/PlatformCacheDelegateWrapper.cls new file mode 100644 index 0000000..c32c44c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Cache/PlatformCacheDelegateWrapper.cls @@ -0,0 +1,4 @@ +global class PlatformCacheDelegateWrapper { + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Cache/PlatformCacheInvalidOperationException.cls b/.sfdx/tools/246/StandardApexLibrary/Cache/PlatformCacheInvalidOperationException.cls new file mode 100644 index 0000000..641adf7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Cache/PlatformCacheInvalidOperationException.cls @@ -0,0 +1,9 @@ +global class PlatformCacheInvalidOperationException extends Exception { + global PlatformCacheInvalidOperationException(String param0, Exception param1) { } + global PlatformCacheInvalidOperationException(Exception param0) { } + global PlatformCacheInvalidOperationException(String param0) { } + global PlatformCacheInvalidOperationException() { } + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Cache/ScanResult.cls b/.sfdx/tools/246/StandardApexLibrary/Cache/ScanResult.cls new file mode 100644 index 0000000..3ff9502 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Cache/ScanResult.cls @@ -0,0 +1,8 @@ +global class ScanResult { + global Boolean isDone; + global Map result; + global String scanLocator; + global ScanResult(Map result, String scanLocator, Boolean isDone) { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Cache/SecondaryKeyApi.cls b/.sfdx/tools/246/StandardApexLibrary/Cache/SecondaryKeyApi.cls new file mode 100644 index 0000000..cec2aa2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Cache/SecondaryKeyApi.cls @@ -0,0 +1,10 @@ +global class SecondaryKeyApi { + global Object clone() { } + global static cache.SecondaryKeyApi get(String featureName) { } + global void putImmediate(String key, Object value, String secondaryKey) { } + global Boolean remove(String key) { } + global Long scanForCount(String startKey, String endKey) { } + global cache.ScanResult scanForKeyValues(String startKey, String endKey, Integer batchSize) { } + global cache.ScanResult scanForMoreKeyValues(String scanLocator, Integer batchSize) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Cache/Session.cls b/.sfdx/tools/246/StandardApexLibrary/Cache/Session.cls new file mode 100644 index 0000000..b1b691a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Cache/Session.cls @@ -0,0 +1,48 @@ +global class Session { + global Integer MAX_TTL_SECS; + global Session() { } + global Object clone() { } + global static Map contains(Set keys) { } + global static Boolean contains(String key) { } + global static Object get(System.Type cacheBuilder, String key) { } + global static Map get(Set keys) { } + global static Object get(String key) { } + global static Long getAvgGetSize() { } + global static Long getAvgGetTime() { } + global static Long getAvgValueSize() { } + global static Double getCapacity() { } + global static Set getKeys() { } + global static Long getMaxGetSize() { } + global static Long getMaxGetTime() { } + global static Long getMaxValueSize() { } + global static Double getMissRate() { } + global static String getName() { } + global static Long getNumKeys() { } + global static cache.SessionPartition getPartition(String partitionName) { } + global static Boolean isAvailable() { } + global static void put(String key, Object value, Integer ttlSecs, cache.Visibility visibility, Boolean immutable) { } + global static void put(String key, Object value, Integer ttlSecs) { } + global static void put(String key, Object value, cache.Visibility visibility) { } + global static void put(String key, Object value) { } + global static Boolean remove(System.Type cacheBuilder, String key) { } + global static Boolean remove(String key) { } +global class SessionCacheException extends Exception { + global Session.SessionCacheException(String param0, Exception param1) { } + global Session.SessionCacheException(Exception param0) { } + global Session.SessionCacheException(String msg) { } + global Session.SessionCacheException() { } + global Object clone() { } + global String getTypeName() { } + +} +global class SessionCacheNoSessionException extends Exception { + global Session.SessionCacheNoSessionException(String param0, Exception param1) { } + global Session.SessionCacheNoSessionException(Exception param0) { } + global Session.SessionCacheNoSessionException(String msg) { } + global Session.SessionCacheNoSessionException() { } + global Object clone() { } + global String getTypeName() { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Cache/SessionPartition.cls b/.sfdx/tools/246/StandardApexLibrary/Cache/SessionPartition.cls new file mode 100644 index 0000000..551a070 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Cache/SessionPartition.cls @@ -0,0 +1,36 @@ +global class SessionPartition { + global SessionPartition(String fullyQualifiedPartitionName) { } + global Object clone() { } + global Map contains(Set keys) { } + global Boolean contains(String key) { } + global static String createFullyQualifiedKey(String namespace, String partition, String key) { } + global static String createFullyQualifiedPartition(String namespace, String partition) { } + global Object get(System.Type cacheBuilder, String key) { } + global Map get(Set keys) { } + global Object get(String key) { } + global Long getAvgGetSize() { } + global Long getAvgGetTime() { } + global Long getAvgValueSize() { } + global Double getCapacity() { } + global Set getKeys() { } + global Long getMaxGetSize() { } + global Long getMaxGetTime() { } + global Long getMaxValueSize() { } + global Double getMissRate() { } + global String getName() { } + global Long getNumKeys() { } + global Boolean isAvailable() { } + global void put(String key, Object value, Integer ttlSecs, cache.Visibility visibility, Boolean immutable) { } + global void put(String key, Object value, Integer ttlSecs) { } + global void put(String key, Object value, cache.Visibility visibility) { } + global void put(String key, Object value) { } + global Boolean remove(System.Type cacheBuilder, String key) { } + global Boolean remove(String key) { } + global static void validateCacheBuilder(System.Type cacheBuilder) { } + global static void validateKey(Boolean isDefault, String key) { } + global static void validateKeyValue(Boolean isDefault, String key, Object value) { } + global static void validateKeys(Boolean isDefault, List keys) { } + global static void validateKeys(Boolean isDefault, Set keys) { } + global static void validatePartitionName(String name) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Cache/UnsupportedOperationException.cls b/.sfdx/tools/246/StandardApexLibrary/Cache/UnsupportedOperationException.cls new file mode 100644 index 0000000..a0a69e7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Cache/UnsupportedOperationException.cls @@ -0,0 +1,9 @@ +global class UnsupportedOperationException extends Exception { + global UnsupportedOperationException(String param0, Exception param1) { } + global UnsupportedOperationException(Exception param0) { } + global UnsupportedOperationException(String param0) { } + global UnsupportedOperationException() { } + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Cache/Visibility.cls b/.sfdx/tools/246/StandardApexLibrary/Cache/Visibility.cls new file mode 100644 index 0000000..1b325b9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Cache/Visibility.cls @@ -0,0 +1,4 @@ +global enum Visibility { +ALL, +NAMESPACE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Canvas/ApplicationContext.cls b/.sfdx/tools/246/StandardApexLibrary/Canvas/ApplicationContext.cls new file mode 100644 index 0000000..7e91989 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Canvas/ApplicationContext.cls @@ -0,0 +1,9 @@ +global interface ApplicationContext { + String getCanvasUrl(); + String getDeveloperName(); + String getName(); + String getNamespace(); + String getVersion(); + void setCanvasUrlPath(String param0); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Canvas/CanvasLifecycleHandler.cls b/.sfdx/tools/246/StandardApexLibrary/Canvas/CanvasLifecycleHandler.cls new file mode 100644 index 0000000..6a69160 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Canvas/CanvasLifecycleHandler.cls @@ -0,0 +1,5 @@ +global interface CanvasLifecycleHandler { + Set excludeContextTypes(); + void onRender(Canvas.RenderContext param0); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Canvas/CanvasRenderException.cls b/.sfdx/tools/246/StandardApexLibrary/Canvas/CanvasRenderException.cls new file mode 100644 index 0000000..c621177 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Canvas/CanvasRenderException.cls @@ -0,0 +1,9 @@ +global class CanvasRenderException extends Exception { + global CanvasRenderException(String param0, Exception param1) { } + global CanvasRenderException(Exception param0) { } + global CanvasRenderException(String param0) { } + global CanvasRenderException() { } + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Canvas/ContextTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/Canvas/ContextTypeEnum.cls new file mode 100644 index 0000000..53706bc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Canvas/ContextTypeEnum.cls @@ -0,0 +1,5 @@ +global enum ContextTypeEnum { +ORGANIZATION, +RECORD_DETAIL, +USER +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Canvas/EnvironmentContext.cls b/.sfdx/tools/246/StandardApexLibrary/Canvas/EnvironmentContext.cls new file mode 100644 index 0000000..6697c7c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Canvas/EnvironmentContext.cls @@ -0,0 +1,11 @@ +global interface EnvironmentContext { + void addEntityField(String param0); + void addEntityFields(Set param0); + String getDisplayLocation(); + List getEntityFields(); + String getLocationUrl(); + String getParametersAsJSON(); + String getSublocation(); + void setParametersAsJSON(String param0); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Canvas/RenderContext.cls b/.sfdx/tools/246/StandardApexLibrary/Canvas/RenderContext.cls new file mode 100644 index 0000000..0090247 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Canvas/RenderContext.cls @@ -0,0 +1,5 @@ +global interface RenderContext { + Canvas.ApplicationContext getApplicationContext(); + Canvas.EnvironmentContext getEnvironmentContext(); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Canvas/Test.cls b/.sfdx/tools/246/StandardApexLibrary/Canvas/Test.cls new file mode 100644 index 0000000..8eb1063 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Canvas/Test.cls @@ -0,0 +1,15 @@ +global class Test { + global String KEY_CANVAS_URL; + global String KEY_DEVELOPER_NAME; + global String KEY_DISPLAY_LOCATION; + global String KEY_LOCATION_URL; + global String KEY_NAME; + global String KEY_NAMESPACE; + global String KEY_SUB_LOCATION; + global String KEY_VERSION; + global Test() { } + global Object clone() { } + global static Canvas.RenderContext mockRenderContext(Map appContextTestValues, Map envContextTestValues) { } + global static void testCanvasLifecycle(Canvas.CanvasLifecycleHandler handler, Canvas.RenderContext mockRenderContext) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ChatterAnswers/AccountCreator.cls b/.sfdx/tools/246/StandardApexLibrary/ChatterAnswers/AccountCreator.cls new file mode 100644 index 0000000..73e0128 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ChatterAnswers/AccountCreator.cls @@ -0,0 +1,4 @@ +global interface AccountCreator { + String createAccount(String param0, String param1, Id param2); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ChatterAnswers/ChatterServiceRegisterController.cls b/.sfdx/tools/246/StandardApexLibrary/ChatterAnswers/ChatterServiceRegisterController.cls new file mode 100644 index 0000000..d3e95e8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ChatterAnswers/ChatterServiceRegisterController.cls @@ -0,0 +1,4 @@ +global class ChatterServiceRegisterController { + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ChatterAnswers/SCCChangePasswordController.cls b/.sfdx/tools/246/StandardApexLibrary/ChatterAnswers/SCCChangePasswordController.cls new file mode 100644 index 0000000..3d24705 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ChatterAnswers/SCCChangePasswordController.cls @@ -0,0 +1,4 @@ +global class SCCChangePasswordController { + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ChatterAnswers/SCCForgotPasswordConfirmController.cls b/.sfdx/tools/246/StandardApexLibrary/ChatterAnswers/SCCForgotPasswordConfirmController.cls new file mode 100644 index 0000000..ca29792 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ChatterAnswers/SCCForgotPasswordConfirmController.cls @@ -0,0 +1,4 @@ +global class SCCForgotPasswordConfirmController { + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ChatterAnswers/SCCForgotPasswordController.cls b/.sfdx/tools/246/StandardApexLibrary/ChatterAnswers/SCCForgotPasswordController.cls new file mode 100644 index 0000000..66f0ec1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ChatterAnswers/SCCForgotPasswordController.cls @@ -0,0 +1,4 @@ +global class SCCForgotPasswordController { + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AIFieldRecommendation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AIFieldRecommendation.cls new file mode 100644 index 0000000..bb37c33 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AIFieldRecommendation.cls @@ -0,0 +1,12 @@ +global class AIFieldRecommendation { + global List aiRecommendationValueList; + global String predictionField; + global String targetRecordId; + global AIFieldRecommendation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AIFieldRecommendationCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AIFieldRecommendationCollection.cls new file mode 100644 index 0000000..9bed260 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AIFieldRecommendationCollection.cls @@ -0,0 +1,12 @@ +global class AIFieldRecommendationCollection { + global List aiFieldRecommendationsList; + global String modelAPIName; + global String modelLabel; + global AIFieldRecommendationCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AIFieldRecommendationValue.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AIFieldRecommendationValue.cls new file mode 100644 index 0000000..c032a49 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AIFieldRecommendationValue.cls @@ -0,0 +1,11 @@ +global class AIFieldRecommendationValue { + global Double confidence; + global String value; + global AIFieldRecommendationValue() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractCartItem.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractCartItem.cls new file mode 100644 index 0000000..95d2830 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractCartItem.cls @@ -0,0 +1,16 @@ +global class AbstractCartItem { + global String cartId; + global String cartItemId; + global ConnectApi.CartMessagesSummary messagesSummary; + global String name; + global ConnectApi.CartItemProduct productDetails; + global String productId; + global String quantity; + global ConnectApi.CartItemType type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractContentHubItemType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractContentHubItemType.cls new file mode 100644 index 0000000..9074dcc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractContentHubItemType.cls @@ -0,0 +1,14 @@ +global class AbstractContentHubItemType { + global ConnectApi.ContentHubStreamSupport contentStreamSupport; + global String description; + global String displayName; + global String id; + global Boolean isVersionable; + global String url; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractCreateServiceAppointmentInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractCreateServiceAppointmentInput.cls new file mode 100644 index 0000000..fd4a7ce --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractCreateServiceAppointmentInput.cls @@ -0,0 +1,11 @@ +global class AbstractCreateServiceAppointmentInput { + global List assignedResources; + global ConnectApi.LeadInput lead; + global String schedulingPolicyId; + global ConnectApi.ServiceAppointmentInput serviceAppointment; + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractDirectoryEntrySummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractDirectoryEntrySummary.cls new file mode 100644 index 0000000..ad2e8d3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractDirectoryEntrySummary.cls @@ -0,0 +1,12 @@ +global class AbstractDirectoryEntrySummary { + global String domain; + global String email; + global String id; + global ConnectApi.ContentHubDirectoryEntryType type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractExtensionInformation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractExtensionInformation.cls new file mode 100644 index 0000000..5e22629 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractExtensionInformation.cls @@ -0,0 +1,9 @@ +global class AbstractExtensionInformation { + global ConnectApi.ExtensionInformationType extensionInformationType; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractGatewayCommonResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractGatewayCommonResponse.cls new file mode 100644 index 0000000..7cdb709 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractGatewayCommonResponse.cls @@ -0,0 +1,14 @@ +global class AbstractGatewayCommonResponse { + global String gatewayAvsCode; + global Datetime gatewayDate; + global String gatewayMessage; + global String gatewayResultCode; + global String gatewayResultCodeDescription; + global String salesforceResultCode; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractGatewayResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractGatewayResponse.cls new file mode 100644 index 0000000..d26887d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractGatewayResponse.cls @@ -0,0 +1,10 @@ +global class AbstractGatewayResponse { + global String gatewayReferenceDetails; + global String gatewayReferenceNumber; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractManagedContentDeliveryDocument.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractManagedContentDeliveryDocument.cls new file mode 100644 index 0000000..a1f29e7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractManagedContentDeliveryDocument.cls @@ -0,0 +1,18 @@ +global class AbstractManagedContentDeliveryDocument { + global String contentKey; + global ConnectApi.ManagedContentTypeSummary contentType; + global String highScaleUrl; + global String language; + global String managedContentId; + global Datetime publishedDate; + global String resourceUrl; + global String title; + global String unauthenticatedUrl; + global String urlName; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractManagedContentReference.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractManagedContentReference.cls new file mode 100644 index 0000000..87df1ef --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractManagedContentReference.cls @@ -0,0 +1,11 @@ +global class AbstractManagedContentReference { + global String contentKey; + global String managedContentId; + global String resourceUrl; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractMessageBody.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractMessageBody.cls new file mode 100644 index 0000000..4630913 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractMessageBody.cls @@ -0,0 +1,11 @@ +global class AbstractMessageBody { + global Boolean isRichText; + global List messageSegments; + global String text; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractNBAAction.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractNBAAction.cls new file mode 100644 index 0000000..a68c056 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractNBAAction.cls @@ -0,0 +1,10 @@ +global class AbstractNBAAction { + global List parameters; + global ConnectApi.NBAActionType type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractNBATarget.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractNBATarget.cls new file mode 100644 index 0000000..a902411 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractNBATarget.cls @@ -0,0 +1,9 @@ +global class AbstractNBATarget { + global ConnectApi.NBATargetType type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractProductAttributeSetSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractProductAttributeSetSummary.cls new file mode 100644 index 0000000..6a7a908 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractProductAttributeSetSummary.cls @@ -0,0 +1,9 @@ +global class AbstractProductAttributeSetSummary { + global List attributes; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractProductSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractProductSummary.cls new file mode 100644 index 0000000..3d8eb73 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractProductSummary.cls @@ -0,0 +1,13 @@ +global class AbstractProductSummary { + global ConnectApi.ProductMedia defaultImage; + global Map fields; + global String id; + global String name; + global ConnectApi.ProductClass productClass; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractRecommendation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractRecommendation.cls new file mode 100644 index 0000000..b1ac3be --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractRecommendation.cls @@ -0,0 +1,11 @@ +global class AbstractRecommendation { + global ConnectApi.RecommendationExplanation explanation; + global ConnectApi.RecommendationType recommendationType; + global String url; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractRecommendationExplanation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractRecommendationExplanation.cls new file mode 100644 index 0000000..021c403 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractRecommendationExplanation.cls @@ -0,0 +1,10 @@ +global class AbstractRecommendationExplanation { + global String summary; + global ConnectApi.RecommendationExplanationType type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractRecordField.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractRecordField.cls new file mode 100644 index 0000000..ea863ba --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractRecordField.cls @@ -0,0 +1,9 @@ +global class AbstractRecordField { + global String type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractRecordView.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractRecordView.cls new file mode 100644 index 0000000..6a63280 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractRecordView.cls @@ -0,0 +1,8 @@ +global class AbstractRecordView { + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractRepositoryFile.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractRepositoryFile.cls new file mode 100644 index 0000000..8d08117 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractRepositoryFile.cls @@ -0,0 +1,22 @@ +global class AbstractRepositoryFile { + global String checkinComment; + global String contentBody; + global Integer contentSize; + global String downloadUrl; + global String externalContentUrl; + global String externalDocumentUrl; + global ConnectApi.ExternalFilePermissionInformation externalFilePermissionInformation; + global String mimeType; + global String previewUrlThumbnail; + global String previewUrlThumbnailBig; + global String previewUrlThumbnailTiny; + global String previewsUrl; + global String title; + global String versionId; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractRepositoryFolder.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractRepositoryFolder.cls new file mode 100644 index 0000000..702300a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractRepositoryFolder.cls @@ -0,0 +1,11 @@ +global class AbstractRepositoryFolder { + global String externalFolderUrl; + global String folderItemsUrl; + global String path; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractRepositoryItem.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractRepositoryItem.cls new file mode 100644 index 0000000..42d9b6c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractRepositoryItem.cls @@ -0,0 +1,20 @@ +global class AbstractRepositoryItem { + global String createdBy; + global Datetime createdDate; + global String description; + global String id; + global String itemTypeUrl; + global String modifiedBy; + global Datetime modifiedDate; + global ConnectApi.Motif motif; + global String name; + global ConnectApi.Reference repository; + global String type; + global String url; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSearchSuggestion.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSearchSuggestion.cls new file mode 100644 index 0000000..02b7eb9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSearchSuggestion.cls @@ -0,0 +1,9 @@ +global class AbstractSearchSuggestion { + global String value; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryAIModelMetrics.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryAIModelMetrics.cls new file mode 100644 index 0000000..e5fec64 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryAIModelMetrics.cls @@ -0,0 +1,12 @@ +global class AbstractSmartDataDiscoveryAIModelMetrics { + global String dataSegmentsUrl; + global String featureImportancesUrl; + global ConnectApi.SmartDataDiscoveryPredictionTypeEnum predictionType; + global String url; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryAIModelSource.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryAIModelSource.cls new file mode 100644 index 0000000..643b038 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryAIModelSource.cls @@ -0,0 +1,9 @@ +global class AbstractSmartDataDiscoveryAIModelSource { + global ConnectApi.SmartDataDiscoveryModelSourceTypeEnum type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryAggregatePredictionRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryAggregatePredictionRepresentation.cls new file mode 100644 index 0000000..a062c98 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryAggregatePredictionRepresentation.cls @@ -0,0 +1,12 @@ +global class AbstractSmartDataDiscoveryAggregatePredictionRepresentation { + global ConnectApi.SmartDataDiscoveryPredictAggregateFunctionEnum aggregateFunction; + global List middleValues; + global List prescriptions; + global ConnectApi.SmartDataDiscoveryAggregatePredictStatusEnum status; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryAssetReference.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryAssetReference.cls new file mode 100644 index 0000000..82e97ad --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryAssetReference.cls @@ -0,0 +1,10 @@ +global class AbstractSmartDataDiscoveryAssetReference { + global String id; + global String name; + global String namespace; + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryFieldMappingSource.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryFieldMappingSource.cls new file mode 100644 index 0000000..440d001 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryFieldMappingSource.cls @@ -0,0 +1,9 @@ +global class AbstractSmartDataDiscoveryFieldMappingSource { + global ConnectApi.SmartDataDiscoveryFieldMapSourceTypeEnum type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryManyToOneTransformation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryManyToOneTransformation.cls new file mode 100644 index 0000000..324f925 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryManyToOneTransformation.cls @@ -0,0 +1,11 @@ +global class AbstractSmartDataDiscoveryManyToOneTransformation { + global ConnectApi.AbstractSmartDataDiscoveryTransformationFilter postTransformationFilter; + global List sourceFieldNames; + global String targetFieldName; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryModelField.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryModelField.cls new file mode 100644 index 0000000..338e03c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryModelField.cls @@ -0,0 +1,13 @@ +global class AbstractSmartDataDiscoveryModelField { + global Boolean disparateImpact; + global String label; + global String name; + global Boolean sensitive; + global ConnectApi.SmartDataDiscoveryModelFieldTypeEnum type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryModelRuntime.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryModelRuntime.cls new file mode 100644 index 0000000..d249eb3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryModelRuntime.cls @@ -0,0 +1,9 @@ +global class AbstractSmartDataDiscoveryModelRuntime { + global ConnectApi.SmartDataDiscoveryModelRuntimeTypeEnum type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryModelRuntimeInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryModelRuntimeInput.cls new file mode 100644 index 0000000..f8ef2f9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryModelRuntimeInput.cls @@ -0,0 +1,8 @@ +global class AbstractSmartDataDiscoveryModelRuntimeInput { + global ConnectApi.SmartDataDiscoveryModelRuntimeTypeEnum type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryOneToOneTransformation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryOneToOneTransformation.cls new file mode 100644 index 0000000..2179979 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryOneToOneTransformation.cls @@ -0,0 +1,11 @@ +global class AbstractSmartDataDiscoveryOneToOneTransformation { + global ConnectApi.AbstractSmartDataDiscoveryTransformationFilter postTransformationFilter; + global String sourceFieldName; + global String targetFieldName; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryPredictConditionRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryPredictConditionRepresentation.cls new file mode 100644 index 0000000..ed94811 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryPredictConditionRepresentation.cls @@ -0,0 +1,10 @@ +global class AbstractSmartDataDiscoveryPredictConditionRepresentation { + global List columns; + global Double value; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryPredictInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryPredictInput.cls new file mode 100644 index 0000000..5e09f43 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryPredictInput.cls @@ -0,0 +1,10 @@ +global class AbstractSmartDataDiscoveryPredictInput { + global ConnectApi.SmartDataDiscoveryAssetReferenceInput model; + global String predictionDefinition; + global ConnectApi.SmartDataDiscoveryDiscoveryPredictSettings settings; + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryPredictRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryPredictRepresentation.cls new file mode 100644 index 0000000..4ad568f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryPredictRepresentation.cls @@ -0,0 +1,9 @@ +global class AbstractSmartDataDiscoveryPredictRepresentation { + global ConnectApi.SmartDataDiscoveryPredictStatusEnum status; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryPredictionProperty.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryPredictionProperty.cls new file mode 100644 index 0000000..89c6322 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryPredictionProperty.cls @@ -0,0 +1,9 @@ +global class AbstractSmartDataDiscoveryPredictionProperty { + global ConnectApi.SmartDataDiscoveryPredictionTypeEnum type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryProjectedPrediction.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryProjectedPrediction.cls new file mode 100644 index 0000000..b3910af --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryProjectedPrediction.cls @@ -0,0 +1,9 @@ +global class AbstractSmartDataDiscoveryProjectedPrediction { + global ConnectApi.SmartDataDiscoveryProjectedPredictionsType type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryProjectedPredictionsIntervalSetting.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryProjectedPredictionsIntervalSetting.cls new file mode 100644 index 0000000..25f5fd6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryProjectedPredictionsIntervalSetting.cls @@ -0,0 +1,9 @@ +global class AbstractSmartDataDiscoveryProjectedPredictionsIntervalSetting { + global ConnectApi.SmartDataDiscoveryProjectedPredictionsIntervalSettingType type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryProjectedPredictionsIntervalSettingInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryProjectedPredictionsIntervalSettingInput.cls new file mode 100644 index 0000000..7e331a0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryProjectedPredictionsIntervalSettingInput.cls @@ -0,0 +1,8 @@ +global class AbstractSmartDataDiscoveryProjectedPredictionsIntervalSettingInput { + global ConnectApi.SmartDataDiscoveryProjectedPredictionsIntervalSettingType type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryTransformation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryTransformation.cls new file mode 100644 index 0000000..18688ef --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryTransformation.cls @@ -0,0 +1,9 @@ +global class AbstractSmartDataDiscoveryTransformation { + global ConnectApi.SmartDataDiscoveryAIModelTransformationTypeEnum type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryTransformationFilter.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryTransformationFilter.cls new file mode 100644 index 0000000..88ba84c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryTransformationFilter.cls @@ -0,0 +1,9 @@ +global class AbstractSmartDataDiscoveryTransformationFilter { + global ConnectApi.SmartDataDiscoveryTransformationFilterTypeEnum type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryTransformationOverride.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryTransformationOverride.cls new file mode 100644 index 0000000..e30cfa2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryTransformationOverride.cls @@ -0,0 +1,11 @@ +global class AbstractSmartDataDiscoveryTransformationOverride { + global String id; + global ConnectApi.SmartDataDiscoveryAssetReference input; + global ConnectApi.SmartDataDiscoveryAIModelTransformationTypeEnum type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryTransformationOverrideInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryTransformationOverrideInput.cls new file mode 100644 index 0000000..daf15c8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryTransformationOverrideInput.cls @@ -0,0 +1,9 @@ +global class AbstractSmartDataDiscoveryTransformationOverrideInput { + global ConnectApi.SmartDataDiscoveryAssetReferenceInput input; + global ConnectApi.SmartDataDiscoveryAIModelTransformationTypeEnum type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractUserMissionActivity.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractUserMissionActivity.cls new file mode 100644 index 0000000..cc91b94 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AbstractUserMissionActivity.cls @@ -0,0 +1,10 @@ +global class AbstractUserMissionActivity { + global Integer activityCount; + global String activityType; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Abstractcommerceproductsearchresults.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Abstractcommerceproductsearchresults.cls new file mode 100644 index 0000000..637970f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Abstractcommerceproductsearchresults.cls @@ -0,0 +1,3 @@ +global class Abstractcommerceproductsearchresults { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActionLinkDefinition.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActionLinkDefinition.cls new file mode 100644 index 0000000..38a7781 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActionLinkDefinition.cls @@ -0,0 +1,24 @@ +global class ActionLinkDefinition { + global String actionUrl; + global Datetime createdDate; + global String excludedUserId; + global Boolean groupDefault; + global List headers; + global String id; + global String label; + global String labelKey; + global ConnectApi.HttpRequestMethod method; + global Datetime modifiedDate; + global String requestBody; + global Boolean requiresConfirmation; + global String templateId; + global ConnectApi.ActionLinkType type; + global String userId; + global ActionLinkDefinition() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActionLinkDefinitionInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActionLinkDefinitionInput.cls new file mode 100644 index 0000000..f6bcc59 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActionLinkDefinitionInput.cls @@ -0,0 +1,18 @@ +global class ActionLinkDefinitionInput { + global ConnectApi.ActionLinkType actionType; + global String actionUrl; + global String excludedUserId; + global Boolean groupDefault; + global List headers; + global String labelKey; + global ConnectApi.HttpRequestMethod method; + global String requestBody; + global Boolean requiresConfirmation; + global String userId; + global ActionLinkDefinitionInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActionLinkDiagnosticInfo.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActionLinkDiagnosticInfo.cls new file mode 100644 index 0000000..c143f62 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActionLinkDiagnosticInfo.cls @@ -0,0 +1,11 @@ +global class ActionLinkDiagnosticInfo { + global String diagnosticInfo; + global String url; + global ActionLinkDiagnosticInfo() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActionLinkExecutionsAllowed.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActionLinkExecutionsAllowed.cls new file mode 100644 index 0000000..c0ad0d0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActionLinkExecutionsAllowed.cls @@ -0,0 +1,5 @@ +global enum ActionLinkExecutionsAllowed { +ONCE, +ONCEPERUSER, +UNLIMITED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActionLinkGroupDefinition.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActionLinkGroupDefinition.cls new file mode 100644 index 0000000..3484962 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActionLinkGroupDefinition.cls @@ -0,0 +1,18 @@ +global class ActionLinkGroupDefinition { + global List actionLinks; + global ConnectApi.PlatformActionGroupCategory category; + global Datetime createdDate; + global ConnectApi.ActionLinkExecutionsAllowed executionsAllowed; + global Datetime expirationDate; + global String id; + global Datetime modifiedDate; + global String templateId; + global String url; + global ActionLinkGroupDefinition() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActionLinkGroupDefinitionInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActionLinkGroupDefinitionInput.cls new file mode 100644 index 0000000..360b63c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActionLinkGroupDefinitionInput.cls @@ -0,0 +1,14 @@ +global class ActionLinkGroupDefinitionInput { + global List actionLinks; + global ConnectApi.PlatformActionGroupCategory category; + global ConnectApi.ActionLinkExecutionsAllowed executionsAllowed; + global Datetime expirationDate; + global List templateBindings; + global String templateId; + global ActionLinkGroupDefinitionInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActionLinkTemplateBindingInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActionLinkTemplateBindingInput.cls new file mode 100644 index 0000000..79780bd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActionLinkTemplateBindingInput.cls @@ -0,0 +1,10 @@ +global class ActionLinkTemplateBindingInput { + global String key; + global String value; + global ActionLinkTemplateBindingInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActionLinkType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActionLinkType.cls new file mode 100644 index 0000000..3050d7e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActionLinkType.cls @@ -0,0 +1,6 @@ +global enum ActionLinkType { +API, +APIASYNC, +DOWNLOAD, +UI +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActionLinks.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActionLinks.cls new file mode 100644 index 0000000..72822ad --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActionLinks.cls @@ -0,0 +1,10 @@ +global class ActionLinks { + global Object clone() { } + global static ConnectApi.ActionLinkGroupDefinition createActionLinkGroupDefinition(String communityId, ConnectApi.ActionLinkGroupDefinitionInput actionLinkGroup) { } + global static void deleteActionLinkGroupDefinition(String communityId, String actionLinkGroupId) { } + global static ConnectApi.PlatformAction getActionLink(String communityId, String actionLinkId) { } + global static ConnectApi.ActionLinkDiagnosticInfo getActionLinkDiagnosticInfo(String communityId, String actionLinkId) { } + global static ConnectApi.PlatformActionGroup getActionLinkGroup(String communityId, String actionLinkGroupId) { } + global static ConnectApi.ActionLinkGroupDefinition getActionLinkGroupDefinition(String communityId, String actionLinkGroupId) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActivitySharingInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActivitySharingInput.cls new file mode 100644 index 0000000..a79409e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActivitySharingInput.cls @@ -0,0 +1,10 @@ +global class ActivitySharingInput { + global List groupsToShareWith; + global ConnectApi.ActivitySharingType sharingType; + global ActivitySharingInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActivitySharingResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActivitySharingResult.cls new file mode 100644 index 0000000..6b8be52 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActivitySharingResult.cls @@ -0,0 +1,10 @@ +global class ActivitySharingResult { + global Boolean success; + global ActivitySharingResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActivitySharingType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActivitySharingType.cls new file mode 100644 index 0000000..8f34497 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActivitySharingType.cls @@ -0,0 +1,5 @@ +global enum ActivitySharingType { +EVERYONE, +MYGROUPS, +ONLYME +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Actor.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Actor.cls new file mode 100644 index 0000000..cfbdae4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Actor.cls @@ -0,0 +1,10 @@ +global class Actor { + global String name; + global String type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActorWithId.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActorWithId.cls new file mode 100644 index 0000000..75a4788 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ActorWithId.cls @@ -0,0 +1,13 @@ +global class ActorWithId { + global String id; + global ConnectApi.Motif motif; + global ConnectApi.Reference mySubscription; + global String recordViewUrl; + global String url; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AddItemAdjustmentOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AddItemAdjustmentOutputRepresentation.cls new file mode 100644 index 0000000..d4ccab4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AddItemAdjustmentOutputRepresentation.cls @@ -0,0 +1,12 @@ +global class AddItemAdjustmentOutputRepresentation { + global String id; + global String name; + global List orderItemTaxLineItemSummaries; + global AddItemAdjustmentOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AddItemOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AddItemOutputRepresentation.cls new file mode 100644 index 0000000..b5f75d5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AddItemOutputRepresentation.cls @@ -0,0 +1,13 @@ +global class AddItemOutputRepresentation { + global String id; + global String name; + global List orderItemAdjustmentLineSummaries; + global List orderItemTaxLineItemSummaries; + global AddItemOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AddItemTaxOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AddItemTaxOutputRepresentation.cls new file mode 100644 index 0000000..4f093cf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AddItemTaxOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class AddItemTaxOutputRepresentation { + global String id; + global String name; + global AddItemTaxOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AddOrderItemSummaryOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AddOrderItemSummaryOutputRepresentation.cls new file mode 100644 index 0000000..04fadfc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AddOrderItemSummaryOutputRepresentation.cls @@ -0,0 +1,13 @@ +global class AddOrderItemSummaryOutputRepresentation { + global ConnectApi.ChangeItemOutputRepresentation changeBalances; + global String changeOrderId; + global List newItems; + global String orderSummaryId; + global AddOrderItemSummaryOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AdditionalTransactionJournalAttributeOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AdditionalTransactionJournalAttributeOutputRepresentation.cls new file mode 100644 index 0000000..8d98b87 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AdditionalTransactionJournalAttributeOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class AdditionalTransactionJournalAttributeOutputRepresentation { + global String fieldName; + global String value; + global AdditionalTransactionJournalAttributeOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Address.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Address.cls new file mode 100644 index 0000000..8977151 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Address.cls @@ -0,0 +1,15 @@ +global class Address { + global String city; + global String country; + global String formattedAddress; + global String state; + global String street; + global String zip; + global Address() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AddressRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AddressRequest.cls new file mode 100644 index 0000000..c6a7303 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AddressRequest.cls @@ -0,0 +1,14 @@ +global class AddressRequest { + global String city; + global String companyName; + global String country; + global String postalCode; + global String state; + global String street; + global AddressRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AdjustItemInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AdjustItemInputRepresentation.cls new file mode 100644 index 0000000..36b1734 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AdjustItemInputRepresentation.cls @@ -0,0 +1,13 @@ +global class AdjustItemInputRepresentation { + global String adjustmentType; + global Double amount; + global String description; + global String orderItemSummaryId; + global String reason; + global AdjustItemInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AdjustOrderItemSummaryInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AdjustOrderItemSummaryInputRepresentation.cls new file mode 100644 index 0000000..af9cd8e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AdjustOrderItemSummaryInputRepresentation.cls @@ -0,0 +1,10 @@ +global class AdjustOrderItemSummaryInputRepresentation { + global List adjustItems; + global String allocatedItemsChangeOrderType; + global AdjustOrderItemSummaryInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AdjustOrderSummaryOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AdjustOrderSummaryOutputRepresentation.cls new file mode 100644 index 0000000..2574da6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AdjustOrderSummaryOutputRepresentation.cls @@ -0,0 +1,14 @@ +global class AdjustOrderSummaryOutputRepresentation { + global ConnectApi.ChangeItemOutputRepresentation changeBalances; + global String inFulfillmentChangeOrderId; + global String orderSummaryId; + global String postFulfillmentChangeOrderId; + global String preFulfillmentChangeOrderId; + global AdjustOrderSummaryOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AdjustmentAmountScope.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AdjustmentAmountScope.cls new file mode 100644 index 0000000..4cb7611 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AdjustmentAmountScope.cls @@ -0,0 +1,5 @@ +global enum AdjustmentAmountScope { +TOTAL, +UNIT, +UNPRORATEDTOTAL +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AdjustmentType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AdjustmentType.cls new file mode 100644 index 0000000..dcdf7ac --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AdjustmentType.cls @@ -0,0 +1,4 @@ +global enum AdjustmentType { +ADJUSTMENTAMOUNT, +ADJUSTMENTPERCENTAGE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AiAcceleratorConnectFamily.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AiAcceleratorConnectFamily.cls new file mode 100644 index 0000000..9d9247a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AiAcceleratorConnectFamily.cls @@ -0,0 +1,3 @@ +global class AiAcceleratorConnectFamily { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Alternative.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Alternative.cls new file mode 100644 index 0000000..e82a5bf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Alternative.cls @@ -0,0 +1,12 @@ +global class Alternative { + global String textRepresentation; + global String thumbnailUrl; + global String title; + global Alternative() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AlternativeInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AlternativeInput.cls new file mode 100644 index 0000000..f66c484 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AlternativeInput.cls @@ -0,0 +1,11 @@ +global class AlternativeInput { + global String textRepresentation; + global String thumbnailUrl; + global String title; + global AlternativeInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AlternativePaymentMethod.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AlternativePaymentMethod.cls new file mode 100644 index 0000000..0a2e2d9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AlternativePaymentMethod.cls @@ -0,0 +1,14 @@ +global class AlternativePaymentMethod { + global String accountId; + global String comments; + global String email; + global String gatewayToken; + global String gatewayTokenDetails; + global String name; + global AlternativePaymentMethod() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AlternativePaymentMethodOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AlternativePaymentMethodOutput.cls new file mode 100644 index 0000000..f1fde4f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AlternativePaymentMethodOutput.cls @@ -0,0 +1,15 @@ +global class AlternativePaymentMethodOutput { + global String accountId; + global String comments; + global String email; + global String gatewayToken; + global String gatewayTokenDetails; + global String name; + global AlternativePaymentMethodOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AnalysisFieldDataPropertyEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AnalysisFieldDataPropertyEnum.cls new file mode 100644 index 0000000..a372469 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AnalysisFieldDataPropertyEnum.cls @@ -0,0 +1,13 @@ +global enum AnalysisFieldDataPropertyEnum { +DAY, +DAYOFWEEK, +FIELD, +MONTH, +MONTHOFYEAR, +PAIR, +QUARTER, +QUARTEROFYEAR, +RANGE, +STRING, +YEAR +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AnalyticsLicenseAttributes.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AnalyticsLicenseAttributes.cls new file mode 100644 index 0000000..3616e76 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AnalyticsLicenseAttributes.cls @@ -0,0 +1,9 @@ +global class AnalyticsLicenseAttributes { + global ConnectApi.AnalyticsLicenseType type; + global AnalyticsLicenseAttributes() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AnalyticsLicenseType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AnalyticsLicenseType.cls new file mode 100644 index 0000000..3940ab3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AnalyticsLicenseType.cls @@ -0,0 +1,7 @@ +global enum AnalyticsLicenseType { +CDP, +DATAPIPELINEQUERY, +EINSTEINANALYTICS, +MULESOFTDATAPATH, +SONIC +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Announcement.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Announcement.cls new file mode 100644 index 0000000..3126fa0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Announcement.cls @@ -0,0 +1,15 @@ +global class Announcement { + global Datetime expirationDate; + global ConnectApi.FeedElement feedElement; + global String id; + global Boolean isArchived; + global Boolean sendEmails; + global String url; + global Announcement() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AnnouncementInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AnnouncementInput.cls new file mode 100644 index 0000000..b07573e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AnnouncementInput.cls @@ -0,0 +1,14 @@ +global class AnnouncementInput { + global ConnectApi.MessageBodyInput body; + global Datetime expirationDate; + global String feedItemId; + global Boolean isArchived; + global String parentId; + global Boolean sendEmails; + global AnnouncementInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AnnouncementPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AnnouncementPage.cls new file mode 100644 index 0000000..e5e3d1b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AnnouncementPage.cls @@ -0,0 +1,13 @@ +global class AnnouncementPage { + global List announcements; + global String currentPageUrl; + global String nextPageUrl; + global String previousPageUrl; + global AnnouncementPage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Announcements.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Announcements.cls new file mode 100644 index 0000000..2ecd37b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Announcements.cls @@ -0,0 +1,10 @@ +global class Announcements { + global Object clone() { } + global static void deleteAnnouncement(String communityId, String announcementId) { } + global static ConnectApi.Announcement getAnnouncement(String communityId, String announcementId) { } + global static ConnectApi.AnnouncementPage getAnnouncements(String communityId, String parentId, Integer pageParam, Integer pageSize) { } + global static ConnectApi.AnnouncementPage getAnnouncements(String communityId, String parentId) { } + global static ConnectApi.Announcement postAnnouncement(String communityId, ConnectApi.AnnouncementInput announcement) { } + global static ConnectApi.Announcement updateAnnouncement(String communityId, String announcementId, Datetime expirationDate) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApexClassOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApexClassOutputRepresentation.cls new file mode 100644 index 0000000..4eecf57 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApexClassOutputRepresentation.cls @@ -0,0 +1,13 @@ +global class ApexClassOutputRepresentation { + global String classId; + global String className; + global String namespace; + global String version; + global ApexClassOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApplicationSettings.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApplicationSettings.cls new file mode 100644 index 0000000..bc8f35f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApplicationSettings.cls @@ -0,0 +1,19 @@ +global class ApplicationSettings { + global Datetime aiAppLastModifiedDate; + global String aiApplicationType; + global String apiName; + global String appProvisionStatus; + global String applicationId; + global Datetime configLastModifiedDate; + global String masterLabel; + global List predictionFields; + global Integer rank; + global String state; + global ApplicationSettings() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApplicationSettingsCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApplicationSettingsCollection.cls new file mode 100644 index 0000000..c77f1e5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApplicationSettingsCollection.cls @@ -0,0 +1,10 @@ +global class ApplicationSettingsCollection { + global List applicationSettingsList; + global ApplicationSettingsCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApplicationsRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApplicationsRequest.cls new file mode 100644 index 0000000..2d0f190 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApplicationsRequest.cls @@ -0,0 +1,12 @@ +global class ApplicationsRequest { + global Double amount; + global String appliedToId; + global String description; + global String effectiveDate; + global ApplicationsRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApplyCreditResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApplyCreditResult.cls new file mode 100644 index 0000000..0e8b27e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApplyCreditResult.cls @@ -0,0 +1,13 @@ +global class ApplyCreditResult { + global String appliedToId; + global List errors; + global String id; + global Boolean success; + global ApplyCreditResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApplyCreditResults.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApplyCreditResults.cls new file mode 100644 index 0000000..d8b3d1d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApplyCreditResults.cls @@ -0,0 +1,10 @@ +global class ApplyCreditResults { + global List applyCreditResults; + global ApplyCreditResults() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AppointedRepresentativeOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AppointedRepresentativeOutput.cls new file mode 100644 index 0000000..e6992cc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AppointedRepresentativeOutput.cls @@ -0,0 +1,11 @@ +global class AppointedRepresentativeOutput { + global String firstName; + global String lastName; + global AppointedRepresentativeOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AppointmentSlotResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AppointmentSlotResult.cls new file mode 100644 index 0000000..754e987 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AppointmentSlotResult.cls @@ -0,0 +1,13 @@ +global class AppointmentSlotResult { + global String externalSlotId; + global String slotEnd; + global String slotStart; + global String sourceSystem; + global AppointmentSlotResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AppointmentSlotStatusResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AppointmentSlotStatusResult.cls new file mode 100644 index 0000000..f0ea7ab --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AppointmentSlotStatusResult.cls @@ -0,0 +1,13 @@ +global class AppointmentSlotStatusResult { + global ConnectApi.ErrorRepresentation error; + global String externalSlotId; + global Boolean isSuccess; + global ConnectApi.SlotStatus slotStatus; + global AppointmentSlotStatusResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApprovalAttachment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApprovalAttachment.cls new file mode 100644 index 0000000..2517bfc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApprovalAttachment.cls @@ -0,0 +1,13 @@ +global class ApprovalAttachment { + global String id; + global List postTemplateFields; + global String processInstanceStepId; + global ConnectApi.WorkflowProcessStatus status; + global ApprovalAttachment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApprovalCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApprovalCapability.cls new file mode 100644 index 0000000..304266b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApprovalCapability.cls @@ -0,0 +1,13 @@ +global class ApprovalCapability { + global String id; + global List postTemplateFields; + global String processInstanceStepId; + global ConnectApi.WorkflowProcessStatus status; + global ApprovalCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApprovalIntent.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApprovalIntent.cls new file mode 100644 index 0000000..4678a2e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApprovalIntent.cls @@ -0,0 +1,10 @@ +global class ApprovalIntent { + global Boolean isRecallable; + global ApprovalIntent() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApprovalPostTemplateField.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApprovalPostTemplateField.cls new file mode 100644 index 0000000..a7c59f9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ApprovalPostTemplateField.cls @@ -0,0 +1,12 @@ +global class ApprovalPostTemplateField { + global String displayName; + global String displayValue; + global ConnectApi.Reference record; + global ApprovalPostTemplateField() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleItem.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleItem.cls new file mode 100644 index 0000000..2522e27 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleItem.cls @@ -0,0 +1,14 @@ +global class ArticleItem { + global String id; + global Double rating; + global String title; + global String urlLink; + global Integer viewCount; + global ArticleItem() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleRecommendation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleRecommendation.cls new file mode 100644 index 0000000..e43853d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleRecommendation.cls @@ -0,0 +1,17 @@ +global class ArticleRecommendation { + global String knowledgeArticleId; + global String knowledgeArticleVersionId; + global Datetime lastPublishedDate; + global String recommendationId; + global Double relevanceScore; + global String summary; + global String title; + global String urlName; + global ArticleRecommendation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleRecommendationCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleRecommendationCollection.cls new file mode 100644 index 0000000..2b7ccd0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleRecommendationCollection.cls @@ -0,0 +1,10 @@ +global class ArticleRecommendationCollection { + global List articleRecommendations; + global ArticleRecommendationCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleRecommendationsChannelType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleRecommendationsChannelType.cls new file mode 100644 index 0000000..0aa47c3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleRecommendationsChannelType.cls @@ -0,0 +1,3 @@ +global enum ArticleRecommendationsChannelType { +CASE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleRecommendationsRuntimeMetric.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleRecommendationsRuntimeMetric.cls new file mode 100644 index 0000000..f632475 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleRecommendationsRuntimeMetric.cls @@ -0,0 +1,20 @@ +global class ArticleRecommendationsRuntimeMetric { + global Integer activeUserCount; + global Integer attachCount; + global Integer detachCount; + global Integer dismissCount; + global Integer engagementCount; + global Integer engagementUserCount; + global Integer hoverOrOpenCount; + global Datetime metricsDate; + global Integer recommendationCount; + global Integer recommendationDisplayedRecordsCount; + global Integer recommendationEngagementRecordsCount; + global ArticleRecommendationsRuntimeMetric() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleRecommendationsRuntimeMetrics.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleRecommendationsRuntimeMetrics.cls new file mode 100644 index 0000000..7ad2141 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleRecommendationsRuntimeMetrics.cls @@ -0,0 +1,10 @@ +global class ArticleRecommendationsRuntimeMetrics { + global List articleRecommendationsRuntimeMetrics; + global ArticleRecommendationsRuntimeMetrics() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleSmartAnswer.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleSmartAnswer.cls new file mode 100644 index 0000000..c20f113 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleSmartAnswer.cls @@ -0,0 +1,10 @@ +global class ArticleSmartAnswer { + global ConnectApi.ArticleSummary answerDetail; + global ArticleSmartAnswer() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleSummary.cls new file mode 100644 index 0000000..b69994c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleSummary.cls @@ -0,0 +1,17 @@ +global class ArticleSummary { + global String articleType; + global String knowledgeArticleVersionId; + global Datetime lastPublishedDate; + global Double rating; + global String summary; + global String title; + global String urlName; + global Integer viewCount; + global ArticleSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleTopicAssignmentJobInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleTopicAssignmentJobInput.cls new file mode 100644 index 0000000..3d514f0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleTopicAssignmentJobInput.cls @@ -0,0 +1,10 @@ +global class ArticleTopicAssignmentJobInput { + global ConnectApi.ArticleTopicJobType operation; + global ConnectApi.TopicNamesInput topicNames; + global ArticleTopicAssignmentJobInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleTopicJobType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleTopicJobType.cls new file mode 100644 index 0000000..b90678b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ArticleTopicJobType.cls @@ -0,0 +1,4 @@ +global enum ArticleTopicJobType { +ASSIGNTOPICSTOARTICLES, +UNASSIGNTOPICSFROMARTICLES +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssessmentSearchDerivedStatusEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssessmentSearchDerivedStatusEnum.cls new file mode 100644 index 0000000..7859bb6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssessmentSearchDerivedStatusEnum.cls @@ -0,0 +1,5 @@ +global enum AssessmentSearchDerivedStatusEnum { +COMPLETE, +EXPIRED, +NOTSTARTED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssetMgmt.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssetMgmt.cls new file mode 100644 index 0000000..dcaf65b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssetMgmt.cls @@ -0,0 +1,3 @@ +global class AssetMgmt { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssetMgmtAmendmentType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssetMgmtAmendmentType.cls new file mode 100644 index 0000000..2f36f29 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssetMgmtAmendmentType.cls @@ -0,0 +1,4 @@ +global enum AssetMgmtAmendmentType { +ORDER, +QUOTE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssetMgmtCancellationType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssetMgmtCancellationType.cls new file mode 100644 index 0000000..319be58 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssetMgmtCancellationType.cls @@ -0,0 +1,3 @@ +global enum AssetMgmtCancellationType { +ORDER +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssetMgmtInitiateAmendQtyInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssetMgmtInitiateAmendQtyInput.cls new file mode 100644 index 0000000..e206e24 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssetMgmtInitiateAmendQtyInput.cls @@ -0,0 +1,12 @@ +global class AssetMgmtInitiateAmendQtyInput { + global ConnectApi.AssetMgmtAmendmentType amendmentOutputType; + global List assetIds; + global Double quantityChange; + global Datetime startDate; + global AssetMgmtInitiateAmendQtyInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssetMgmtInitiateCancellationInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssetMgmtInitiateCancellationInput.cls new file mode 100644 index 0000000..7d9f8e3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssetMgmtInitiateCancellationInput.cls @@ -0,0 +1,11 @@ +global class AssetMgmtInitiateCancellationInput { + global List assetIds; + global Datetime cancellationDate; + global ConnectApi.AssetMgmtCancellationType cancellationOutputType; + global AssetMgmtInitiateCancellationInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssetMgmtInitiateRenewalInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssetMgmtInitiateRenewalInput.cls new file mode 100644 index 0000000..7deab69 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssetMgmtInitiateRenewalInput.cls @@ -0,0 +1,9 @@ +global class AssetMgmtInitiateRenewalInput { + global List assetIds; + global AssetMgmtInitiateRenewalInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssetRevertHistoryInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssetRevertHistoryInputRepresentation.cls new file mode 100644 index 0000000..5e158e9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssetRevertHistoryInputRepresentation.cls @@ -0,0 +1,10 @@ +global class AssetRevertHistoryInputRepresentation { + global String historyId; + global String historyLabel; + global AssetRevertHistoryInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssignedResourcesInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssignedResourcesInput.cls new file mode 100644 index 0000000..ad70dd3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssignedResourcesInput.cls @@ -0,0 +1,12 @@ +global class AssignedResourcesInput { + global List extendedFields; + global Boolean isPrimaryResource; + global Boolean isRequiredResource; + global String serviceResourceId; + global AssignedResourcesInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssociateRecordsWithRecipientInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssociateRecordsWithRecipientInput.cls new file mode 100644 index 0000000..a02e546 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssociateRecordsWithRecipientInput.cls @@ -0,0 +1,10 @@ +global class AssociateRecordsWithRecipientInput { + global List associateRecordIds; + global String recipientId; + global AssociateRecordsWithRecipientInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssociatedActionsCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssociatedActionsCapability.cls new file mode 100644 index 0000000..975025b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssociatedActionsCapability.cls @@ -0,0 +1,10 @@ +global class AssociatedActionsCapability { + global List platformActionGroups; + global AssociatedActionsCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssociatedActionsCapabilityInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssociatedActionsCapabilityInput.cls new file mode 100644 index 0000000..cf6931a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AssociatedActionsCapabilityInput.cls @@ -0,0 +1,9 @@ +global class AssociatedActionsCapabilityInput { + global List actionLinkGroupIds; + global AssociatedActionsCapabilityInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AsyncOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AsyncOutputRepresentation.cls new file mode 100644 index 0000000..d210b77 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AsyncOutputRepresentation.cls @@ -0,0 +1,9 @@ +global class AsyncOutputRepresentation { + global AsyncOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AttributeRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AttributeRepresentation.cls new file mode 100644 index 0000000..75b202c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AttributeRepresentation.cls @@ -0,0 +1,15 @@ +global class AttributeRepresentation { + global String apiName; + global String attributeId; + global String attributeName; + global List childAttributes; + global String dataType; + global String sortOrder; + global AttributeRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Audience.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Audience.cls new file mode 100644 index 0000000..92d2350 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Audience.cls @@ -0,0 +1,16 @@ +global class Audience { + global List criteria; + global String customFormula; + global ConnectApi.FormulaFilterType formulaFilterType; + global String id; + global String name; + global List targets; + global String url; + global Audience() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceCollection.cls new file mode 100644 index 0000000..e9c5ba8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceCollection.cls @@ -0,0 +1,10 @@ +global class AudienceCollection { + global List audiences; + global AudienceCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceCriteria.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceCriteria.cls new file mode 100644 index 0000000..40c97d2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceCriteria.cls @@ -0,0 +1,9 @@ +global class AudienceCriteria { + global ConnectApi.RecommendationAudienceCriteriaType type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceCriteriaDetail.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceCriteriaDetail.cls new file mode 100644 index 0000000..7579e49 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceCriteriaDetail.cls @@ -0,0 +1,13 @@ +global class AudienceCriteriaDetail { + global List criterion; + global Integer criterionNumber; + global ConnectApi.AudienceCriteriaOperator criterionOperator; + global ConnectApi.AudienceCriteriaType criterionType; + global AudienceCriteriaDetail() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceCriteriaInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceCriteriaInput.cls new file mode 100644 index 0000000..0341714 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceCriteriaInput.cls @@ -0,0 +1,7 @@ +global class AudienceCriteriaInput { + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceCriteriaOperator.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceCriteriaOperator.cls new file mode 100644 index 0000000..0662fde --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceCriteriaOperator.cls @@ -0,0 +1,12 @@ +global enum AudienceCriteriaOperator { +CONTAINS, +EQUAL, +GREATERTHAN, +GREATERTHANOREQUAL, +INCLUDES, +LESSTHAN, +LESSTHANOREQUAL, +NOTEQUAL, +NOTINCLUDES, +STARTSWITH +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceCriteriaType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceCriteriaType.cls new file mode 100644 index 0000000..8ca7649 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceCriteriaType.cls @@ -0,0 +1,9 @@ +global enum AudienceCriteriaType { +AUDIENCE, +DEFAULT, +DOMAIN, +FIELDBASED, +GEOLOCATION, +PERMISSION, +PROFILE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceCriterionDetail.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceCriterionDetail.cls new file mode 100644 index 0000000..bb1778d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceCriterionDetail.cls @@ -0,0 +1,10 @@ +global class AudienceCriterionDetail { + global Map value; + global AudienceCriterionDetail() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceCriterionInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceCriterionInput.cls new file mode 100644 index 0000000..72da55b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceCriterionInput.cls @@ -0,0 +1,12 @@ +global class AudienceCriterionInput { + global List criterion; + global Integer criterionNumber; + global ConnectApi.AudienceCriteriaOperator criterionOperator; + global ConnectApi.AudienceCriteriaType criterionType; + global AudienceCriterionInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceCriterionValueInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceCriterionValueInput.cls new file mode 100644 index 0000000..132cf40 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceCriterionValueInput.cls @@ -0,0 +1,19 @@ +global class AudienceCriterionValueInput { + global String audienceId; + global String city; + global String country; + global String domainId; + global String entityField; + global String entityType; + global String fieldValue; + global Boolean isEnabled; + global String permission; + global String profileId; + global String subdivision; + global AudienceCriterionValueInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceInput.cls new file mode 100644 index 0000000..2bfdb05 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceInput.cls @@ -0,0 +1,12 @@ +global class AudienceInput { + global List criteria; + global String customFormula; + global ConnectApi.FormulaFilterType formulaFilterType; + global String name; + global AudienceInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceTarget.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceTarget.cls new file mode 100644 index 0000000..e0e775a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceTarget.cls @@ -0,0 +1,12 @@ +global class AudienceTarget { + global String audienceName; + global String id; + global String url; + global AudienceTarget() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceTargetAssignment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceTargetAssignment.cls new file mode 100644 index 0000000..a43b711 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AudienceTargetAssignment.cls @@ -0,0 +1,18 @@ +global class AudienceTargetAssignment { + global ConnectApi.FormulaScope formulaScope; + global String groupName; + global String id; + global Boolean isMatch; + global Integer priority; + global ConnectApi.PublishStatus publishStatus; + global String targetType; + global String targetValue; + global String url; + global AudienceTargetAssignment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AuditParamsRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AuditParamsRequest.cls new file mode 100644 index 0000000..4995eb1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AuditParamsRequest.cls @@ -0,0 +1,11 @@ +global class AuditParamsRequest { + global String email; + global String ipAddress; + global String macAddress; + global String phone; + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AuthApiPaymentMethodRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AuthApiPaymentMethodRequest.cls new file mode 100644 index 0000000..b4acf39 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AuthApiPaymentMethodRequest.cls @@ -0,0 +1,9 @@ +global class AuthApiPaymentMethodRequest { + global ConnectApi.CardPaymentMethodRequest cardPaymentMethod; + global AuthApiPaymentMethodRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AuthReversalGatewayResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AuthReversalGatewayResponse.cls new file mode 100644 index 0000000..a1a1406 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AuthReversalGatewayResponse.cls @@ -0,0 +1,9 @@ +global class AuthReversalGatewayResponse { + global AuthReversalGatewayResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AuthorizationGatewayResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AuthorizationGatewayResponse.cls new file mode 100644 index 0000000..8fbb7d8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AuthorizationGatewayResponse.cls @@ -0,0 +1,10 @@ +global class AuthorizationGatewayResponse { + global String gatewayAuthorizationCode; + global AuthorizationGatewayResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AuthorizationRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AuthorizationRequest.cls new file mode 100644 index 0000000..dc27871 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AuthorizationRequest.cls @@ -0,0 +1,16 @@ +global class AuthorizationRequest { + global String accountId; + global Double amount; + global String comments; + global String currencyIsoCode; + global Datetime effectiveDate; + global String paymentGatewayId; + global ConnectApi.PaymentGroupRequest paymentGroup; + global ConnectApi.AuthApiPaymentMethodRequest paymentMethod; + global AuthorizationRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AuthorizationResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AuthorizationResponse.cls new file mode 100644 index 0000000..d7ddf99 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AuthorizationResponse.cls @@ -0,0 +1,15 @@ +global class AuthorizationResponse { + global ConnectApi.ErrorResponse error; + global ConnectApi.AuthorizationGatewayResponse gatewayResponse; + global ConnectApi.PaymentAuthorizationResponse paymentAuthorization; + global List paymentGatewayLogs; + global ConnectApi.PaymentGroupResponse paymentGroup; + global ConnectApi.PaymentMethodResponse paymentMethod; + global AuthorizationResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AuthorizationReversalRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AuthorizationReversalRequest.cls new file mode 100644 index 0000000..a0b8e60 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AuthorizationReversalRequest.cls @@ -0,0 +1,12 @@ +global class AuthorizationReversalRequest { + global String accountId; + global Double amount; + global String comments; + global Datetime effectiveDate; + global AuthorizationReversalRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AuthorizationReversalResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AuthorizationReversalResponse.cls new file mode 100644 index 0000000..ef86b20 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AuthorizationReversalResponse.cls @@ -0,0 +1,13 @@ +global class AuthorizationReversalResponse { + global ConnectApi.ErrorResponse error; + global ConnectApi.AuthReversalGatewayResponse gatewayResponse; + global ConnectApi.PaymentAuthAdjustmentResponse paymentAuthAdjustment; + global List paymentGatewayLogs; + global AuthorizationReversalResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AvailableLocationOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AvailableLocationOutputRepresentation.cls new file mode 100644 index 0000000..4ed5ee1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AvailableLocationOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class AvailableLocationOutputRepresentation { + global List locations; + global AvailableLocationOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AverageDistanceResultOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AverageDistanceResultOutputRepresentation.cls new file mode 100644 index 0000000..d2d31f5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/AverageDistanceResultOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class AverageDistanceResultOutputRepresentation { + global ConnectApi.DistanceCalculationOutputRepresentation distanceCalculation; + global AverageDistanceResultOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BannerCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BannerCapability.cls new file mode 100644 index 0000000..5219872 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BannerCapability.cls @@ -0,0 +1,11 @@ +global class BannerCapability { + global ConnectApi.Motif motif; + global ConnectApi.BannerStyle style; + global BannerCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BannerPhoto.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BannerPhoto.cls new file mode 100644 index 0000000..a12985c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BannerPhoto.cls @@ -0,0 +1,12 @@ +global class BannerPhoto { + global String bannerPhotoUrl; + global String bannerPhotoVersionId; + global String url; + global BannerPhoto() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BannerPhotoInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BannerPhotoInput.cls new file mode 100644 index 0000000..c30f0ec --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BannerPhotoInput.cls @@ -0,0 +1,15 @@ +global class BannerPhotoInput { + global Integer cropHeight; + global Integer cropSize; + global Integer cropWidth; + global Integer cropX; + global Integer cropY; + global String fileId; + global Integer versionNumber; + global BannerPhotoInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BannerStyle.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BannerStyle.cls new file mode 100644 index 0000000..dea9b1f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BannerStyle.cls @@ -0,0 +1,3 @@ +global enum BannerStyle { +ANNOUNCEMENT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BaseApiPaymentMethodRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BaseApiPaymentMethodRequest.cls new file mode 100644 index 0000000..e49cb8d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BaseApiPaymentMethodRequest.cls @@ -0,0 +1,10 @@ +global class BaseApiPaymentMethodRequest { + global ConnectApi.AddressRequest address; + global String id; + global Boolean saveForFuture; + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BaseAsyncOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BaseAsyncOutputRepresentation.cls new file mode 100644 index 0000000..768feaa --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BaseAsyncOutputRepresentation.cls @@ -0,0 +1,9 @@ +global class BaseAsyncOutputRepresentation { + global String backgroundOperationId; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BaseInvoiceOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BaseInvoiceOutputRepresentation.cls new file mode 100644 index 0000000..9a11997 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BaseInvoiceOutputRepresentation.cls @@ -0,0 +1,9 @@ +global class BaseInvoiceOutputRepresentation { + global String invoiceId; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BaseManagedSocialAccount.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BaseManagedSocialAccount.cls new file mode 100644 index 0000000..5ab47ad --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BaseManagedSocialAccount.cls @@ -0,0 +1,17 @@ +global class BaseManagedSocialAccount { + global String defaultResponseAccountId; + global String displayName; + global String externalPictureUrl; + global String id; + global String label; + global String profileUrl; + global ConnectApi.SocialNetworkProvider socialNetwork; + global String uniqueName; + global String username; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BaseOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BaseOutputRepresentation.cls new file mode 100644 index 0000000..b5e57e4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BaseOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class BaseOutputRepresentation { + global List errors; + global Boolean success; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BasePaymentMethodRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BasePaymentMethodRequest.cls new file mode 100644 index 0000000..79e81fa --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BasePaymentMethodRequest.cls @@ -0,0 +1,7 @@ +global class BasePaymentMethodRequest { + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BaseRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BaseRequest.cls new file mode 100644 index 0000000..42e089d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BaseRequest.cls @@ -0,0 +1,9 @@ +global class BaseRequest { + global Map additionalData; + global Boolean duplicate; + global String idempotencyKey; + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BasicTemplateAttachment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BasicTemplateAttachment.cls new file mode 100644 index 0000000..94cce6c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BasicTemplateAttachment.cls @@ -0,0 +1,15 @@ +global class BasicTemplateAttachment { + global String description; + global ConnectApi.Icon icon; + global String linkRecordId; + global String linkUrl; + global String subtype; + global String title; + global BasicTemplateAttachment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BatchInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BatchInput.cls new file mode 100644 index 0000000..d025348 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BatchInput.cls @@ -0,0 +1,10 @@ +global class BatchInput { + global BatchInput(Object input, ConnectApi.BinaryInput binary) { } + global BatchInput(Object input, List binaries) { } + global BatchInput(Object input) { } + global Object clone() { } + global List getBinaries() { } + global Object getInput() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BatchResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BatchResult.cls new file mode 100644 index 0000000..e75b839 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BatchResult.cls @@ -0,0 +1,16 @@ +global class BatchResult { + global Exception error; + global String errorMessage; + global String errorTypeName; + global Boolean isSuccess; + global Object result; + global BatchResult(Object result, Exception error) { } + global Object clone() { } + global Exception getError() { } + global String getErrorMessage() { } + global String getErrorTypeName() { } + global Object getResult() { } + global Boolean isSuccess() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BenefitDisbursementsInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BenefitDisbursementsInputRepresentation.cls new file mode 100644 index 0000000..3925183 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BenefitDisbursementsInputRepresentation.cls @@ -0,0 +1,12 @@ +global class BenefitDisbursementsInputRepresentation { + global Datetime disbursementDate; + global List enrollees; + global Double quantity; + global String status; + global BenefitDisbursementsInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BenefitDisbursementsOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BenefitDisbursementsOutputRepresentation.cls new file mode 100644 index 0000000..44e1948 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BenefitDisbursementsOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class BenefitDisbursementsOutputRepresentation { + global String message; + global Boolean success; + global BenefitDisbursementsOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BenefitScheduleParticipantsInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BenefitScheduleParticipantsInputRepresentation.cls new file mode 100644 index 0000000..d49309b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BenefitScheduleParticipantsInputRepresentation.cls @@ -0,0 +1,9 @@ +global class BenefitScheduleParticipantsInputRepresentation { + global List enrollees; + global BenefitScheduleParticipantsInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BenefitScheduleParticipantsOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BenefitScheduleParticipantsOutputRepresentation.cls new file mode 100644 index 0000000..d95f531 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BenefitScheduleParticipantsOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class BenefitScheduleParticipantsOutputRepresentation { + global String message; + global Boolean success; + global BenefitScheduleParticipantsOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BenefitSessionParticipantsInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BenefitSessionParticipantsInputRepresentation.cls new file mode 100644 index 0000000..1d51917 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BenefitSessionParticipantsInputRepresentation.cls @@ -0,0 +1,9 @@ +global class BenefitSessionParticipantsInputRepresentation { + global List enrollees; + global BenefitSessionParticipantsInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BenefitSessionParticipantsOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BenefitSessionParticipantsOutputRepresentation.cls new file mode 100644 index 0000000..6ab5605 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BenefitSessionParticipantsOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class BenefitSessionParticipantsOutputRepresentation { + global String message; + global Boolean success; + global BenefitSessionParticipantsOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BenefitSessions.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BenefitSessions.cls new file mode 100644 index 0000000..c0c1424 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BenefitSessions.cls @@ -0,0 +1,12 @@ +global class BenefitSessions { + global Datetime endDate; + global String name; + global Datetime startDate; + global BenefitSessions() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Billing.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Billing.cls new file mode 100644 index 0000000..9093fbf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Billing.cls @@ -0,0 +1,3 @@ +global class Billing { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BillingAddressRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BillingAddressRequest.cls new file mode 100644 index 0000000..e6e1554 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BillingAddressRequest.cls @@ -0,0 +1,16 @@ +global class BillingAddressRequest { + global String city; + global String country; + global Double latitude; + global String locationCode; + global Double longitude; + global String postalCode; + global String state; + global String street; + global BillingAddressRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BillingMethodEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BillingMethodEnum.cls new file mode 100644 index 0000000..d4aba40 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BillingMethodEnum.cls @@ -0,0 +1,4 @@ +global enum BillingMethodEnum { +EVERGREEN, +ORDERAMOUNT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BillingScheduleOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BillingScheduleOutputRepresentation.cls new file mode 100644 index 0000000..6a53aa8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BillingScheduleOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class BillingScheduleOutputRepresentation { + global String billingScheduleId; + global List errors; + global BillingScheduleOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BillingScheduleStatusEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BillingScheduleStatusEnum.cls new file mode 100644 index 0000000..f531744 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BillingScheduleStatusEnum.cls @@ -0,0 +1,4 @@ +global enum BillingScheduleStatusEnum { +COMPLETELYBILLED, +READYFORINVOICING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BillingStatusEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BillingStatusEnum.cls new file mode 100644 index 0000000..fec5e22 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BillingStatusEnum.cls @@ -0,0 +1,5 @@ +global enum BillingStatusEnum { +ERROR, +ERRORPOSTED, +SUCCESS +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BillingTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BillingTypeEnum.cls new file mode 100644 index 0000000..93d3597 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BillingTypeEnum.cls @@ -0,0 +1,3 @@ +global enum BillingTypeEnum { +ADVANCE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BinaryInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BinaryInput.cls new file mode 100644 index 0000000..36853f3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BinaryInput.cls @@ -0,0 +1,9 @@ +global class BinaryInput { + global BinaryInput(Blob blobValue, String contentType, String filename) { } + global Object clone() { } + global Blob getBlobValue() { } + global String getContentType() { } + global String getFilename() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BlankRecordField.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BlankRecordField.cls new file mode 100644 index 0000000..2ad1ace --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BlankRecordField.cls @@ -0,0 +1,9 @@ +global class BlankRecordField { + global BlankRecordField() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BlockchainConfig.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BlockchainConfig.cls new file mode 100644 index 0000000..5b3fb55 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BlockchainConfig.cls @@ -0,0 +1,3 @@ +global class BlockchainConfig { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BlockchainConfigObject.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BlockchainConfigObject.cls new file mode 100644 index 0000000..b9b306a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BlockchainConfigObject.cls @@ -0,0 +1,20 @@ +global class BlockchainConfigObject { + global String blockchainLabel; + global Long chainIdentifier; + global String currencyCode; + global Boolean isEnabled; + global Boolean isTestnet; + global String name; + global String networkDeveloperName; + global String rpcUrl; + global String scanUrl; + global String signatureVerifierContract; + global String type; + global BlockchainConfigObject() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BookAppointmentResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BookAppointmentResult.cls new file mode 100644 index 0000000..a2665d7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BookAppointmentResult.cls @@ -0,0 +1,16 @@ +global class BookAppointmentResult { + global String appointmentId; + global ConnectApi.ErrorRepresentation error; + global Boolean isSuccess; + global String jsonResponse; + global String patientId; + global String sourceAppointmentId; + global ConnectApi.BookingStatus status; + global BookAppointmentResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BookAppointmentsInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BookAppointmentsInput.cls new file mode 100644 index 0000000..a5d3c1a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BookAppointmentsInput.cls @@ -0,0 +1,18 @@ +global class BookAppointmentsInput { + global String appointmentId; + global String appointmentType; + global String channelId; + global String externalPatientId; + global ConnectApi.HCAddressInput facilityAddress; + global String healthcarePractitionerFacilityId; + global String note; + global String patientId; + global String serviceType; + global ConnectApi.GetSlotStatusInput slot; + global BookAppointmentsInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BookingStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BookingStatus.cls new file mode 100644 index 0000000..808a6ce --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BookingStatus.cls @@ -0,0 +1,7 @@ +global enum BookingStatus { +CANCELED, +NOSHOW, +PROPOSED, +REJECTED, +SCHEDULED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BookmarkSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BookmarkSummary.cls new file mode 100644 index 0000000..a2a06af --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BookmarkSummary.cls @@ -0,0 +1,9 @@ +global class BookmarkSummary { + global BookmarkSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BookmarksCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BookmarksCapability.cls new file mode 100644 index 0000000..8ab8ed2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BookmarksCapability.cls @@ -0,0 +1,10 @@ +global class BookmarksCapability { + global Boolean isBookmarkedByCurrentUser; + global BookmarksCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BookmarksCapabilityInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BookmarksCapabilityInput.cls new file mode 100644 index 0000000..7f4206b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BookmarksCapabilityInput.cls @@ -0,0 +1,9 @@ +global class BookmarksCapabilityInput { + global Boolean isBookmarkedByCurrentUser; + global BookmarksCapabilityInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BotInfoRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BotInfoRepresentation.cls new file mode 100644 index 0000000..dfbaa86 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BotInfoRepresentation.cls @@ -0,0 +1,12 @@ +global class BotInfoRepresentation { + global String botId; + global String botName; + global Datetime lastModifiedDate; + global BotInfoRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BotLLMPromptTemplateType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BotLLMPromptTemplateType.cls new file mode 100644 index 0000000..b6e641f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BotLLMPromptTemplateType.cls @@ -0,0 +1,5 @@ +global enum BotLLMPromptTemplateType { +MESSAGE, +REGEX, +SYNONYM +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BotLLMProviderType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BotLLMProviderType.cls new file mode 100644 index 0000000..bdbb447 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BotLLMProviderType.cls @@ -0,0 +1,6 @@ +global enum BotLLMProviderType { +COHERE, +EINSTEINCODE, +EINSTEINTEXT, +OPENAI +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BotRuntimeApi.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BotRuntimeApi.cls new file mode 100644 index 0000000..f947884 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BotRuntimeApi.cls @@ -0,0 +1,3 @@ +global class BotRuntimeApi { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BotRuntimeApiInfo.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BotRuntimeApiInfo.cls new file mode 100644 index 0000000..54b99f8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BotRuntimeApiInfo.cls @@ -0,0 +1,10 @@ +global class BotRuntimeApiInfo { + global String runtimeBaseUrl; + global BotRuntimeApiInfo() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BotVersionActivation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BotVersionActivation.cls new file mode 100644 index 0000000..60358b2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BotVersionActivation.cls @@ -0,0 +1,3 @@ +global class BotVersionActivation { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BotVersionActivationInfo.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BotVersionActivationInfo.cls new file mode 100644 index 0000000..c9e57bd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BotVersionActivationInfo.cls @@ -0,0 +1,12 @@ +global class BotVersionActivationInfo { + global Boolean isActivated; + global List messages; + global Boolean success; + global BotVersionActivationInfo() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BotVersionActivationInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BotVersionActivationInput.cls new file mode 100644 index 0000000..829ba49 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BotVersionActivationInput.cls @@ -0,0 +1,9 @@ +global class BotVersionActivationInput { + global ConnectApi.BotVersionActivationStatus status; + global BotVersionActivationInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BotVersionActivationStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BotVersionActivationStatus.cls new file mode 100644 index 0000000..1df7260 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BotVersionActivationStatus.cls @@ -0,0 +1,4 @@ +global enum BotVersionActivationStatus { +ACTIVE, +INACTIVE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BuildVerificationContextInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BuildVerificationContextInput.cls new file mode 100644 index 0000000..4460741 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BuildVerificationContextInput.cls @@ -0,0 +1,12 @@ +global class BuildVerificationContextInput { + global String objectName; + global String processDetailName; + global String selectedRecordId; + global ConnectApi.SelectedVerifiedResultInput selectedVerifiedResult; + global BuildVerificationContextInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BundleCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BundleCapability.cls new file mode 100644 index 0000000..eb6b89c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BundleCapability.cls @@ -0,0 +1,11 @@ +global class BundleCapability { + global ConnectApi.BundleType bundleType; + global ConnectApi.FeedElementPage page; + global Integer totalElements; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BundleType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BundleType.cls new file mode 100644 index 0000000..bfcbedc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BundleType.cls @@ -0,0 +1,4 @@ +global enum BundleType { +GENERICBUNDLE, +TRACKEDCHANGES +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BuyerProfileRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BuyerProfileRepresentation.cls new file mode 100644 index 0000000..2453a14 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/BuyerProfileRepresentation.cls @@ -0,0 +1,12 @@ +global class BuyerProfileRepresentation { + global String email; + global String firstName; + global String lastName; + global BuyerProfileRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CalculateProjectedRebateAmountOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CalculateProjectedRebateAmountOutputRepresentation.cls new file mode 100644 index 0000000..0043b92 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CalculateProjectedRebateAmountOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class CalculateProjectedRebateAmountOutputRepresentation { + global List projectedRebateAmountCalc; + global CalculateProjectedRebateAmountOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CalculateTaxRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CalculateTaxRequest.cls new file mode 100644 index 0000000..9d4e8c6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CalculateTaxRequest.cls @@ -0,0 +1,12 @@ +global class CalculateTaxRequest { + global Boolean isCommit; + global String taxEngineId; + global ConnectApi.TaxTransactionType taxTransactionType; + global ConnectApi.CalculateTaxTypeRequest taxType; + global CalculateTaxRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CalculateTaxResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CalculateTaxResponse.cls new file mode 100644 index 0000000..6830ef5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CalculateTaxResponse.cls @@ -0,0 +1,14 @@ +global class CalculateTaxResponse { + global ConnectApi.ErrorResponse adapterError; + global ConnectApi.TaxTransactionState status; + global List taxEngineLogs; + global ConnectApi.TaxTransactionType taxTransactionType; + global ConnectApi.CalculateTaxTypeRequest taxType; + global CalculateTaxResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CalculateTaxTypeRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CalculateTaxTypeRequest.cls new file mode 100644 index 0000000..28517a3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CalculateTaxTypeRequest.cls @@ -0,0 +1,4 @@ +global enum CalculateTaxTypeRequest { +ACTUAL, +ESTIMATED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CalculatedInsightDefinitionTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CalculatedInsightDefinitionTypeEnum.cls new file mode 100644 index 0000000..c301cf0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CalculatedInsightDefinitionTypeEnum.cls @@ -0,0 +1,5 @@ +global enum CalculatedInsightDefinitionTypeEnum { +CALCULATEDMETRIC, +EXTERNALMETRIC, +STREAMINGMETRIC +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CalculatedInsightPublishScheduleInterval.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CalculatedInsightPublishScheduleInterval.cls new file mode 100644 index 0000000..e275e44 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CalculatedInsightPublishScheduleInterval.cls @@ -0,0 +1,9 @@ +global enum CalculatedInsightPublishScheduleInterval { +EXTERNALLYMANAGED, +NOTSCHEDULED, +SIX, +STREAMING, +SYSTEMMANAGED, +TWELVE, +TWENTYFOUR +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CallCollaborationCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CallCollaborationCapability.cls new file mode 100644 index 0000000..37e5cf9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CallCollaborationCapability.cls @@ -0,0 +1,11 @@ +global class CallCollaborationCapability { + global Integer commentEndTime; + global Integer commentStartTime; + global CallCollaborationCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CancelAppointmentResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CancelAppointmentResult.cls new file mode 100644 index 0000000..e527b66 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CancelAppointmentResult.cls @@ -0,0 +1,15 @@ +global class CancelAppointmentResult { + global ConnectApi.ErrorRepresentation error; + global String externalAppointmentId; + global Boolean isSuccess; + global String jsonResponse; + global String serviceAppointmentId; + global ConnectApi.BookingStatus status; + global CancelAppointmentResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CancelAppointmentsInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CancelAppointmentsInput.cls new file mode 100644 index 0000000..b4bc53d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CancelAppointmentsInput.cls @@ -0,0 +1,17 @@ +global class CancelAppointmentsInput { + global String appointmentType; + global String externalAppointmentId; + global String externalPatientId; + global String healthcarePractitionerFacilityId; + global String patientId; + global String serviceAppointmentId; + global String serviceType; + global ConnectApi.GetSlotStatusInput slot; + global String status; + global CancelAppointmentsInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CandidateAnswersStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CandidateAnswersStatus.cls new file mode 100644 index 0000000..02d709b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CandidateAnswersStatus.cls @@ -0,0 +1,12 @@ +global class CandidateAnswersStatus { + global Boolean hasCandidateAnswers; + global Boolean hasCandidateAnswersPublished; + global Boolean hasCandidateAnswersRated; + global CandidateAnswersStatus() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CanvasAttachmentInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CanvasAttachmentInput.cls new file mode 100644 index 0000000..d24f41d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CanvasAttachmentInput.cls @@ -0,0 +1,15 @@ +global class CanvasAttachmentInput { + global String description; + global String developerName; + global String height; + global String namespacePrefix; + global String parameters; + global String thumbnailUrl; + global String title; + global CanvasAttachmentInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CanvasCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CanvasCapability.cls new file mode 100644 index 0000000..303928f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CanvasCapability.cls @@ -0,0 +1,17 @@ +global class CanvasCapability { + global String description; + global String developerName; + global String height; + global ConnectApi.Icon icon; + global String namespacePrefix; + global String parameters; + global String thumbnailUrl; + global String title; + global CanvasCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CanvasCapabilityInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CanvasCapabilityInput.cls new file mode 100644 index 0000000..7ae2c18 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CanvasCapabilityInput.cls @@ -0,0 +1,15 @@ +global class CanvasCapabilityInput { + global String description; + global String developerName; + global String height; + global String namespacePrefix; + global String parameters; + global String thumbnailUrl; + global String title; + global CanvasCapabilityInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CanvasTemplateAttachment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CanvasTemplateAttachment.cls new file mode 100644 index 0000000..df0d5b5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CanvasTemplateAttachment.cls @@ -0,0 +1,17 @@ +global class CanvasTemplateAttachment { + global String description; + global String developerName; + global String height; + global ConnectApi.Icon icon; + global String namespacePrefix; + global String parameters; + global String thumbnailUrl; + global String title; + global CanvasTemplateAttachment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CapacityRequestInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CapacityRequestInputRepresentation.cls new file mode 100644 index 0000000..a11a63d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CapacityRequestInputRepresentation.cls @@ -0,0 +1,10 @@ +global class CapacityRequestInputRepresentation { + global String actionRequestId; + global String locationId; + global CapacityRequestInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CapacityResponseOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CapacityResponseOutputRepresentation.cls new file mode 100644 index 0000000..b1780cd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CapacityResponseOutputRepresentation.cls @@ -0,0 +1,12 @@ +global class CapacityResponseOutputRepresentation { + global String actionRequestId; + global ConnectApi.ErrorResponse error; + global Boolean success; + global CapacityResponseOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaptureGatewayResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaptureGatewayResponse.cls new file mode 100644 index 0000000..346a75e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaptureGatewayResponse.cls @@ -0,0 +1,9 @@ +global class CaptureGatewayResponse { + global CaptureGatewayResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaptureRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaptureRequest.cls new file mode 100644 index 0000000..002faf8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaptureRequest.cls @@ -0,0 +1,14 @@ +global class CaptureRequest { + global String accountId; + global Double amount; + global String clientContext; + global String comments; + global Datetime effectiveDate; + global ConnectApi.PaymentGroupRequest paymentGroup; + global CaptureRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaptureResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaptureResponse.cls new file mode 100644 index 0000000..17dbdec --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaptureResponse.cls @@ -0,0 +1,14 @@ +global class CaptureResponse { + global ConnectApi.ErrorResponse error; + global ConnectApi.CaptureGatewayResponse gatewayResponse; + global ConnectApi.PaymentResponse payment; + global List paymentGatewayLogs; + global ConnectApi.PaymentGroupResponse paymentGroup; + global CaptureResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CardCategory.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CardCategory.cls new file mode 100644 index 0000000..8581c6b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CardCategory.cls @@ -0,0 +1,4 @@ +global enum CardCategory { +CREDITCARD, +DEBITCARD +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CardDetailOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CardDetailOutput.cls new file mode 100644 index 0000000..36c3de5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CardDetailOutput.cls @@ -0,0 +1,14 @@ +global class CardDetailOutput { + global String configurationDeveloperName; + global String contextObjectId; + global String indirectRelationshipObjectId; + global String relatedObjectId; + global List rows; + global CardDetailOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CardOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CardOutput.cls new file mode 100644 index 0000000..4c39812 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CardOutput.cls @@ -0,0 +1,14 @@ +global class CardOutput { + global String cardRelatedObject; + global String configurationDeveloperName; + global String indirectObjectId; + global String name; + global String objectApiName; + global CardOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CardPaymentMethodOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CardPaymentMethodOutput.cls new file mode 100644 index 0000000..da361db --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CardPaymentMethodOutput.cls @@ -0,0 +1,27 @@ +global class CardPaymentMethodOutput { + global String accountId; + global Boolean autoPay; + global String cardBin; + global ConnectApi.CardCategory cardCategory; + global String cardHolderFirstName; + global String cardHolderLastName; + global String cardHolderName; + global String cardLastFour; + global String cardType; + global ConnectApi.CardType cardTypeCategory; + global String comments; + global String displayCardNumber; + global String email; + global Integer expiryMonth; + global Integer expiryYear; + global String nickName; + global Integer startMonth; + global Integer startYear; + global CardPaymentMethodOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CardPaymentMethodRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CardPaymentMethodRequest.cls new file mode 100644 index 0000000..ee10f94 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CardPaymentMethodRequest.cls @@ -0,0 +1,24 @@ +global class CardPaymentMethodRequest { + global String accountId; + global Boolean autoPay; + global ConnectApi.CardCategory cardCategory; + global String cardHolderFirstName; + global String cardHolderLastName; + global String cardHolderName; + global String cardNumber; + global String cardType; + global String comments; + global String cvv; + global String email; + global Integer expiryMonth; + global Integer expiryYear; + global String nickName; + global Integer startMonth; + global Integer startYear; + global CardPaymentMethodRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CardRowOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CardRowOutput.cls new file mode 100644 index 0000000..2bd50ba --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CardRowOutput.cls @@ -0,0 +1,13 @@ +global class CardRowOutput { + global Integer index; + global String label; + global String type; + global String value; + global CardRowOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CardType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CardType.cls new file mode 100644 index 0000000..da525d5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CardType.cls @@ -0,0 +1,10 @@ +global enum CardType { +AMERICANEXPRESS, +DINERSCLUB, +DISCOVER, +JCB, +MAESTRO, +MASTERCARD, +UNIONPAY, +VISA +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareAuthorizationCaseOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareAuthorizationCaseOutput.cls new file mode 100644 index 0000000..d3dc2ba --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareAuthorizationCaseOutput.cls @@ -0,0 +1,34 @@ +global class CareAuthorizationCaseOutput { + global String accountName; + global String caseNumber; + global String caseOrigin; + global String caseOwner; + global String caseReason; + global Boolean closed; + global String contactName; + global String createdBy; + global Datetime dateClosed; + global Datetime dateOpened; + global String description; + global Boolean escalated; + global String lastModifiedBy; + global Datetime lastModifiedDate; + global Datetime lastReferencedDate; + global Datetime lastViewedDate; + global String parentCase; + global String priority; + global String status; + global String subject; + global String type; + global String webCompany; + global String webEmail; + global String webName; + global String webPhone; + global CareAuthorizationCaseOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareAuthorizationOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareAuthorizationOutput.cls new file mode 100644 index 0000000..d51e091 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareAuthorizationOutput.cls @@ -0,0 +1,19 @@ +global class CareAuthorizationOutput { + global List careDiagnoses; + global List careProcessingErrors; + global ConnectApi.CareRequestOutput careRequest; + global ConnectApi.CareAuthorizationCaseOutput careRequestCase; + global List careRequestDrugs; + global List careRequestItems; + global ConnectApi.CareAuthorizationPatientOutput patient; + global ConnectApi.SubscriberOutput subscriber; + global List trackedCommunications; + global List transportLocations; + global CareAuthorizationOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareAuthorizationOutputResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareAuthorizationOutputResult.cls new file mode 100644 index 0000000..ce8f96d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareAuthorizationOutputResult.cls @@ -0,0 +1,10 @@ +global class CareAuthorizationOutputResult { + global List relatedRecords; + global CareAuthorizationOutputResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareAuthorizationPatientOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareAuthorizationPatientOutput.cls new file mode 100644 index 0000000..8be9042 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareAuthorizationPatientOutput.cls @@ -0,0 +1,13 @@ +global class CareAuthorizationPatientOutput { + global Datetime birthDate; + global String firstName; + global String lastName; + global String memberId; + global CareAuthorizationPatientOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareAuthorizationRequestGetResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareAuthorizationRequestGetResult.cls new file mode 100644 index 0000000..90df0e9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareAuthorizationRequestGetResult.cls @@ -0,0 +1,12 @@ +global class CareAuthorizationRequestGetResult { + global List careAuthorizationRequests; + global String errorMessage; + global Boolean isSuccess; + global CareAuthorizationRequestGetResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareAuthorizationRequestRelatedRecordResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareAuthorizationRequestRelatedRecordResult.cls new file mode 100644 index 0000000..97cb9fc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareAuthorizationRequestRelatedRecordResult.cls @@ -0,0 +1,9 @@ +global class CareAuthorizationRequestRelatedRecordResult { + global CareAuthorizationRequestRelatedRecordResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareAuthorizationRequestResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareAuthorizationRequestResult.cls new file mode 100644 index 0000000..3ecf420 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareAuthorizationRequestResult.cls @@ -0,0 +1,13 @@ +global class CareAuthorizationRequestResult { + global String code; + global Boolean isSuccess; + global String message; + global List result; + global CareAuthorizationRequestResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareDiagnosisOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareDiagnosisOutput.cls new file mode 100644 index 0000000..3d6674e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareDiagnosisOutput.cls @@ -0,0 +1,41 @@ +global class CareDiagnosisOutput { + global List careRequestReviewers; + global String codeDescription; + global String codeType; + global String codeTypeID; + global String diagnosisCodeSet; + global String dischargeCode; + global String dischargeCodeDescription; + global String dischargeCodeType; + global String dischargeCodeTypeId; + global String dischargeDiagnosisCodeSet; + global Datetime dischargeDiagnosisEffectiveDate; + global Datetime dischargeDiagnosisEndDate; + global Datetime effectiveDate; + global Datetime endDate; + global String healthConditionId; + global String healthcareDiagnosisCode; + global String id; + global String modifiedCode; + global String modifiedCodeDescription; + global String modifiedCodeType; + global String modifiedCodeTypeId; + global String modifiedDiagnosisCodeSet; + global Datetime modifiedEffectiveDate; + global Datetime modifiedEndDate; + global Boolean modifiedPrimaryDiagnosis; + global String name; + global String presentOnAdmission; + global Boolean primary; + global Boolean primaryDischargeDiagnosis; + global String sourceSystem; + global String sourceSystemIdentifier; + global Datetime sourceSystemModified; + global CareDiagnosisOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareProcessingErrorOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareProcessingErrorOutput.cls new file mode 100644 index 0000000..a930c3d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareProcessingErrorOutput.cls @@ -0,0 +1,26 @@ +global class CareProcessingErrorOutput { + global String actionCode; + global String actionCodeDescription; + global String actionCodeId; + global String actionCodeName; + global String actionCodeSourceSystem; + global String actionCodeSystemVersion; + global String description; + global String errorCode; + global String errorCodeDescription; + global String errorCodeId; + global String errorCodeName; + global String errorCodeSourceSystem; + global String errorCodeSystemVersion; + global String id; + global String name; + global String referenceObjectId; + global String referenceObjectName; + global CareProcessingErrorOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareProviderResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareProviderResult.cls new file mode 100644 index 0000000..92ac5b9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareProviderResult.cls @@ -0,0 +1,14 @@ +global class CareProviderResult { + global String careProviderId; + global String npi; + global String sourceFacilityId; + global String sourcePractitionerId; + global String sourceSystem; + global CareProviderResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareRequestDrugOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareRequestDrugOutput.cls new file mode 100644 index 0000000..196fecf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareRequestDrugOutput.cls @@ -0,0 +1,64 @@ +global class CareRequestDrugOutput { + global Integer approvedUnits; + global String authApprovalIdentifier; + global String authorizationRefIdentifier; + global List careRequestReviewers; + global String clinicalDetermination; + global String clinicalDeterminationNote; + global String clinicalDeterminationReason; + global String code; + global String codeType; + global Integer daysSupply; + global Datetime decisionDate; + global Integer deniedUnits; + global ConnectApi.DispenserAddressOutput dispenserAddress; + global String dispenserFaxNumber; + global String dispenserId; + global String dispenserName; + global String dispenserPhoneNumber; + global String dispenserTaxId; + global String dispensingPharmacy; + global String dose; + global String drugAdministrationSetting; + global String drugCode; + global String frequency; + global String id; + global String medicationCode; + global String medicationRefObjectId; + global String modifiedCode; + global String modifiedCodeType; + global Integer modifiedDaysSupply; + global String modifiedDose; + global String modifiedFrequency; + global String modifiedName; + global String modifiedSig; + global String modifiedStrength; + global Integer modifiedTherapyDuration; + global Integer modifiedUnits; + global String name; + global Datetime prescriptionDate; + global Datetime prescriptionFillDate; + global Integer prescriptionFills; + global String priority; + global String requestType; + global String serviceCategory; + global String serviceCategoryCode; + global ConnectApi.ServicingFacilityOutput servicingFacility; + global ConnectApi.ServicingPractitionerOutput servicingProvider; + global String sig; + global String sourceSystem; + global String sourceSystemIdentifier; + global Datetime sourceSystemModified; + global String status; + global String statusReason; + global String strength; + global Integer therapyDuration; + global Integer units; + global CareRequestDrugOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareRequestItemOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareRequestItemOutput.cls new file mode 100644 index 0000000..40eaf8a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareRequestItemOutput.cls @@ -0,0 +1,74 @@ +global class CareRequestItemOutput { + global Integer approvedLengthOfStay; + global String approvedLevelOfCare; + global Integer approvedQuantity; + global Datetime approvedServiceEndDate; + global Datetime approvedServiceStartDate; + global String authApprovalIdentifier; + global String authorizationRefIdentifier; + global List careRequestReviewers; + global String clinicalDetermination; + global String clinicalDeterminationNotes; + global String clinicalDeterminationReason; + global String clinicalServiceRequestId; + global String codeDescription; + global String codeType; + global String codeTypeId; + global Integer cumulativeLengthOfStay; + global String currentLevelOfCare; + global Datetime decisionDate; + global String deniedLevelOfCare; + global Integer deniedQuantity; + global Datetime effectiveDate; + global Datetime endDate; + global String freeFormProcedureDescription; + global String healthcareProcedureCode; + global String id; + global Datetime modifiedCareEndDate; + global String modifiedCode; + global String modifiedCodeDescription; + global String modifiedCodeType; + global String modifiedCodeTypeId; + global Datetime modifiedEffectiveDate; + global String modifiedLevelOfCare; + global String modifiedModifier; + global String modifiedModifierDescription; + global String modifiedProcedureCodeSet; + global Integer modifiedQuantity; + global String modifier1; + global String modifier1Description; + global String modifier2; + global String modifier2Description; + global String modifier3; + global String modifier3Description; + global String modifier4; + global String modifier4Description; + global String modifierCodeSet; + global String name; + global String priority; + global String procedureCodeSet; + global Integer quantity; + global String quantityType; + global String reasonCode; + global String requestType; + global Integer requestedLengthOfStay; + global String requestedLevelOfCare; + global Datetime requestedServiceEndDate; + global Datetime requestedServiceStartDate; + global String serviceCategory; + global String serviceCategoryCode; + global ConnectApi.ServicingFacilityOutput servicingFacility; + global ConnectApi.ServicingPractitionerOutput servicingProvider; + global String sourceSystem; + global String sourceSystemIdentifier; + global Datetime sourceSystemModified; + global String status; + global String statusReason; + global CareRequestItemOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareRequestOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareRequestOutput.cls new file mode 100644 index 0000000..751035d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareRequestOutput.cls @@ -0,0 +1,146 @@ +global class CareRequestOutput { + global Datetime acknowledgementLetterSentDate; + global Datetime actualAdmissionDate; + global Datetime actualDischargeDate; + global String admissionNotes; + global String admissionSource; + global String admissionType; + global Double ambulanceTransportDistance; + global String ambulanceTransportReason; + global String ambulanceTransportType; + global Datetime aorReceivedDate; + global Datetime aorRequestedDate; + global Datetime appealEffectuationDateTime; + global String appealRequestReasonType; + global Datetime appointedRepVerbalContactDate; + global Datetime appointedRepWrittenContactDate; + global ConnectApi.AppointedRepresentativeOutput appointedRepresentative; + global Integer approvedLengthofStay; + global String approvedLevelofCare; + global String authorizationRefIdentifier; + global List careRequestReviewers; + global String caseSubStatus; + global String claimNumber; + global String clinicalCaseType; + global String criteriaMet; + global Integer cumulativeLengthofStay; + global String currentLevelofCare; + global Datetime decisionDate; + global Integer decisionDaysRemaining; + global String decisionLetter; + global String decisionNotes; + global String decisionReason; + global String decisionReasonDescription; + global Integer deniedLengthofStay; + global String deniedLevelofCare; + global String dispositionNotes; + global String documentAttachmentStatus; + global Datetime dueDate; + global Datetime effectiveFrom; + global Datetime effectiveTo; + global Datetime expirationDate; + global Boolean extendedRequest; + global Datetime extensionRequestReceivedDate; + global String externalComplaintID; + global String facilityRecordNumber; + global String facilityRoomBedType; + global String facilityRoomNumber; + global String finalLevelofCare; + global ConnectApi.FirstReviewerOutput firstReviewer; + global String firstReviewerNotes; + global ConnectApi.GeneralPractitionerOutput generalPractitioner; + global Datetime generalPractitionerVerbalNotificationDate; + global Datetime generalPractitionerWrittenNotificationDate; + global String grievanceType; + global String healthcareProvider; + global Datetime homeHealthCertificationEndDate; + global Datetime homeHealthCertificationStartDate; + global Datetime homeHealthStartDate; + global String id; + global String independentReviewDetermination; + global Datetime independentReviewDeterminationDate; + global Datetime independentReviewSubmissionDate; + global Datetime infoReceievedDate; + global Datetime infoRequestedDate; + global Datetime initialDenialNotificationDate; + global String initialDenialNotificationTime; + global Boolean isIndependentReviewRequired; + global Boolean isReadmission; + global Datetime lastModifiedDate; + global ConnectApi.MedicalDirectorOutput medicalDirector; + global String medicalDirectorNotes; + global String member; + global Datetime memberContactDate; + global String memberGroupNumber; + global String memberPrimaryPlan; + global String memberSecondaryPlan; + global Datetime memberVerbalNotificationDate; + global Datetime memberWrittenNotificationDate; + global Datetime modificationDate; + global Integer modifiedLengthofStay; + global String modifiedLevelofCare; + global Datetime nextReviewDate; + global String nursingHomeResidentialStatus; + global ConnectApi.OriginalDenialMedicalDirectorOutput originalDenialMedicalDirector; + global String parProvider; + global String placeofService; + global Datetime practitionerContactDate; + global String priorDischargeStatus; + global Integer quantity; + global String quantityType; + global Datetime receivedDate; + global Datetime reconsiderationDenialNotificationDate; + global String reconsiderationDenialNotificationTime; + global String recordType; + global String referenceCareRequestCase; + global String referenceCaseNumber; + global String referenceCaseType; + global Datetime reopenDecisionDateTime; + global String reopenReason; + global String reopenReasonDescription; + global String reopenRequestOutcome; + global String reopenRequestType; + global ConnectApi.ReopenedByOutput reopenedBy; + global Datetime reopenedDate; + global String requestExtensionReason; + global Datetime requestExtnDecisionDateTime; + global String requestOutcome; + global String requestOutcomeDesc; + global String requestType; + global Datetime requestedDate; + global Integer requestedLengthOfStay; + global String requestedLevelofCare; + global String requesterType; + global ConnectApi.RequestingPractitionerOutput requestingPractitioner; + global String requestingPractitionerLicense; + global String requestingPractitionerSpecialty; + global Datetime requestingPractitionerVerbalNotificationDate; + global Datetime requestingPractitionerWrittenNotificationDate; + global Datetime resolutionDate; + global String resolutionDescription; + global Datetime resolutionLetterSentDate; + global String resolutionNotes; + global Datetime reviewDate; + global String rootCauseNotes; + global Datetime scheduledAdmissionDate; + global Datetime scheduledDischargeDate; + global Datetime serviceDate; + global String serviceLevel; + global String serviceType; + global Boolean serviceorMedicationReceived; + global ConnectApi.ServicingFacilityOutput servicingFacility; + global ConnectApi.ServicingPractitionerOutput servicingPractitioner; + global String servicingPractitionerLicense; + global String servicingPractitionerSpecialty; + global String sourceSystem; + global String sourceSystemIdentifier; + global Datetime sourceSystemModified; + global String unitOfMeasure; + global CareRequestOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareRequestReviewerOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareRequestReviewerOutput.cls new file mode 100644 index 0000000..d0cf1ee --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CareRequestReviewerOutput.cls @@ -0,0 +1,16 @@ +global class CareRequestReviewerOutput { + global ConnectApi.ContentDocumentOutput contentDocument; + global String id; + global Datetime reviewDate; + global String reviewer; + global String reviewerNotes; + global String reviewerType; + global String status; + global CareRequestReviewerOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Careauthorizationrequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Careauthorizationrequest.cls new file mode 100644 index 0000000..84940fb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Careauthorizationrequest.cls @@ -0,0 +1,3 @@ +global class Careauthorizationrequest { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartCoupon.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartCoupon.cls new file mode 100644 index 0000000..665d7c6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartCoupon.cls @@ -0,0 +1,11 @@ +global class CartCoupon { + global String cartCouponId; + global String couponCode; + global CartCoupon() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartCouponCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartCouponCollection.cls new file mode 100644 index 0000000..aa5b6c8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartCouponCollection.cls @@ -0,0 +1,13 @@ +global class CartCouponCollection { + global ConnectApi.CartCouponList cartCoupons; + global String cartId; + global ConnectApi.CartStatus cartStatus; + global String ownerId; + global CartCouponCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartCouponInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartCouponInput.cls new file mode 100644 index 0000000..7ccbc73 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartCouponInput.cls @@ -0,0 +1,9 @@ +global class CartCouponInput { + global String couponCode; + global cartCouponInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartCouponList.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartCouponList.cls new file mode 100644 index 0000000..80bec85 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartCouponList.cls @@ -0,0 +1,10 @@ +global class CartCouponList { + global List coupons; + global CartCouponList() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartInput.cls new file mode 100644 index 0000000..9a9364b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartInput.cls @@ -0,0 +1,14 @@ +global class CartInput { + global String currencyIsoCode; + global String effectiveAccountId; + global Boolean isSecondary; + global String name; + global String orderOwnerId; + global ConnectApi.CartType type; + global CartInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartInventoryItemReservationOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartInventoryItemReservationOutputRepresentation.cls new file mode 100644 index 0000000..61a953a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartInventoryItemReservationOutputRepresentation.cls @@ -0,0 +1,15 @@ +global class CartInventoryItemReservationOutputRepresentation { + global String errorCode; + global String errorMessage; + global String itemReservationSourceId; + global String productId; + global Double quantity; + global String reservedAtLocationId; + global CartInventoryItemReservationOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartInventoryReservationInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartInventoryReservationInputRepresentation.cls new file mode 100644 index 0000000..82deb19 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartInventoryReservationInputRepresentation.cls @@ -0,0 +1,9 @@ +global class CartInventoryReservationInputRepresentation { + global Integer durationInSeconds; + global CartInventoryReservationInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartInventoryReservationOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartInventoryReservationOutputRepresentation.cls new file mode 100644 index 0000000..ecb2617 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartInventoryReservationOutputRepresentation.cls @@ -0,0 +1,14 @@ +global class CartInventoryReservationOutputRepresentation { + global String errorCode; + global String errorMessage; + global List inventoryItemReservations; + global String reservationIdentifier; + global Boolean success; + global CartInventoryReservationOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItem.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItem.cls new file mode 100644 index 0000000..f982ba0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItem.cls @@ -0,0 +1,20 @@ +global class CartItem { + global String currencyIsoCode; + global String itemizedAdjustmentAmount; + global String listPrice; + global String salesPrice; + global String totalAdjustmentAmount; + global String totalAmount; + global String totalListPrice; + global String totalPrice; + global String totalTax; + global String unitAdjustedPrice; + global String unitAdjustmentAmount; + global CartItem() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemCollection.cls new file mode 100644 index 0000000..e86bff4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemCollection.cls @@ -0,0 +1,18 @@ +global class CartItemCollection { + global List cartItems; + global ConnectApi.CartSummary cartSummary; + global String currentPageToken; + global String currentPageUrl; + global Boolean hasErrors; + global String nextPageToken; + global String nextPageUrl; + global String previousPageToken; + global String previousPageUrl; + global CartItemCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemInput.cls new file mode 100644 index 0000000..0ff16b5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemInput.cls @@ -0,0 +1,11 @@ +global class CartItemInput { + global String productId; + global String quantity; + global ConnectApi.CartItemType type; + global CartItemInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemProduct.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemProduct.cls new file mode 100644 index 0000000..5d02e16 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemProduct.cls @@ -0,0 +1,16 @@ +global class CartItemProduct { + global Map fields; + global String name; + global String productId; + global ConnectApi.PurchaseQuantityRule purchaseQuantityRule; + global String sku; + global ConnectApi.ProductMedia thumbnailImage; + global Map variationAttributes; + global CartItemProduct() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemPromotionCollectionInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemPromotionCollectionInputRepresentation.cls new file mode 100644 index 0000000..0838fb4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemPromotionCollectionInputRepresentation.cls @@ -0,0 +1,9 @@ +global class CartItemPromotionCollectionInputRepresentation { + global List items; + global CartItemPromotionCollectionInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemPromotionCollectionOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemPromotionCollectionOutputRepresentation.cls new file mode 100644 index 0000000..9f420d3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemPromotionCollectionOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class CartItemPromotionCollectionOutputRepresentation { + global String currencyIsoCode; + global Map items; + global CartItemPromotionCollectionOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemPromotionInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemPromotionInputRepresentation.cls new file mode 100644 index 0000000..727b187 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemPromotionInputRepresentation.cls @@ -0,0 +1,9 @@ +global class CartItemPromotionInputRepresentation { + global String cartItemId; + global CartItemPromotionInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemResult.cls new file mode 100644 index 0000000..b38daac --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemResult.cls @@ -0,0 +1,12 @@ +global class CartItemResult { + global ConnectApi.AbstractCartItem cartItem; + global String message; + global String status; + global CartItemResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemSortOrder.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemSortOrder.cls new file mode 100644 index 0000000..f632958 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemSortOrder.cls @@ -0,0 +1,8 @@ +global enum CartItemSortOrder { +CREATEDDATEASC, +CREATEDDATEDESC, +NAMEASC, +NAMEDESC, +SALESPRICEASC, +SALESPRICEDESC +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemType.cls new file mode 100644 index 0000000..3ea8c6a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemType.cls @@ -0,0 +1,4 @@ +global enum CartItemType { +DELIVERYCHARGE, +PRODUCT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemWithoutPrice.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemWithoutPrice.cls new file mode 100644 index 0000000..9c32f0b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartItemWithoutPrice.cls @@ -0,0 +1,9 @@ +global class CartItemWithoutPrice { + global CartItemWithoutPrice() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartMessage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartMessage.cls new file mode 100644 index 0000000..fe0bddc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartMessage.cls @@ -0,0 +1,15 @@ +global class CartMessage { + global String message; + global String messageId; + global String relatedEntityId; + global ConnectApi.CartMessageSeverity severity; + global String type; + global Boolean visible; + global CartMessage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartMessageSeverity.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartMessageSeverity.cls new file mode 100644 index 0000000..69e1840 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartMessageSeverity.cls @@ -0,0 +1,5 @@ +global enum CartMessageSeverity { +ERROR, +INFO, +WARNING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartMessagesSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartMessagesSummary.cls new file mode 100644 index 0000000..1a58f04 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartMessagesSummary.cls @@ -0,0 +1,14 @@ +global class CartMessagesSummary { + global Integer errorCount; + global Boolean hasErrors; + global List limitedMessages; + global String relatedEntityId; + global Integer totalLineItemsWithErrors; + global CartMessagesSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartMessagesVisibilityInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartMessagesVisibilityInput.cls new file mode 100644 index 0000000..db8c5b5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartMessagesVisibilityInput.cls @@ -0,0 +1,9 @@ +global class CartMessagesVisibilityInput { + global Boolean visibility; + global CartMessagesVisibilityInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartMessagesVisibilityResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartMessagesVisibilityResult.cls new file mode 100644 index 0000000..d4f8298 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartMessagesVisibilityResult.cls @@ -0,0 +1,10 @@ +global class CartMessagesVisibilityResult { + global Boolean visibility; + global CartMessagesVisibilityResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartProductAttribute.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartProductAttribute.cls new file mode 100644 index 0000000..350e3d8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartProductAttribute.cls @@ -0,0 +1,12 @@ +global class CartProductAttribute { + global String label; + global Integer sequence; + global String value; + global CartProductAttribute() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartPromotionCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartPromotionCollection.cls new file mode 100644 index 0000000..ea23329 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartPromotionCollection.cls @@ -0,0 +1,13 @@ +global class CartPromotionCollection { + global String cartId; + global ConnectApi.CartStatus cartStatus; + global String currencyIsoCode; + global ConnectApi.CartPromotionList promotions; + global CartPromotionCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartPromotionList.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartPromotionList.cls new file mode 100644 index 0000000..fbd4e87 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartPromotionList.cls @@ -0,0 +1,10 @@ +global class CartPromotionList { + global List promotions; + global CartPromotionList() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartPromotionOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartPromotionOutputRepresentation.cls new file mode 100644 index 0000000..40a9695 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartPromotionOutputRepresentation.cls @@ -0,0 +1,16 @@ +global class CartPromotionOutputRepresentation { + global String adjustmentAmount; + global String couponCode; + global String currencyIsoCode; + global String displayName; + global String promotionId; + global ConnectApi.CartPromotionType targetType; + global String termsAndConditions; + global CartPromotionOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartPromotionType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartPromotionType.cls new file mode 100644 index 0000000..2530389 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartPromotionType.cls @@ -0,0 +1,4 @@ +global enum CartPromotionType { +CART, +ITEM +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartStatus.cls new file mode 100644 index 0000000..8927f30 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartStatus.cls @@ -0,0 +1,8 @@ +global enum CartStatus { +ACTIVE, +CHECKOUT, +CLOSED, +PENDINGCLOSED, +PENDINGDELETE, +PROCESSING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartSummary.cls new file mode 100644 index 0000000..c68f855 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartSummary.cls @@ -0,0 +1,31 @@ +global class CartSummary { + global String accountId; + global String cartId; + global String currencyIsoCode; + global String grandTotalAmount; + global Boolean isSecondary; + global ConnectApi.CartMessagesSummary messagesSummary; + global String name; + global String orderOwnerId; + global String ownerId; + global String purchaseOrderNumber; + global ConnectApi.CartStatus status; + global ConnectApi.CartTaxType taxType; + global String totalChargeAmount; + global String totalListPrice; + global String totalProductAmount; + global String totalProductAmountAfterAdjustments; + global String totalProductCount; + global String totalPromotionalAdjustmentAmount; + global String totalTaxAmount; + global ConnectApi.CartType type; + global Integer uniqueProductCount; + global String webstoreId; + global CartSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartTaxType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartTaxType.cls new file mode 100644 index 0000000..54dcd93 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartTaxType.cls @@ -0,0 +1,4 @@ +global enum CartTaxType { +GROSS, +NET +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartToWishlistInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartToWishlistInput.cls new file mode 100644 index 0000000..463ecdc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartToWishlistInput.cls @@ -0,0 +1,9 @@ +global class CartToWishlistInput { + global String wishlistId; + global CartToWishlistInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartToWishlistResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartToWishlistResult.cls new file mode 100644 index 0000000..033bc29 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartToWishlistResult.cls @@ -0,0 +1,11 @@ +global class CartToWishlistResult { + global Integer productsAddedCount; + global String wishlistId; + global CartToWishlistResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartType.cls new file mode 100644 index 0000000..9299299 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CartType.cls @@ -0,0 +1,3 @@ +global enum CartType { +CART +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaseActorType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaseActorType.cls new file mode 100644 index 0000000..59a490c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaseActorType.cls @@ -0,0 +1,4 @@ +global enum CaseActorType { +CUSTOMER, +CUSTOMERSERVICE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaseComment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaseComment.cls new file mode 100644 index 0000000..300c560 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaseComment.cls @@ -0,0 +1,16 @@ +global class CaseComment { + global ConnectApi.CaseActorType actorType; + global ConnectApi.Actor createdBy; + global Datetime createdDate; + global ConnectApi.CaseCommentEventType eventType; + global String id; + global Boolean published; + global String text; + global CaseComment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaseCommentCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaseCommentCapability.cls new file mode 100644 index 0000000..70a93ed --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaseCommentCapability.cls @@ -0,0 +1,16 @@ +global class CaseCommentCapability { + global ConnectApi.CaseActorType actorType; + global ConnectApi.Actor createdBy; + global Datetime createdDate; + global ConnectApi.CaseCommentEventType eventType; + global String id; + global Boolean published; + global String text; + global CaseCommentCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaseCommentEventType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaseCommentEventType.cls new file mode 100644 index 0000000..7f3ef41 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaseCommentEventType.cls @@ -0,0 +1,9 @@ +global enum CaseCommentEventType { +NEWINTERNAL, +NEWPUBLISHED, +NEWPUBLISHEDBYCUSTOMER, +PUBLISHEXISTING, +PUBLISHEXISTINGBYCUSTOMER, +UNPUBLISHEXISTINGBYCUSTOMER, +UNPUBLISHEXSITING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaseInfoWrapper.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaseInfoWrapper.cls new file mode 100644 index 0000000..e6e3eab --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaseInfoWrapper.cls @@ -0,0 +1,15 @@ +global class CaseInfoWrapper { + global String accountId; + global Map additionalInfo; + global String description; + global String origin; + global String reason; + global String status; + global String subject; + global CaseInfoWrapper() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaseParticipantInfoWrapper.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaseParticipantInfoWrapper.cls new file mode 100644 index 0000000..70c1a78 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaseParticipantInfoWrapper.cls @@ -0,0 +1,16 @@ +global class CaseParticipantInfoWrapper { + global Map additionalInfo; + global String authorizationProof; + global String participantId; + global String preferredCallTimeFrom; + global String preferredCallTimeTo; + global String preferredCommunicationMode; + global String role; + global String status; + global CaseParticipantInfoWrapper() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaseProgramsInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaseProgramsInputRepresentation.cls new file mode 100644 index 0000000..ba1a059 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaseProgramsInputRepresentation.cls @@ -0,0 +1,9 @@ +global class CaseProgramsInputRepresentation { + global List caseProgramRequest; + global CaseProgramsInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaseProgramsOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaseProgramsOutputRepresentation.cls new file mode 100644 index 0000000..3d5b18b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CaseProgramsOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class CaseProgramsOutputRepresentation { + global String message; + global Boolean success; + global CaseProgramsOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpActionResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpActionResponse.cls new file mode 100644 index 0000000..ed0b4c2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpActionResponse.cls @@ -0,0 +1,10 @@ +global class CdpActionResponse { + global List errors; + global Boolean success; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpAssetBase.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpAssetBase.cls new file mode 100644 index 0000000..dd98f00 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpAssetBase.cls @@ -0,0 +1,17 @@ +global class CdpAssetBase { + global ConnectApi.CdpUser createdBy; + global Datetime createdDate; + global String id; + global String label; + global ConnectApi.CdpUser lastModifiedBy; + global Datetime lastModifiedDate; + global String name; + global String namespace; + global String url; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpAssetReference.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpAssetReference.cls new file mode 100644 index 0000000..f91e0f9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpAssetReference.cls @@ -0,0 +1,9 @@ +global class CdpAssetReference { + global CdpAssetReference() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsight.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsight.cls new file mode 100644 index 0000000..fa951a0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsight.cls @@ -0,0 +1,10 @@ +global class CdpCalculatedInsight { + global Object clone() { } + global static ConnectApi.CdpCalculatedInsightOutput createCalculatedInsight(ConnectApi.CdpCalculatedInsightInput input) { } + global static void deleteCalculatedInsight(String apiName) { } + global static ConnectApi.CdpCalculatedInsightOutput getCalculatedInsight(String apiName) { } + global static ConnectApi.CdpCalculatedInsightPage getCalculatedInsights(String definitionType, Integer batchSize, Integer offset, String orderby, String dataspace) { } + global static ConnectApi.CdpCalculatedInsightActionRunResponseRepresentation runCalculatedInsight(String apiName) { } + global static ConnectApi.CdpCalculatedInsightOutput updateCalculatedInsight(String apiName, ConnectApi.CdpCalculatedInsightInput input) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightDataSource.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightDataSource.cls new file mode 100644 index 0000000..626a13b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightDataSource.cls @@ -0,0 +1,11 @@ +global class CdpCalculatedInsightDataSource { + global String sourceApiName; + global String type; + global CdpCalculatedInsightDataSource() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightDimension.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightDimension.cls new file mode 100644 index 0000000..8021027 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightDimension.cls @@ -0,0 +1,17 @@ +global class CdpCalculatedInsightDimension { + global String apiName; + global String creationType; + global ConnectApi.CdpCalculatedInsightDataSource dataSource; + global String dataType; + global String dateGranularity; + global String displayName; + global String fieldRole; + global String formula; + global CdpCalculatedInsightDimension() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightErrorResponseRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightErrorResponseRepresentation.cls new file mode 100644 index 0000000..3058005 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightErrorResponseRepresentation.cls @@ -0,0 +1,11 @@ +global class CdpCalculatedInsightErrorResponseRepresentation { + global String errorCode; + global String message; + global CdpCalculatedInsightErrorResponseRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightInput.cls new file mode 100644 index 0000000..b51ef20 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightInput.cls @@ -0,0 +1,17 @@ +global class CdpCalculatedInsightInput { + global String apiName; + global Boolean createdFromPackage; + global String dataSpaceName; + global ConnectApi.CalculatedInsightDefinitionTypeEnum definitionType; + global String description; + global String displayName; + global Boolean draft; + global String expression; + global String packagedCalculatedInsightApiName; + global CdpCalculatedInsightInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightInputValidator.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightInputValidator.cls new file mode 100644 index 0000000..936a1ab --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightInputValidator.cls @@ -0,0 +1,3 @@ +global class CdpCalculatedInsightInputValidator { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightMeasure.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightMeasure.cls new file mode 100644 index 0000000..7c4f1ad --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightMeasure.cls @@ -0,0 +1,17 @@ +global class CdpCalculatedInsightMeasure { + global String apiName; + global String creationType; + global ConnectApi.CdpCalculatedInsightDataSource dataSource; + global String dataType; + global String displayName; + global String fieldAggregationType; + global String fieldRole; + global String formula; + global CdpCalculatedInsightMeasure() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightOutput.cls new file mode 100644 index 0000000..2291eba --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightOutput.cls @@ -0,0 +1,30 @@ +global class CdpCalculatedInsightOutput { + global String apiName; + global String calculatedInsightStatus; + global String creationType; + global String dataSpace; + global String definitionStatus; + global String definitionType; + global String description; + global List dimensions; + global String displayName; + global String expression; + global Boolean isEnabled; + global String lastCalcInsightStatusDateTime; + global String lastCalcInsightStatusErrorCode; + global String lastRunDateTime; + global String lastRunStatus; + global String lastRunStatusDateTime; + global String lastRunStatusErrorCode; + global List measures; + global String publishScheduleEndDate; + global String publishScheduleInterval; + global String publishScheduleStartDateTime; + global CdpCalculatedInsightOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightPage.cls new file mode 100644 index 0000000..38032e5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightPage.cls @@ -0,0 +1,10 @@ +global class CdpCalculatedInsightPage { + global ConnectApi.CdpCalculatedInsightPageData collection; + global CdpCalculatedInsightPage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightPageData.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightPageData.cls new file mode 100644 index 0000000..a41be43 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightPageData.cls @@ -0,0 +1,18 @@ +global class CdpCalculatedInsightPageData { + global Integer count; + global String currentPageToken; + global String currentPageUrl; + global List items; + global String nextPageToken; + global String nextPageUrl; + global String previousPageToken; + global String previousPageUrl; + global Integer total; + global CdpCalculatedInsightPageData() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightStandardActionResponseRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightStandardActionResponseRepresentation.cls new file mode 100644 index 0000000..1f98646 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightStandardActionResponseRepresentation.cls @@ -0,0 +1,9 @@ +global class CdpCalculatedInsightStandardActionResponseRepresentation { + global CdpCalculatedInsightStandardActionResponseRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightValidateInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightValidateInput.cls new file mode 100644 index 0000000..46ddca1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightValidateInput.cls @@ -0,0 +1,3 @@ +global class CdpCalculatedInsightValidateInput { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightValidateInputValidator.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightValidateInputValidator.cls new file mode 100644 index 0000000..f6f7cc7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpCalculatedInsightValidateInputValidator.cls @@ -0,0 +1,3 @@ +global class CdpCalculatedInsightValidateInputValidator { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpDataActionPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpDataActionPage.cls new file mode 100644 index 0000000..006cb78 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpDataActionPage.cls @@ -0,0 +1,3 @@ +global class CdpDataActionPage { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpDataActionPageValidator.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpDataActionPageValidator.cls new file mode 100644 index 0000000..1a21d3d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpDataActionPageValidator.cls @@ -0,0 +1,3 @@ +global class CdpDataActionPageValidator { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpDataActionTargetPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpDataActionTargetPage.cls new file mode 100644 index 0000000..a9b1c30 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpDataActionTargetPage.cls @@ -0,0 +1,3 @@ +global class CdpDataActionTargetPage { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpDataActionTargetPageValidator.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpDataActionTargetPageValidator.cls new file mode 100644 index 0000000..4ea098e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpDataActionTargetPageValidator.cls @@ -0,0 +1,3 @@ +global class CdpDataActionTargetPageValidator { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpDataTransformActionRunResponseRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpDataTransformActionRunResponseRepresentation.cls new file mode 100644 index 0000000..e206e34 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpDataTransformActionRunResponseRepresentation.cls @@ -0,0 +1,9 @@ +global class CdpDataTransformActionRunResponseRepresentation { + global CdpDataTransformActionRunResponseRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpEnumHelpers.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpEnumHelpers.cls new file mode 100644 index 0000000..5d78ecf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpEnumHelpers.cls @@ -0,0 +1,3 @@ +global class CdpEnumHelpers { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpErrorResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpErrorResponse.cls new file mode 100644 index 0000000..a4bd1ba --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpErrorResponse.cls @@ -0,0 +1,11 @@ +global class CdpErrorResponse { + global String errorCode; + global String message; + global CdpErrorResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolution.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolution.cls new file mode 100644 index 0000000..c6299a3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolution.cls @@ -0,0 +1,3 @@ +global class CdpIdentityResolution { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionConfigInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionConfigInput.cls new file mode 100644 index 0000000..d42c486 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionConfigInput.cls @@ -0,0 +1,16 @@ +global class CdpIdentityResolutionConfigInput { + global ConnectApi.CdpIdentityResolutionConfigurationType configurationType; + global String dataSpaceName; + global String description; + global Boolean doesRunAutomatically; + global String label; + global List matchRules; + global List reconciliationRules; + global String rulesetId; + global CdpIdentityResolutionConfigInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionConfigInputValidator.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionConfigInputValidator.cls new file mode 100644 index 0000000..867ab20 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionConfigInputValidator.cls @@ -0,0 +1,3 @@ +global class CdpIdentityResolutionConfigInputValidator { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionConfigPatchInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionConfigPatchInput.cls new file mode 100644 index 0000000..f745a21 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionConfigPatchInput.cls @@ -0,0 +1,13 @@ +global class CdpIdentityResolutionConfigPatchInput { + global String description; + global Boolean doesRunAutomatically; + global String label; + global List matchRules; + global List reconciliationRules; + global CdpIdentityResolutionConfigPatchInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionConfigPatchInputValidator.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionConfigPatchInputValidator.cls new file mode 100644 index 0000000..e8c6c79 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionConfigPatchInputValidator.cls @@ -0,0 +1,3 @@ +global class CdpIdentityResolutionConfigPatchInputValidator { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionConfigurationType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionConfigurationType.cls new file mode 100644 index 0000000..79e5d10 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionConfigurationType.cls @@ -0,0 +1,4 @@ +global enum CdpIdentityResolutionConfigurationType { +ACCOUNT, +INDIVIDUAL +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchCriterion.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchCriterion.cls new file mode 100644 index 0000000..3700ad0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchCriterion.cls @@ -0,0 +1,13 @@ +global class CdpIdentityResolutionMatchCriterion { + global String entityName; + global String fieldName; + global ConnectApi.CdpIdentityResolutionMatchMethodType matchMethodType; + global ConnectApi.CdpIdentityResolutionMatchCriterionPartyIdentificationInfo partyIdentificationInfo; + global Boolean shouldMatchOnBlank; + global CdpIdentityResolutionMatchCriterion() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchCriterionOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchCriterionOutput.cls new file mode 100644 index 0000000..bbdeb44 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchCriterionOutput.cls @@ -0,0 +1,14 @@ +global class CdpIdentityResolutionMatchCriterionOutput { + global String entityName; + global String fieldName; + global ConnectApi.CdpIdentityResolutionMatchMethodType matchMethodType; + global ConnectApi.CdpIdentityResolutionMatchCriterionPartyIdentificationInfoOutput partyIdentificationInfo; + global Boolean shouldMatchOnBlank; + global CdpIdentityResolutionMatchCriterionOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchCriterionOutputValidator.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchCriterionOutputValidator.cls new file mode 100644 index 0000000..8ad30f4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchCriterionOutputValidator.cls @@ -0,0 +1,3 @@ +global class CdpIdentityResolutionMatchCriterionOutputValidator { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchCriterionPartyIdentificationInfo.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchCriterionPartyIdentificationInfo.cls new file mode 100644 index 0000000..82ff7aa --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchCriterionPartyIdentificationInfo.cls @@ -0,0 +1,10 @@ +global class CdpIdentityResolutionMatchCriterionPartyIdentificationInfo { + global String partyName; + global String partyType; + global CdpIdentityResolutionMatchCriterionPartyIdentificationInfo() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchCriterionPartyIdentificationInfoOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchCriterionPartyIdentificationInfoOutput.cls new file mode 100644 index 0000000..fde70f9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchCriterionPartyIdentificationInfoOutput.cls @@ -0,0 +1,11 @@ +global class CdpIdentityResolutionMatchCriterionPartyIdentificationInfoOutput { + global String partyName; + global String partyType; + global CdpIdentityResolutionMatchCriterionPartyIdentificationInfoOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchCriterionValidator.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchCriterionValidator.cls new file mode 100644 index 0000000..c6558ad --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchCriterionValidator.cls @@ -0,0 +1,3 @@ +global class CdpIdentityResolutionMatchCriterionValidator { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchMethodType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchMethodType.cls new file mode 100644 index 0000000..65e2018 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchMethodType.cls @@ -0,0 +1,7 @@ +global enum CdpIdentityResolutionMatchMethodType { +EXACT, +EXACTNORMALIZED, +FUZZY, +FUZZYHIGH, +FUZZYLOW +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchRule.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchRule.cls new file mode 100644 index 0000000..7f33a72 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchRule.cls @@ -0,0 +1,10 @@ +global class CdpIdentityResolutionMatchRule { + global List criteria; + global String label; + global CdpIdentityResolutionMatchRule() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchRuleOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchRuleOutput.cls new file mode 100644 index 0000000..3e2ec00 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchRuleOutput.cls @@ -0,0 +1,11 @@ +global class CdpIdentityResolutionMatchRuleOutput { + global List criteria; + global String label; + global CdpIdentityResolutionMatchRuleOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchRuleOutputValidator.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchRuleOutputValidator.cls new file mode 100644 index 0000000..650e443 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchRuleOutputValidator.cls @@ -0,0 +1,3 @@ +global class CdpIdentityResolutionMatchRuleOutputValidator { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchRuleValidator.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchRuleValidator.cls new file mode 100644 index 0000000..c9a7f71 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchRuleValidator.cls @@ -0,0 +1,3 @@ +global class CdpIdentityResolutionMatchRuleValidator { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionOutput.cls new file mode 100644 index 0000000..b7f547f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionOutput.cls @@ -0,0 +1,28 @@ +global class CdpIdentityResolutionOutput { + global Long anonymousUnifiedProfiles; + global ConnectApi.CdpIdentityResolutionConfigurationType configurationType; + global Double consolidationRate; + global String dataSpaceName; + global String description; + global Boolean doesRunAutomatically; + global String id; + global Long knownUnifiedProfiles; + global String label; + global Datetime lastJobCompleted; + global String lastJobStatus; + global List matchRules; + global Long matchedSourceProfiles; + global String objectApiName; + global List reconciliationRules; + global String rulesetId; + global String rulesetStatus; + global Long sourceProfiles; + global Long totalUnifiedProfiles; + global CdpIdentityResolutionOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionOutputValidator.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionOutputValidator.cls new file mode 100644 index 0000000..8ec326e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionOutputValidator.cls @@ -0,0 +1,3 @@ +global class CdpIdentityResolutionOutputValidator { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionPublishOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionPublishOutput.cls new file mode 100644 index 0000000..498ec59 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionPublishOutput.cls @@ -0,0 +1,9 @@ +global class CdpIdentityResolutionPublishOutput { + global CdpIdentityResolutionPublishOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationFieldRule.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationFieldRule.cls new file mode 100644 index 0000000..cc17edb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationFieldRule.cls @@ -0,0 +1,12 @@ +global class CdpIdentityResolutionReconciliationFieldRule { + global String fieldName; + global ConnectApi.CdpIdentityResolutionReconciliationRuleType ruleType; + global Boolean shouldIgnoreEmptyValue; + global List sources; + global CdpIdentityResolutionReconciliationFieldRule() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationFieldRuleOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationFieldRuleOutput.cls new file mode 100644 index 0000000..fa400e7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationFieldRuleOutput.cls @@ -0,0 +1,13 @@ +global class CdpIdentityResolutionReconciliationFieldRuleOutput { + global String fieldName; + global ConnectApi.CdpIdentityResolutionReconciliationRuleType ruleType; + global Boolean shouldIgnoreEmptyValue; + global List sources; + global CdpIdentityResolutionReconciliationFieldRuleOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationFieldRuleOutputValidator.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationFieldRuleOutputValidator.cls new file mode 100644 index 0000000..31fe365 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationFieldRuleOutputValidator.cls @@ -0,0 +1,3 @@ +global class CdpIdentityResolutionReconciliationFieldRuleOutputValidator { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationFieldRuleValidator.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationFieldRuleValidator.cls new file mode 100644 index 0000000..455959a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationFieldRuleValidator.cls @@ -0,0 +1,3 @@ +global class CdpIdentityResolutionReconciliationFieldRuleValidator { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationRule.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationRule.cls new file mode 100644 index 0000000..19e634f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationRule.cls @@ -0,0 +1,13 @@ +global class CdpIdentityResolutionReconciliationRule { + global String entityName; + global List fields; + global ConnectApi.CdpIdentityResolutionReconciliationRuleType ruleType; + global Boolean shouldIgnoreEmptyValue; + global List sources; + global CdpIdentityResolutionReconciliationRule() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationRuleOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationRuleOutput.cls new file mode 100644 index 0000000..a4b35d0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationRuleOutput.cls @@ -0,0 +1,16 @@ +global class CdpIdentityResolutionReconciliationRuleOutput { + global String entityName; + global List fields; + global String linkDmoName; + global ConnectApi.CdpIdentityResolutionReconciliationRuleType ruleType; + global Boolean shouldIgnoreEmptyValue; + global List sources; + global String unifiedDmoName; + global CdpIdentityResolutionReconciliationRuleOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationRuleOutputValidator.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationRuleOutputValidator.cls new file mode 100644 index 0000000..3619072 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationRuleOutputValidator.cls @@ -0,0 +1,3 @@ +global class CdpIdentityResolutionReconciliationRuleOutputValidator { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationRuleType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationRuleType.cls new file mode 100644 index 0000000..005075c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationRuleType.cls @@ -0,0 +1,5 @@ +global enum CdpIdentityResolutionReconciliationRuleType { +LASTUPDATED, +MOSTFREQUENT, +SOURCESEQUENCE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationRuleValidator.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationRuleValidator.cls new file mode 100644 index 0000000..66484b9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationRuleValidator.cls @@ -0,0 +1,3 @@ +global class CdpIdentityResolutionReconciliationRuleValidator { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationSource.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationSource.cls new file mode 100644 index 0000000..5282a10 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationSource.cls @@ -0,0 +1,9 @@ +global class CdpIdentityResolutionReconciliationSource { + global String name; + global CdpIdentityResolutionReconciliationSource() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationSourceOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationSourceOutput.cls new file mode 100644 index 0000000..c7488e4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationSourceOutput.cls @@ -0,0 +1,10 @@ +global class CdpIdentityResolutionReconciliationSourceOutput { + global String name; + global CdpIdentityResolutionReconciliationSourceOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionRunNowInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionRunNowInput.cls new file mode 100644 index 0000000..6a93e7c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionRunNowInput.cls @@ -0,0 +1,10 @@ +global class CdpIdentityResolutionRunNowInput { + global String callingApp; + global String callingAppInfo; + global CdpIdentityResolutionRunNowInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionRunNowOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionRunNowOutput.cls new file mode 100644 index 0000000..9792c7d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionRunNowOutput.cls @@ -0,0 +1,10 @@ +global class CdpIdentityResolutionRunNowOutput { + global ConnectApi.CdpIdentityResolutionRunNowResultCode resultCode; + global CdpIdentityResolutionRunNowOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionRunNowOutputValidator.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionRunNowOutputValidator.cls new file mode 100644 index 0000000..3d578ec --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionRunNowOutputValidator.cls @@ -0,0 +1,3 @@ +global class CdpIdentityResolutionRunNowOutputValidator { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionRunNowResultCode.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionRunNowResultCode.cls new file mode 100644 index 0000000..50b9033 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionRunNowResultCode.cls @@ -0,0 +1,6 @@ +global enum CdpIdentityResolutionRunNowResultCode { +EXCEEDEDMAXIMUMNUMBEROFSUCCESSFULRUNSALLOWEDIN24HOURS, +IDENTITYRESOLUTIONJOBISALREADYRUNNING, +NOPENDINGCHANGESJOBRUNSKIPPED, +SUCCESSFULLYSUBMITTEDIDENTITYRESOLUTIONJOBRUNREQUEST +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionsOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionsOutput.cls new file mode 100644 index 0000000..75fe1f6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionsOutput.cls @@ -0,0 +1,10 @@ +global class CdpIdentityResolutionsOutput { + global List identityResolutions; + global CdpIdentityResolutionsOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionsOutputValidator.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionsOutputValidator.cls new file mode 100644 index 0000000..a5af17f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpIdentityResolutionsOutputValidator.cls @@ -0,0 +1,3 @@ +global class CdpIdentityResolutionsOutputValidator { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlCustomizableFieldTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlCustomizableFieldTypeEnum.cls new file mode 100644 index 0000000..69abe64 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlCustomizableFieldTypeEnum.cls @@ -0,0 +1,4 @@ +global enum CdpMlCustomizableFieldTypeEnum { +ACTIONABLEVARIABLE, +TOPFACTOR +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlFieldDataTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlFieldDataTypeEnum.cls new file mode 100644 index 0000000..6286aa0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlFieldDataTypeEnum.cls @@ -0,0 +1,5 @@ +global enum CdpMlFieldDataTypeEnum { +DATE, +NUMBER, +TEXT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlFilterFieldOperatorEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlFilterFieldOperatorEnum.cls new file mode 100644 index 0000000..dd1879e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlFilterFieldOperatorEnum.cls @@ -0,0 +1,15 @@ +global enum CdpMlFilterFieldOperatorEnum { +BETWEEN, +CONTAINS, +ENDSWITH, +EQUAL, +GREATERTHAN, +GREATERTHANOREQUAL, +INSET, +LESSTHAN, +LESSTHANOREQUAL, +NOTBETWEEN, +NOTEQUAL, +NOTIN, +STARTSWITH +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlFilterFieldTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlFilterFieldTypeEnum.cls new file mode 100644 index 0000000..5f4aa84 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlFilterFieldTypeEnum.cls @@ -0,0 +1,5 @@ +global enum CdpMlFilterFieldTypeEnum { +CALCULATEDINSIGHTOBJECTFIELD, +DATAMODELOBJECTFIELD, +MODELINPUTFIELD +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlFilterValueTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlFilterValueTypeEnum.cls new file mode 100644 index 0000000..95dea7a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlFilterValueTypeEnum.cls @@ -0,0 +1,4 @@ +global enum CdpMlFilterValueTypeEnum { +CONSTANT, +PLACEHOLDER +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlModelOutcomeGoalEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlModelOutcomeGoalEnum.cls new file mode 100644 index 0000000..94ab07b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlModelOutcomeGoalEnum.cls @@ -0,0 +1,5 @@ +global enum CdpMlModelOutcomeGoalEnum { +MAXIMIZE, +MINIMIZE, +NONE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlModelPartitionStatusEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlModelPartitionStatusEnum.cls new file mode 100644 index 0000000..bcc03df --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlModelPartitionStatusEnum.cls @@ -0,0 +1,4 @@ +global enum CdpMlModelPartitionStatusEnum { +DISABLED, +ENABLED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlModelPredictionTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlModelPredictionTypeEnum.cls new file mode 100644 index 0000000..70c8207 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlModelPredictionTypeEnum.cls @@ -0,0 +1,5 @@ +global enum CdpMlModelPredictionTypeEnum { +BINARYCLASSIFICATION, +MULTICLASSCLASSIFICATION, +REGRESSION +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlModelRefreshRecipientTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlModelRefreshRecipientTypeEnum.cls new file mode 100644 index 0000000..d3c8dc0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlModelRefreshRecipientTypeEnum.cls @@ -0,0 +1,4 @@ +global enum CdpMlModelRefreshRecipientTypeEnum { +GROUP, +USER +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlModelSourceTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlModelSourceTypeEnum.cls new file mode 100644 index 0000000..c55e3db --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlModelSourceTypeEnum.cls @@ -0,0 +1,4 @@ +global enum CdpMlModelSourceTypeEnum { +MODELBUILDER, +MODELCONNECTOR +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlModelStatusEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlModelStatusEnum.cls new file mode 100644 index 0000000..c4952e3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpMlModelStatusEnum.cls @@ -0,0 +1,5 @@ +global enum CdpMlModelStatusEnum { +DISABLED, +ENABLED, +UNDEPLOYED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpQuery.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpQuery.cls new file mode 100644 index 0000000..4e53556 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpQuery.cls @@ -0,0 +1,31 @@ +global class CdpQuery { + global Object clone() { } + global static ConnectApi.CdpQueryMetadataOutput getAllMetadata(String entityType, String entityCategory, String entityName, String dataspace) { } + global static ConnectApi.CdpQueryMetadataOutput getAllMetadata(String entityType, String entityCategory, String entityName) { } + global static ConnectApi.CdpQueryMetadataOutput getAllMetadata() { } + global static ConnectApi.CdpQueryMetadataOutput getInsightsMetadata(String ciName, String dataspace) { } + global static ConnectApi.CdpQueryMetadataOutput getInsightsMetadata(String ciName) { } + global static ConnectApi.CdpQueryMetadataOutput getInsightsMetadata() { } + global static ConnectApi.CdpQueryMetadataOutput getProfileMetadata(String dataModelName, String dataspace) { } + global static ConnectApi.CdpQueryMetadataOutput getProfileMetadata(String dataModelName) { } + global static ConnectApi.CdpQueryMetadataOutput getProfileMetadata() { } + global static ConnectApi.CdpQueryOutputV2 nextBatchAnsiSqlV2(String nextBatchId, String dataspace) { } + global static ConnectApi.CdpQueryOutputV2 nextBatchAnsiSqlV2(String nextBatchId) { } + global static ConnectApi.CdpQueryOutput queryANSISql(ConnectApi.CdpQueryInput input, Integer batchSize, Integer offset, String orderby, String dataspace) { } + global static ConnectApi.CdpQueryOutput queryANSISql(ConnectApi.CdpQueryInput input, Integer batchSize, Integer offset, String orderby) { } + global static ConnectApi.CdpQueryOutput queryANSISql(ConnectApi.CdpQueryInput input) { } + global static ConnectApi.CdpQueryOutputV2 queryAnsiSqlV2(ConnectApi.CdpQueryInput input, String dataspace) { } + global static ConnectApi.CdpQueryOutputV2 queryAnsiSqlV2(ConnectApi.CdpQueryInput input) { } + global static ConnectApi.CdpQueryOutput queryCalculatedInsights(String ciName, String dimensions, String measures, String orderby, String filters, Integer batchSize, Integer offset, String timeGranularity, String dataspace) { } + global static ConnectApi.CdpQueryOutput queryCalculatedInsights(String ciName, String dimensions, String measures, String orderby, String filters, Integer batchSize, Integer offset, String timeGranularity) { } + global static ConnectApi.CdpQueryOutput queryCalculatedInsights(String ciName, String dimensions, String measures, String orderby, String filters, Integer batchSize, Integer offset) { } + global static ConnectApi.CdpQueryOutput queryProfileApi(String dataModelName, String id, String ciName, String searchKey, String dimensions, String measures, String filters, String fields, Integer batchSize, Integer offset, String orderby, String timeGranularity, String dataspace) { } + global static ConnectApi.CdpQueryOutput queryProfileApi(String dataModelName, String id, String ciName, String searchKey, String dimensions, String measures, String filters, String fields, Integer batchSize, Integer offset, String orderby, String timeGranularity) { } + global static ConnectApi.CdpQueryOutput queryProfileApi(String dataModelName, String id, String ciName, String searchKey, String dimensions, String measures, String filters, String fields, Integer batchSize, Integer offset, String orderby) { } + global static ConnectApi.CdpQueryOutput queryProfileApi(String dataModelName, String id, String childDataModelName, String searchKey, String filters, String fields, Integer batchSize, Integer offset, String orderby) { } + global static ConnectApi.CdpQueryOutput queryProfileApi(String dataModelName, String id, String searchKey, String filters, String fields, Integer batchSize, Integer offset, String orderby) { } + global static ConnectApi.CdpQueryOutput queryProfileApi(String dataModelName, String filters, String fields, Integer batchSize, Integer offset, String orderby) { } + global static ConnectApi.CdpQueryDataOutput universalIdLookupBySourceId(String entityName, String dataSourceId, String dataSourceObjectId, String sourceRecordId, String dataspace) { } + global static ConnectApi.CdpQueryDataOutput universalIdLookupBySourceId(String entityName, String dataSourceId, String dataSourceObjectId, String sourceRecordId) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpQueryDataOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpQueryDataOutput.cls new file mode 100644 index 0000000..464cf72 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpQueryDataOutput.cls @@ -0,0 +1,10 @@ +global class CdpQueryDataOutput { + global List data; + global CdpQueryDataOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpQueryInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpQueryInput.cls new file mode 100644 index 0000000..79760d8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpQueryInput.cls @@ -0,0 +1,9 @@ +global class CdpQueryInput { + global String sql; + global CdpQueryInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpQueryMetadataItem.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpQueryMetadataItem.cls new file mode 100644 index 0000000..95b9dc0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpQueryMetadataItem.cls @@ -0,0 +1,12 @@ +global class CdpQueryMetadataItem { + global Integer placeInOrder; + global String type; + global Integer typeCode; + global CdpQueryMetadataItem() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpQueryMetadataOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpQueryMetadataOutput.cls new file mode 100644 index 0000000..4105892 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpQueryMetadataOutput.cls @@ -0,0 +1,10 @@ +global class CdpQueryMetadataOutput { + global List metadata; + global CdpQueryMetadataOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpQueryOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpQueryOutput.cls new file mode 100644 index 0000000..98b4e95 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpQueryOutput.cls @@ -0,0 +1,16 @@ +global class CdpQueryOutput { + global List data; + global Boolean done; + global String endTime; + global Map metadata; + global String queryId; + global Integer rowCount; + global String startTime; + global CdpQueryOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpQueryOutputV2.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpQueryOutputV2.cls new file mode 100644 index 0000000..859db22 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpQueryOutputV2.cls @@ -0,0 +1,18 @@ +global class CdpQueryOutputV2 { + global List data; + global String dataspace; + global Boolean done; + global String endTime; + global Map metadata; + global String nextBatchId; + global String queryId; + global Integer rowCount; + global String startTime; + global CdpQueryOutputV2() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpQueryV2Row.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpQueryV2Row.cls new file mode 100644 index 0000000..1594161 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpQueryV2Row.cls @@ -0,0 +1,10 @@ +global class CdpQueryV2Row { + global List rowData; + global CdpQueryV2Row() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpScheduleFrequencyTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpScheduleFrequencyTypeEnum.cls new file mode 100644 index 0000000..b515f00 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpScheduleFrequencyTypeEnum.cls @@ -0,0 +1,6 @@ +global enum CdpScheduleFrequencyTypeEnum { +MONTHLY, +MONTHLYRELATIVE, +NONE, +WEEKLY +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegment.cls new file mode 100644 index 0000000..2da73bc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegment.cls @@ -0,0 +1,11 @@ +global class CdpSegment { + global Object clone() { } + global static ConnectApi.CdpSegmentOutput createSegment(ConnectApi.CdpSegmentInput input) { } + global static void deleteSegment(String segmentApiName) { } + global static ConnectApi.CdpSegmentActionOutput executePublishAdhoc(String segmentId) { } + global static ConnectApi.CdpSegmentContainerOutput getSegment(String segmentApiName) { } + global static ConnectApi.CdpSegmentContainerOutput getSegments() { } + global static ConnectApi.CdpSegmentContainerOutput getSegmentsPaginated(Integer batchSize, Integer offset, String orderBy) { } + global static ConnectApi.CdpSegmentOutput updateSegment(String segmentApiName, ConnectApi.CdpSegmentInput input) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentActionOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentActionOutput.cls new file mode 100644 index 0000000..ffc259e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentActionOutput.cls @@ -0,0 +1,15 @@ +global class CdpSegmentActionOutput { + global String errorCode; + global String errorMessage; + global String jobId; + global String partitionId; + global String publishStatus; + global String segmentId; + global CdpSegmentActionOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentContainerOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentContainerOutput.cls new file mode 100644 index 0000000..180f6fc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentContainerOutput.cls @@ -0,0 +1,13 @@ +global class CdpSegmentContainerOutput { + global Integer batchSize; + global Integer offset; + global String orderByExpression; + global List segments; + global CdpSegmentContainerOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentDbtInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentDbtInput.cls new file mode 100644 index 0000000..4dc79d0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentDbtInput.cls @@ -0,0 +1,9 @@ +global class CdpSegmentDbtInput { + global List models; + global CdpSegmentDbtInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentDbtModel.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentDbtModel.cls new file mode 100644 index 0000000..e02e49e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentDbtModel.cls @@ -0,0 +1,11 @@ +global class CdpSegmentDbtModel { + global String name; + global String sql; + global CdpSegmentDbtModel() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentDbtModelInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentDbtModelInput.cls new file mode 100644 index 0000000..d4f4400 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentDbtModelInput.cls @@ -0,0 +1,10 @@ +global class CdpSegmentDbtModelInput { + global String name; + global String sql; + global CdpSegmentDbtModelInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentDbtPipeline.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentDbtPipeline.cls new file mode 100644 index 0000000..1bbc888 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentDbtPipeline.cls @@ -0,0 +1,10 @@ +global class CdpSegmentDbtPipeline { + global List models; + global CdpSegmentDbtPipeline() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentInput.cls new file mode 100644 index 0000000..8a15a94 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentInput.cls @@ -0,0 +1,20 @@ +global class CdpSegmentInput { + global Map additionalMetadata; + global String dataSpace; + global String description; + global String developerName; + global String displayName; + global ConnectApi.CdpSegmentDbtInput includeDbt; + global ConnectApi.CdpSegmentLookalikeInput lookalikeCriteria; + global ConnectApi.PublishSchedule publishSchedule; + global String publishScheduleEndDate; + global String publishScheduleStartDateTime; + global String segmentOnApiName; + global ConnectApi.SegmentType segmentType; + global CdpSegmentInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentInputValidator.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentInputValidator.cls new file mode 100644 index 0000000..abb6ddf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentInputValidator.cls @@ -0,0 +1,3 @@ +global class CdpSegmentInputValidator { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentLookalike.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentLookalike.cls new file mode 100644 index 0000000..e1fbe9b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentLookalike.cls @@ -0,0 +1,11 @@ +global class CdpSegmentLookalike { + global Long additionalPopulation; + global String seedSegmentId; + global CdpSegmentLookalike() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentLookalikeInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentLookalikeInput.cls new file mode 100644 index 0000000..e6b766a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentLookalikeInput.cls @@ -0,0 +1,10 @@ +global class CdpSegmentLookalikeInput { + global Long additionalPopulation; + global String seedSegmentName; + global CdpSegmentLookalikeInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentMemberOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentMemberOutput.cls new file mode 100644 index 0000000..53ce968 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentMemberOutput.cls @@ -0,0 +1,3 @@ +global class CdpSegmentMemberOutput { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentMemberOutputValidator.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentMemberOutputValidator.cls new file mode 100644 index 0000000..bdd80cd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentMemberOutputValidator.cls @@ -0,0 +1,3 @@ +global class CdpSegmentMemberOutputValidator { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentMemberRowOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentMemberRowOutput.cls new file mode 100644 index 0000000..65bfdf4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentMemberRowOutput.cls @@ -0,0 +1,15 @@ +global class CdpSegmentMemberRowOutput { + global String deltaType; + global String id; + global String kqId; + global String snapshotType; + global String timestamp; + global String versionStamp; + global CdpSegmentMemberRowOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentMembershipTableOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentMembershipTableOutput.cls new file mode 100644 index 0000000..1d70df1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentMembershipTableOutput.cls @@ -0,0 +1,12 @@ +global class CdpSegmentMembershipTableOutput { + global String historyTable; + global String latestTable; + global String profileTable; + global CdpSegmentMembershipTableOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentOutput.cls new file mode 100644 index 0000000..1026d0b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSegmentOutput.cls @@ -0,0 +1,31 @@ +global class CdpSegmentOutput { + global String apiName; + global String dataSpace; + global String description; + global String developerName; + global String displayName; + global String excludeCriteria; + global String includeCriteria; + global ConnectApi.CdpSegmentDbtPipeline includeDbt; + global ConnectApi.CdpSegmentLookalike lookalikeCriteria; + global String marketSegmentDefinitionId; + global String marketSegmentId; + global String nextPublishDateTime; + global String publishInterval; + global String publishScheduleEndDate; + global String publishScheduleStartDateTime; + global String publishStatus; + global ConnectApi.CdpSegmentMembershipTableOutput segmentMembershipDmo; + global String segmentMembershipTable; + global String segmentOnApiName; + global String segmentOnId; + global String segmentStatus; + global String segmentType; + global CdpSegmentOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSourceSubscriptionModeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSourceSubscriptionModeEnum.cls new file mode 100644 index 0000000..72a6e40 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpSourceSubscriptionModeEnum.cls @@ -0,0 +1,3 @@ +global class CdpSourceSubscriptionModeEnum { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpUser.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpUser.cls new file mode 100644 index 0000000..66f60ca --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CdpUser.cls @@ -0,0 +1,12 @@ +global class CdpUser { + global String id; + global String name; + global String profilePhotoUrl; + global CdpUser() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChangeInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChangeInputRepresentation.cls new file mode 100644 index 0000000..b7af563 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChangeInputRepresentation.cls @@ -0,0 +1,9 @@ +global class ChangeInputRepresentation { + global List changeItems; + global ChangeInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChangeItemFeeInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChangeItemFeeInputRepresentation.cls new file mode 100644 index 0000000..8faf17c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChangeItemFeeInputRepresentation.cls @@ -0,0 +1,14 @@ +global class ChangeItemFeeInputRepresentation { + global Double amount; + global String amountType; + global String description; + global String priceBookEntryId; + global String product2Id; + global String reason; + global ChangeItemFeeInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChangeItemInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChangeItemInputRepresentation.cls new file mode 100644 index 0000000..a22a6ae --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChangeItemInputRepresentation.cls @@ -0,0 +1,13 @@ +global class ChangeItemInputRepresentation { + global List changeItemFees; + global String orderItemSummaryId; + global Double quantity; + global String reason; + global Boolean shippingReductionFlag; + global ChangeItemInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChangeItemOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChangeItemOutputRepresentation.cls new file mode 100644 index 0000000..426737f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChangeItemOutputRepresentation.cls @@ -0,0 +1,26 @@ +global class ChangeItemOutputRepresentation { + global Double grandTotalAmount; + global Double totalAdjDeliveryAmtWithTax; + global Double totalAdjDistAmountWithTax; + global Double totalAdjProductAmtWithTax; + global Double totalAdjustedDeliveryAmount; + global Double totalAdjustedDeliveryTaxAmount; + global Double totalAdjustedProductAmount; + global Double totalAdjustedProductTaxAmount; + global Double totalAdjustmentDistributedAmount; + global Double totalAdjustmentDistributedTaxAmount; + global Double totalAmount; + global Double totalExcessFundsAmount; + global Double totalFeeAmount; + global Double totalFeeTaxAmount; + global Double totalRefundableAmount; + global Double totalRequiredFundsAmount; + global Double totalTaxAmount; + global ChangeItemOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChangeOrdersInvoiceOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChangeOrdersInvoiceOutputRepresentation.cls new file mode 100644 index 0000000..f1b1454 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChangeOrdersInvoiceOutputRepresentation.cls @@ -0,0 +1,9 @@ +global class ChangeOrdersInvoiceOutputRepresentation { + global ChangeOrdersInvoiceOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Chatter.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Chatter.cls new file mode 100644 index 0000000..772e2b7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Chatter.cls @@ -0,0 +1,9 @@ +global class Chatter { + global Object clone() { } + global static void deleteSubscription(String communityId, String subscriptionId) { } + global static ConnectApi.FollowerPage getFollowers(String communityId, String recordId, Integer pageParam, Integer pageSize) { } + global static ConnectApi.FollowerPage getFollowers(String communityId, String recordId) { } + global static ConnectApi.Subscription getSubscription(String communityId, String subscriptionId) { } + global static ConnectApi.DigestJobRepresentation submitDigestJob(ConnectApi.DigestPeriod period) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterActivity.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterActivity.cls new file mode 100644 index 0000000..dbdba42 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterActivity.cls @@ -0,0 +1,13 @@ +global class ChatterActivity { + global Integer commentCount; + global Integer commentReceivedCount; + global Integer likeReceivedCount; + global Integer postCount; + global ChatterActivity() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterActivitySummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterActivitySummary.cls new file mode 100644 index 0000000..278d2fc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterActivitySummary.cls @@ -0,0 +1,13 @@ +global class ChatterActivitySummary { + global Integer commentCount; + global Integer commentReceivedCount; + global Integer likeReceivedCount; + global Integer postCount; + global ChatterActivitySummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterConversation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterConversation.cls new file mode 100644 index 0000000..9788569 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterConversation.cls @@ -0,0 +1,14 @@ +global class ChatterConversation { + global String conversationId; + global String conversationUrl; + global List members; + global ConnectApi.ChatterMessagePage messages; + global Boolean read; + global ChatterConversation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterConversationPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterConversationPage.cls new file mode 100644 index 0000000..84d0897 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterConversationPage.cls @@ -0,0 +1,14 @@ +global class ChatterConversationPage { + global List conversations; + global String currentPageToken; + global String currentPageUrl; + global String nextPageToken; + global String nextPageUrl; + global ChatterConversationPage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterConversationSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterConversationSummary.cls new file mode 100644 index 0000000..1cbe11e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterConversationSummary.cls @@ -0,0 +1,14 @@ +global class ChatterConversationSummary { + global String id; + global ConnectApi.ChatterMessage latestMessage; + global List members; + global Boolean read; + global String url; + global ChatterConversationSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterFavorites.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterFavorites.cls new file mode 100644 index 0000000..864264e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterFavorites.cls @@ -0,0 +1,22 @@ +global class ChatterFavorites { + global static ConnectApi.FeedFavorite addFavorite(String communityId, String subjectId, String searchText) { } + global static ConnectApi.FeedFavorite addRecordFavorite(String communityId, String subjectId, String targetId) { } + global Object clone() { } + global static void deleteFavorite(String communityId, String subjectId, String favoriteId) { } + global static ConnectApi.FeedFavorite getFavorite(String communityId, String subjectId, String favoriteId) { } + global static ConnectApi.FeedFavorites getFavorites(String communityId, String subjectId) { } + global static ConnectApi.FeedElementPage getFeedElements(String communityId, String subjectId, String favoriteId, Integer recentCommentCount, Integer elementsPerBundle, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam) { } + global static ConnectApi.FeedElementPage getFeedElements(String communityId, String subjectId, String favoriteId, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam) { } + global static ConnectApi.FeedElementPage getFeedElements(String communityId, String subjectId, String favoriteId) { } + global static ConnectApi.FeedItemPage getFeedItems(String communityId, String subjectId, String favoriteId, Integer recentCommentCount, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam) { } + global static ConnectApi.FeedItemPage getFeedItems(String communityId, String subjectId, String favoriteId, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam) { } + global static ConnectApi.FeedItemPage getFeedItems(String communityId, String subjectId, String favoriteId) { } + global static void setTestGetFeedElements(String communityId, String subjectId, String favoriteId, Integer recentCommentCount, Integer elementsPerBundle, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElements(String communityId, String subjectId, String favoriteId, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElements(String communityId, String subjectId, String favoriteId, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedItems(String communityId, String subjectId, String favoriteId, Integer recentCommentCount, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedItemPage result) { } + global static void setTestGetFeedItems(String communityId, String subjectId, String favoriteId, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedItemPage result) { } + global static void setTestGetFeedItems(String communityId, String subjectId, String favoriteId, ConnectApi.FeedItemPage result) { } + global static ConnectApi.FeedFavorite updateFavorite(String communityId, String subjectId, String favoriteId, Boolean updateLastViewDate) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterFeeds.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterFeeds.cls new file mode 100644 index 0000000..ab8133d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterFeeds.cls @@ -0,0 +1,306 @@ +global class ChatterFeeds { + global Object clone() { } + global static ConnectApi.ChatterStream createStream(String communityId, ConnectApi.ChatterStreamInput streamInput) { } + global static void deleteComment(String communityId, String commentId) { } + global static void deleteFeedElement(String communityId, String feedElementId) { } + global static void deleteFeedItem(String communityId, String feedItemId) { } + global static void deleteLike(String communityId, String likeId) { } + global static void deleteStream(String communityId, String streamId) { } + global static ConnectApi.Comment getComment(String communityId, String commentId) { } + global static List getCommentBatch(String communityId, List commentIds) { } + global static ConnectApi.FeedElement getCommentInContext(String communityId, String commentId, Integer pageSize) { } + global static ConnectApi.CommentPage getCommentsForFeedElement(String communityId, String feedElementId, String pageParam, Integer pageSize, Boolean threadedCommentsCollapsed, ConnectApi.FeedCommentSortOrder sortParam) { } + global static ConnectApi.CommentPage getCommentsForFeedElement(String communityId, String feedElementId, String pageParam, Integer pageSize, Boolean threadedCommentsCollapsed) { } + global static ConnectApi.CommentPage getCommentsForFeedElement(String communityId, String feedElementId, Boolean threadedCommentsCollapsed, ConnectApi.FeedCommentSortOrder sortParam) { } + global static ConnectApi.CommentsCapability getCommentsForFeedElement(String communityId, String feedElementId, ConnectApi.FeedCommentSortOrder sortParam, Boolean threadedCommentsCollapsed) { } + global static ConnectApi.CommentPage getCommentsForFeedElement(String communityId, String feedElementId, String pageParam, Integer pageSize) { } + global static ConnectApi.CommentPage getCommentsForFeedElement(String communityId, String feedElementId, Boolean threadedCommentsCollapsed) { } + global static ConnectApi.CommentsCapability getCommentsForFeedElement(String communityId, String feedElementId, ConnectApi.FeedCommentSortOrder sortParam) { } + global static ConnectApi.CommentPage getCommentsForFeedElement(String communityId, String feedElementId) { } + global static ConnectApi.CommentPage getCommentsForFeedItem(String communityId, String feedItemId, String pageParam, Integer pageSize) { } + global static ConnectApi.CommentPage getCommentsForFeedItem(String communityId, String feedItemId) { } + global static ConnectApi.ExtensionDefinitions getExtensions(String communityId, String pageParam, Integer pageSize) { } + global static ConnectApi.Feed getFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, ConnectApi.FeedSortOrder sortParam) { } + global static ConnectApi.Feed getFeed(String communityId, ConnectApi.FeedType feedType, ConnectApi.FeedSortOrder sortParam) { } + global static ConnectApi.Feed getFeed(String communityId, ConnectApi.FeedType feedType, String subjectId) { } + global static ConnectApi.Feed getFeed(String communityId, ConnectApi.FeedType feedType) { } + global static ConnectApi.FeedDirectory getFeedDirectory(String communityId) { } + global static ConnectApi.FeedElement getFeedElement(String communityId, String feedElementId, Integer recentCommentCount, Integer elementsPerBundle, Boolean threadedCommentsCollapsed, ConnectApi.FeedCommentSortOrder commentSort) { } + global static ConnectApi.FeedElement getFeedElement(String communityId, String feedElementId, Integer recentCommentCount, Integer elementsPerBundle, Boolean threadedCommentsCollapsed) { } + global static ConnectApi.FeedElement getFeedElement(String communityId, String feedElementId, Integer recentCommentCount, Integer elementsPerBundle, ConnectApi.FeedCommentSortOrder commentSort) { } + global static ConnectApi.FeedElement getFeedElement(String communityId, String feedElementId, Boolean threadedCommentsCollapsed, ConnectApi.FeedCommentSortOrder commentSort) { } + global static ConnectApi.FeedElement getFeedElement(String communityId, String feedElementId, Integer recentCommentCount, Integer elementsPerBundle) { } + global static ConnectApi.FeedElement getFeedElement(String communityId, String feedElementId, Boolean threadedCommentsCollapsed) { } + global static ConnectApi.FeedElement getFeedElement(String communityId, String feedElementId, ConnectApi.FeedCommentSortOrder commentSort) { } + global static ConnectApi.FeedElement getFeedElement(String communityId, String feedElementId) { } + global static List getFeedElementBatch(String communityId, List feedElementIds) { } + global static ConnectApi.PollCapability getFeedElementPoll(String communityId, String feedElementId) { } + global static ConnectApi.FeedElementPage getFeedElementsFromBundle(String communityId, String feedElementId, String pageParam, Integer pageSize, Integer elementsPerBundle, Integer recentCommentCount) { } + global static ConnectApi.FeedElementPage getFeedElementsFromBundle(String communityId, String feedElementId) { } + global static ConnectApi.FeedElementPage getFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, Integer elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, Boolean showInternalOnly, ConnectApi.FeedFilter filter, Boolean threadedCommentsCollapsed) { } + global static ConnectApi.FeedElementPage getFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, Integer elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, Boolean showInternalOnly, String customFilter, Boolean threadedCommentsCollapsed) { } + global static ConnectApi.FeedElementPage getFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, Integer elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, Boolean showInternalOnly, ConnectApi.FeedFilter filter) { } + global static ConnectApi.FeedElementPage getFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, Integer elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, Boolean showInternalOnly, String customFilter) { } + global static ConnectApi.FeedElementPage getFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedFilter filter, Boolean threadedCommentsCollapsed) { } + global static ConnectApi.FeedElementPage getFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, Integer elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, Boolean showInternalOnly) { } + global static ConnectApi.FeedElementPage getFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedFilter filter, Boolean threadedCommentsCollapsed) { } + global static ConnectApi.FeedElementPage getFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, Boolean showInternalOnly) { } + global static ConnectApi.FeedElementPage getFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedFilter filter) { } + global static ConnectApi.FeedElementPage getFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String customFilter) { } + global static ConnectApi.FeedElementPage getFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedFilter filter) { } + global static ConnectApi.FeedElementPage getFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String customFilter) { } + global static ConnectApi.FeedElementPage getFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam) { } + global static ConnectApi.FeedElementPage getFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam) { } + global static ConnectApi.FeedElementPage getFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam) { } + global static ConnectApi.FeedElementPage getFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam) { } + global static ConnectApi.FeedElementPage getFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId) { } + global static ConnectApi.FeedElementPage getFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType) { } + global static ConnectApi.FeedElementPage getFeedElementsFromFilterFeed(String communityId, String subjectId, String keyPrefix, Integer recentCommentCount, Integer elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam) { } + global static ConnectApi.FeedElementPage getFeedElementsFromFilterFeed(String communityId, String subjectId, String keyPrefix, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam) { } + global static ConnectApi.FeedElementPage getFeedElementsFromFilterFeed(String communityId, String subjectId, String keyPrefix) { } + global static ConnectApi.FeedElementPage getFeedElementsFromFilterFeedUpdatedSince(String communityId, String subjectId, String keyPrefix, Integer recentCommentCount, Integer elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince) { } + global static ConnectApi.FeedElementPage getFeedElementsUpdatedSince(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, Integer elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince, Boolean showInternalOnly, ConnectApi.FeedFilter filter) { } + global static ConnectApi.FeedElementPage getFeedElementsUpdatedSince(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, Integer elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince, Boolean showInternalOnly, String customFilter) { } + global static ConnectApi.FeedElementPage getFeedElementsUpdatedSince(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, Integer elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince, Boolean showInternalOnly) { } + global static ConnectApi.FeedElementPage getFeedElementsUpdatedSince(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, Integer elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince, ConnectApi.FeedFilter filter) { } + global static ConnectApi.FeedElementPage getFeedElementsUpdatedSince(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, Integer elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince, String customFilter) { } + global static ConnectApi.FeedElementPage getFeedElementsUpdatedSince(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince, Boolean showInternalOnly) { } + global static ConnectApi.FeedElementPage getFeedElementsUpdatedSince(String communityId, ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince, ConnectApi.FeedFilter filter) { } + global static ConnectApi.FeedElementPage getFeedElementsUpdatedSince(String communityId, ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince, String customFilter) { } + global static ConnectApi.FeedElementPage getFeedElementsUpdatedSince(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince) { } + global static ConnectApi.FeedElementPage getFeedElementsUpdatedSince(String communityId, ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince) { } + global static ConnectApi.FeedItem getFeedItem(String communityId, String feedItemId) { } + global static List getFeedItemBatch(String communityId, List feedItemIds) { } + global static ConnectApi.FeedItemPage getFeedItemsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, Boolean showInternalOnly) { } + global static ConnectApi.FeedItemPage getFeedItemsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam) { } + global static ConnectApi.FeedItemPage getFeedItemsFromFeed(String communityId, ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam) { } + global static ConnectApi.FeedItemPage getFeedItemsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam) { } + global static ConnectApi.FeedItemPage getFeedItemsFromFeed(String communityId, ConnectApi.FeedType feedType, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam) { } + global static ConnectApi.FeedItemPage getFeedItemsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId) { } + global static ConnectApi.FeedItemPage getFeedItemsFromFeed(String communityId, ConnectApi.FeedType feedType) { } + global static ConnectApi.FeedItemPage getFeedItemsFromFilterFeed(String communityId, String subjectId, String keyPrefix, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam) { } + global static ConnectApi.FeedItemPage getFeedItemsFromFilterFeed(String communityId, String subjectId, String keyPrefix, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam) { } + global static ConnectApi.FeedItemPage getFeedItemsFromFilterFeed(String communityId, String subjectId, String keyPrefix) { } + global static ConnectApi.FeedItemPage getFeedItemsFromFilterFeedUpdatedSince(String communityId, String subjectId, String keyPrefix, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince) { } + global static ConnectApi.FeedItemPage getFeedItemsUpdatedSince(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince, Boolean showInternalOnly) { } + global static ConnectApi.FeedItemPage getFeedItemsUpdatedSince(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince) { } + global static ConnectApi.FeedItemPage getFeedItemsUpdatedSince(String communityId, ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince) { } + global static ConnectApi.FeedPoll getFeedPoll(String communityId, String feedItemId) { } + global static ConnectApi.Feed getFeedWithFeedElements(String communityId, ConnectApi.FeedType feedType, Integer pageSize, Integer recentCommentCount) { } + global static ConnectApi.Feed getFeedWithFeedElements(String communityId, ConnectApi.FeedType feedType, Integer pageSize) { } + global static ConnectApi.Feed getFilterFeed(String communityId, String subjectId, String keyPrefix, ConnectApi.FeedSortOrder sortParam) { } + global static ConnectApi.Feed getFilterFeed(String communityId, String subjectId, String keyPrefix) { } + global static ConnectApi.FeedDirectory getFilterFeedDirectory(String communityId, String subjectId) { } + global static ConnectApi.ChatterLike getLike(String communityId, String likeId) { } + global static ConnectApi.ChatterLikePage getLikesForComment(String communityId, String commentId, Integer pageParam, Integer pageSize) { } + global static ConnectApi.ChatterLikePage getLikesForComment(String communityId, String commentId) { } + global static ConnectApi.ChatterLikePage getLikesForFeedElement(String communityId, String feedElementId, Integer pageParam, Integer pageSize) { } + global static ConnectApi.ChatterLikePage getLikesForFeedElement(String communityId, String feedElementId) { } + global static ConnectApi.ChatterLikePage getLikesForFeedItem(String communityId, String feedItemId, Integer pageParam, Integer pageSize) { } + global static ConnectApi.ChatterLikePage getLikesForFeedItem(String communityId, String feedItemId) { } + global static ConnectApi.LinkMetadataCollection getLinkMetadata(String communityId, String urls) { } + global static ConnectApi.PinnedFeedElements getPinnedFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId) { } + global static ConnectApi.ReadByPage getReadByForFeedElement(String communityId, String feedElementId, String pageParam, Integer pageSize) { } + global static ConnectApi.ReadByPage getReadByForFeedElement(String communityId, String feedElementId) { } + global static ConnectApi.RelatedFeedPosts getRelatedPosts(String communityId, String feedElementId, ConnectApi.RelatedFeedPostType filter, Integer maxResults) { } + global static ConnectApi.ChatterStream getStream(String communityId, String streamId, Boolean globalScope) { } + global static ConnectApi.ChatterStream getStream(String communityId, String streamId) { } + global static ConnectApi.ChatterStreamPage getStreams(String communityId, Integer pageParam, Integer pageSize, ConnectApi.SortOrder sortParam, Boolean globalScope) { } + global static ConnectApi.ChatterStreamPage getStreams(String communityId, Integer pageParam, Integer pageSize, ConnectApi.SortOrder sortParam) { } + global static ConnectApi.ChatterStreamPage getStreams(String communityId, Integer pageParam, Integer pageSize) { } + global static ConnectApi.ChatterStreamPage getStreams(String communityId, ConnectApi.SortOrder sortParam) { } + global static ConnectApi.ChatterStreamPage getStreams(String communityId) { } + global static ConnectApi.SupportedEmojis getSupportedEmojis() { } + global static ConnectApi.CommentPage getThreadsForFeedComment(String communityId, String commentId, String pageParam, Integer pageSize) { } + global static ConnectApi.CommentsCapability getThreadsForFeedComment(String communityId, String commentId, Boolean threadedCommentsCollapsed) { } + global static ConnectApi.CommentPage getThreadsForFeedComment(String communityId, String commentId) { } + global static ConnectApi.FeedElementPage getTopUnansweredQuestions(String communityId, ConnectApi.FeedFilter filter, Integer pageSize) { } + global static ConnectApi.FeedElementPage getTopUnansweredQuestions(String communityId, ConnectApi.FeedFilter filter) { } + global static ConnectApi.FeedElementPage getTopUnansweredQuestions(String communityId, Integer pageSize) { } + global static ConnectApi.FeedElementPage getTopUnansweredQuestions(String communityId) { } + global static ConnectApi.VotePage getVotesForComment(String communityId, String commentId, ConnectApi.UpDownVoteValue vote, Integer pageParam, Integer pageSize) { } + global static ConnectApi.VotePage getVotesForComment(String communityId, String commentId, ConnectApi.UpDownVoteValue vote) { } + global static ConnectApi.VotePage getVotesForFeedElement(String communityId, String feedElementId, ConnectApi.UpDownVoteValue vote, Integer pageParam, Integer pageSize) { } + global static ConnectApi.VotePage getVotesForFeedElement(String communityId, String feedElementId, ConnectApi.UpDownVoteValue vote) { } + global static ConnectApi.FeedEntityIsEditable isCommentEditableByMe(String communityId, String commentId) { } + global static ConnectApi.FeedEntityIsEditable isFeedElementEditableByMe(String communityId, String feedElementId) { } + global static ConnectApi.FeedModifiedInfo isModified(String communityId, ConnectApi.FeedType feedType, String subjectId, String since) { } + global static ConnectApi.ChatterLike likeComment(String communityId, String commentId) { } + global static ConnectApi.ChatterLike likeFeedElement(String communityId, String feedElementId) { } + global static ConnectApi.ChatterLike likeFeedItem(String communityId, String feedItemId) { } + global static ConnectApi.Comment postComment(String communityId, String feedItemId, ConnectApi.CommentInput comment, ConnectApi.BinaryInput feedItemFileUpload) { } + global static ConnectApi.Comment postComment(String communityId, String feedItemId, String text) { } + global static ConnectApi.Comment postCommentToFeedElement(String communityId, String feedElementId, ConnectApi.CommentInput comment, ConnectApi.BinaryInput feedElementFileUpload) { } + global static ConnectApi.Comment postCommentToFeedElement(String communityId, String feedElementId, String text) { } + global static ConnectApi.FeedElement postFeedElement(String communityId, String subjectId, ConnectApi.FeedElementType feedElementType, String text) { } + global static ConnectApi.FeedElement postFeedElement(String communityId, ConnectApi.FeedElementInput feedElement, ConnectApi.BinaryInput feedElementFileUpload) { } + global static ConnectApi.FeedElement postFeedElement(String communityId, ConnectApi.FeedElementInput feedElement) { } + global static List postFeedElementBatch(String communityId, List feedElements) { } + global static ConnectApi.FeedItem postFeedItem(String communityId, ConnectApi.FeedType feedType, String subjectId, ConnectApi.FeedItemInput feedItem, ConnectApi.BinaryInput feedItemFileUpload) { } + global static ConnectApi.FeedItem postFeedItem(String communityId, ConnectApi.FeedType feedType, String subjectId, String text) { } + global static ConnectApi.FeedElement publishDraftFeedElement(String communityId, String feedElementId, ConnectApi.FeedElementInput feedElement) { } + global static ConnectApi.FeedElementPage searchFeedElements(String communityId, String q, Integer recentCommentCount, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam) { } + global static ConnectApi.FeedElementPage searchFeedElements(String communityId, String q, String pageParam, Integer pageSize, Boolean threadedCommentsCollapsed) { } + global static ConnectApi.FeedElementPage searchFeedElements(String communityId, String q, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam) { } + global static ConnectApi.FeedElementPage searchFeedElements(String communityId, String q, String pageParam, Integer pageSize) { } + global static ConnectApi.FeedElementPage searchFeedElements(String communityId, String q, Boolean threadedCommentsCollapsed) { } + global static ConnectApi.FeedElementPage searchFeedElements(String communityId, String q, ConnectApi.FeedSortOrder sortParam) { } + global static ConnectApi.FeedElementPage searchFeedElements(String communityId, String q) { } + global static ConnectApi.FeedElementPage searchFeedElementsInFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, Boolean showInternalOnly, ConnectApi.FeedFilter filter) { } + global static ConnectApi.FeedElementPage searchFeedElementsInFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, Boolean showInternalOnly, String customFilter) { } + global static ConnectApi.FeedElementPage searchFeedElementsInFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, Boolean showInternalOnly) { } + global static ConnectApi.FeedElementPage searchFeedElementsInFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, ConnectApi.FeedFilter filter) { } + global static ConnectApi.FeedElementPage searchFeedElementsInFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, String customFilter) { } + global static ConnectApi.FeedElementPage searchFeedElementsInFeed(String communityId, ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, ConnectApi.FeedFilter filter) { } + global static ConnectApi.FeedElementPage searchFeedElementsInFeed(String communityId, ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, String customFilter) { } + global static ConnectApi.FeedElementPage searchFeedElementsInFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q) { } + global static ConnectApi.FeedElementPage searchFeedElementsInFeed(String communityId, ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q) { } + global static ConnectApi.FeedElementPage searchFeedElementsInFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q) { } + global static ConnectApi.FeedElementPage searchFeedElementsInFeed(String communityId, ConnectApi.FeedType feedType, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q) { } + global static ConnectApi.FeedElementPage searchFeedElementsInFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, String q) { } + global static ConnectApi.FeedElementPage searchFeedElementsInFeed(String communityId, ConnectApi.FeedType feedType, String q) { } + global static ConnectApi.FeedElementPage searchFeedElementsInFilterFeed(String communityId, String subjectId, String keyPrefix, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q) { } + global static ConnectApi.FeedElementPage searchFeedElementsInFilterFeed(String communityId, String subjectId, String keyPrefix, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q) { } + global static ConnectApi.FeedElementPage searchFeedElementsInFilterFeed(String communityId, String subjectId, String keyPrefix, String q) { } + global static ConnectApi.FeedItemPage searchFeedItems(String communityId, String q, Integer recentCommentCount, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam) { } + global static ConnectApi.FeedItemPage searchFeedItems(String communityId, String q, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam) { } + global static ConnectApi.FeedItemPage searchFeedItems(String communityId, String q, String pageParam, Integer pageSize) { } + global static ConnectApi.FeedItemPage searchFeedItems(String communityId, String q, ConnectApi.FeedSortOrder sortParam) { } + global static ConnectApi.FeedItemPage searchFeedItems(String communityId, String q) { } + global static ConnectApi.FeedItemPage searchFeedItemsInFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, Boolean showInternalOnly) { } + global static ConnectApi.FeedItemPage searchFeedItemsInFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q) { } + global static ConnectApi.FeedItemPage searchFeedItemsInFeed(String communityId, ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q) { } + global static ConnectApi.FeedItemPage searchFeedItemsInFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q) { } + global static ConnectApi.FeedItemPage searchFeedItemsInFeed(String communityId, ConnectApi.FeedType feedType, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q) { } + global static ConnectApi.FeedItemPage searchFeedItemsInFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, String q) { } + global static ConnectApi.FeedItemPage searchFeedItemsInFeed(String communityId, ConnectApi.FeedType feedType, String q) { } + global static ConnectApi.FeedItemPage searchFeedItemsInFilterFeed(String communityId, String subjectId, String keyPrefix, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q) { } + global static ConnectApi.FeedItemPage searchFeedItemsInFilterFeed(String communityId, String subjectId, String keyPrefix, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q) { } + global static ConnectApi.FeedItemPage searchFeedItemsInFilterFeed(String communityId, String subjectId, String keyPrefix, String q) { } + global static ConnectApi.ChatterStreamPage searchStreams(String communityId, String q, Integer pageParam, Integer pageSize, ConnectApi.SortOrder sortParam, Boolean globalScope) { } + global static ConnectApi.ChatterStreamPage searchStreams(String communityId, String q, Integer pageParam, Integer pageSize, ConnectApi.SortOrder sortParam) { } + global static ConnectApi.ChatterStreamPage searchStreams(String communityId, String q, Integer pageParam, Integer pageSize) { } + global static ConnectApi.ChatterStreamPage searchStreams(String communityId, String q, ConnectApi.SortOrder sortParam) { } + global static ConnectApi.ChatterStreamPage searchStreams(String communityId, String q) { } + global static ConnectApi.VerifiedCapability setCommentIsVerified(String communityId, String commentId, Boolean isVerified) { } + global static ConnectApi.VerifiedCapability setCommentIsVerifiedByAnonymized(String communityId, String commentId, Boolean isVerified, Boolean isVerifiedByAnonymized) { } + global static ConnectApi.UpDownVoteCapability setCommentVote(String communityId, String commentId, ConnectApi.UpDownVoteCapabilityInput upDownVote) { } + global static ConnectApi.StatusCapability setFeedCommentStatus(String communityId, String commentId, ConnectApi.StatusCapabilityInput status) { } + global static ConnectApi.CloseCapability setFeedElementIsClosed(String communityId, String feedElementId, Boolean isClosed) { } + global static ConnectApi.UpDownVoteCapability setFeedElementVote(String communityId, String feedElementId, ConnectApi.UpDownVoteCapabilityInput upDownVote) { } + global static ConnectApi.StatusCapability setFeedEntityStatus(String communityId, String feedElementId, ConnectApi.StatusCapabilityInput status) { } + global static ConnectApi.MuteCapability setIsMutedByMe(String communityId, String feedElementId, Boolean isMutedByMe) { } + global static ConnectApi.ReadByCapability setIsReadByMe(String communityId, String feedElementId, Boolean isReadByMe) { } + global static ConnectApi.ReadByCapability setIsReadByMe(String communityId, String feedElementId, ConnectApi.ReadByCapabilityInput readBy) { } + global static void setTestGetFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, Integer elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, Boolean showInternalOnly, ConnectApi.FeedFilter filter, Boolean threadedCommentsCollapsed, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, Integer elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, Boolean showInternalOnly, String customFilter, Boolean threadedCommentsCollapsed, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, Integer elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, Boolean showInternalOnly, ConnectApi.FeedFilter filter, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, Integer elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, Boolean showInternalOnly, String customFilter, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedFilter filter, Boolean threadedCommentsCollapsed, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, Integer elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, Boolean showInternalOnly, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedFilter filter, Boolean threadedCommentsCollapsed, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, Boolean showInternalOnly, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedFilter filter, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String customFilter, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedFilter filter, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String customFilter, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsFromFeed(String communityId, ConnectApi.FeedType feedType, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsFromFilterFeed(String communityId, String subjectId, String keyPrefix, Integer recentCommentCount, Integer elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsFromFilterFeed(String communityId, String subjectId, String keyPrefix, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsFromFilterFeed(String communityId, String subjectId, String keyPrefix, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsFromFilterFeedUpdatedSince(String communityId, String subjectId, String keyPrefix, Integer recentCommentCount, Integer elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsUpdatedSince(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, Integer elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince, Boolean showInternalOnly, ConnectApi.FeedFilter filter, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsUpdatedSince(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, Integer elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince, Boolean showInternalOnly, String customFilter, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsUpdatedSince(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, Integer elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince, Boolean showInternalOnly, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsUpdatedSince(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, Integer elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince, ConnectApi.FeedFilter filter, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsUpdatedSince(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, Integer elementsPerBundle, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince, String customFilter, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsUpdatedSince(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince, Boolean showInternalOnly, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsUpdatedSince(String communityId, ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince, ConnectApi.FeedFilter filter, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsUpdatedSince(String communityId, ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince, String customFilter, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsUpdatedSince(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedElementsUpdatedSince(String communityId, ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince, ConnectApi.FeedElementPage result) { } + global static void setTestGetFeedItemsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, Boolean showInternalOnly, ConnectApi.FeedItemPage result) { } + global static void setTestGetFeedItemsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedItemPage result) { } + global static void setTestGetFeedItemsFromFeed(String communityId, ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedItemPage result) { } + global static void setTestGetFeedItemsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedItemPage result) { } + global static void setTestGetFeedItemsFromFeed(String communityId, ConnectApi.FeedType feedType, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedItemPage result) { } + global static void setTestGetFeedItemsFromFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, ConnectApi.FeedItemPage result) { } + global static void setTestGetFeedItemsFromFeed(String communityId, ConnectApi.FeedType feedType, ConnectApi.FeedItemPage result) { } + global static void setTestGetFeedItemsFromFilterFeed(String communityId, String subjectId, String keyPrefix, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedItemPage result) { } + global static void setTestGetFeedItemsFromFilterFeed(String communityId, String subjectId, String keyPrefix, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedItemPage result) { } + global static void setTestGetFeedItemsFromFilterFeed(String communityId, String subjectId, String keyPrefix, ConnectApi.FeedItemPage result) { } + global static void setTestGetFeedItemsFromFilterFeedUpdatedSince(String communityId, String subjectId, String keyPrefix, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince, ConnectApi.FeedItemPage result) { } + global static void setTestGetFeedItemsUpdatedSince(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince, Boolean showInternalOnly, ConnectApi.FeedItemPage result) { } + global static void setTestGetFeedItemsUpdatedSince(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince, ConnectApi.FeedItemPage result) { } + global static void setTestGetFeedItemsUpdatedSince(String communityId, ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, String updatedSince, ConnectApi.FeedItemPage result) { } + global static void setTestGetRelatedPosts(String communityId, String feedElementId, ConnectApi.RelatedFeedPostType filter, Integer maxResults, ConnectApi.RelatedFeedPosts result) { } + global static void setTestGetTopUnansweredQuestions(String communityId, ConnectApi.FeedFilter filter, Integer pageSize, ConnectApi.FeedElementPage result) { } + global static void setTestGetTopUnansweredQuestions(String communityId, ConnectApi.FeedFilter filter, ConnectApi.FeedElementPage result) { } + global static void setTestGetTopUnansweredQuestions(String communityId, Integer pageSize, ConnectApi.FeedElementPage result) { } + global static void setTestGetTopUnansweredQuestions(String communityId, ConnectApi.FeedElementPage result) { } + global static void setTestSearchFeedElements(String communityId, String q, Integer recentCommentCount, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedElementPage result) { } + global static void setTestSearchFeedElements(String communityId, String q, String pageParam, Integer pageSize, Boolean threadedCommentsCollapsed, ConnectApi.FeedElementPage result) { } + global static void setTestSearchFeedElements(String communityId, String q, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedElementPage result) { } + global static void setTestSearchFeedElements(String communityId, String q, String pageParam, Integer pageSize, ConnectApi.FeedElementPage result) { } + global static void setTestSearchFeedElements(String communityId, String q, Boolean threadedCommentsCollapsed, ConnectApi.FeedElementPage result) { } + global static void setTestSearchFeedElements(String communityId, String q, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedElementPage result) { } + global static void setTestSearchFeedElements(String communityId, String q, ConnectApi.FeedElementPage result) { } + global static void setTestSearchFeedElementsInFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, Boolean showInternalOnly, ConnectApi.FeedFilter filter, ConnectApi.FeedElementPage result) { } + global static void setTestSearchFeedElementsInFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, Boolean showInternalOnly, String customFilter, ConnectApi.FeedElementPage result) { } + global static void setTestSearchFeedElementsInFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, Boolean showInternalOnly, ConnectApi.FeedElementPage result) { } + global static void setTestSearchFeedElementsInFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, ConnectApi.FeedFilter filter, ConnectApi.FeedElementPage result) { } + global static void setTestSearchFeedElementsInFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, String customFilter, ConnectApi.FeedElementPage result) { } + global static void setTestSearchFeedElementsInFeed(String communityId, ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, ConnectApi.FeedFilter filter, ConnectApi.FeedElementPage result) { } + global static void setTestSearchFeedElementsInFeed(String communityId, ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, String customFilter, ConnectApi.FeedElementPage result) { } + global static void setTestSearchFeedElementsInFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, ConnectApi.FeedElementPage result) { } + global static void setTestSearchFeedElementsInFeed(String communityId, ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, ConnectApi.FeedElementPage result) { } + global static void setTestSearchFeedElementsInFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, ConnectApi.FeedElementPage result) { } + global static void setTestSearchFeedElementsInFeed(String communityId, ConnectApi.FeedType feedType, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, ConnectApi.FeedElementPage result) { } + global static void setTestSearchFeedElementsInFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, String q, ConnectApi.FeedElementPage result) { } + global static void setTestSearchFeedElementsInFeed(String communityId, ConnectApi.FeedType feedType, String q, ConnectApi.FeedElementPage result) { } + global static void setTestSearchFeedElementsInFilterFeed(String communityId, String subjectId, String keyPrefix, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, ConnectApi.FeedElementPage result) { } + global static void setTestSearchFeedElementsInFilterFeed(String communityId, String subjectId, String keyPrefix, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, ConnectApi.FeedElementPage result) { } + global static void setTestSearchFeedElementsInFilterFeed(String communityId, String subjectId, String keyPrefix, String q, ConnectApi.FeedElementPage result) { } + global static void setTestSearchFeedItems(String communityId, String q, Integer recentCommentCount, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedItemPage result) { } + global static void setTestSearchFeedItems(String communityId, String q, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedItemPage result) { } + global static void setTestSearchFeedItems(String communityId, String q, String pageParam, Integer pageSize, ConnectApi.FeedItemPage result) { } + global static void setTestSearchFeedItems(String communityId, String q, ConnectApi.FeedSortOrder sortParam, ConnectApi.FeedItemPage result) { } + global static void setTestSearchFeedItems(String communityId, String q, ConnectApi.FeedItemPage result) { } + global static void setTestSearchFeedItemsInFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, Boolean showInternalOnly, ConnectApi.FeedItemPage result) { } + global static void setTestSearchFeedItemsInFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, ConnectApi.FeedItemPage result) { } + global static void setTestSearchFeedItemsInFeed(String communityId, ConnectApi.FeedType feedType, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, ConnectApi.FeedItemPage result) { } + global static void setTestSearchFeedItemsInFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, ConnectApi.FeedItemPage result) { } + global static void setTestSearchFeedItemsInFeed(String communityId, ConnectApi.FeedType feedType, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, ConnectApi.FeedItemPage result) { } + global static void setTestSearchFeedItemsInFeed(String communityId, ConnectApi.FeedType feedType, String subjectId, String q, ConnectApi.FeedItemPage result) { } + global static void setTestSearchFeedItemsInFeed(String communityId, ConnectApi.FeedType feedType, String q, ConnectApi.FeedItemPage result) { } + global static void setTestSearchFeedItemsInFilterFeed(String communityId, String subjectId, String keyPrefix, Integer recentCommentCount, ConnectApi.FeedDensity density, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, ConnectApi.FeedItemPage result) { } + global static void setTestSearchFeedItemsInFilterFeed(String communityId, String subjectId, String keyPrefix, String pageParam, Integer pageSize, ConnectApi.FeedSortOrder sortParam, String q, ConnectApi.FeedItemPage result) { } + global static void setTestSearchFeedItemsInFilterFeed(String communityId, String subjectId, String keyPrefix, String q, ConnectApi.FeedItemPage result) { } + global static void setTestSearchStreams(String communityId, String q, Integer pageParam, Integer pageSize, ConnectApi.SortOrder sortParam, Boolean globalScope, ConnectApi.ChatterStreamPage result) { } + global static void setTestSearchStreams(String communityId, String q, Integer pageParam, Integer pageSize, ConnectApi.SortOrder sortParam, ConnectApi.ChatterStreamPage result) { } + global static void setTestSearchStreams(String communityId, String q, Integer pageParam, Integer pageSize, ConnectApi.ChatterStreamPage result) { } + global static void setTestSearchStreams(String communityId, String q, ConnectApi.SortOrder sortParam, ConnectApi.ChatterStreamPage result) { } + global static void setTestSearchStreams(String communityId, String q, ConnectApi.ChatterStreamPage result) { } + global static ConnectApi.FeedElement shareFeedElement(String communityId, String subjectId, ConnectApi.FeedElementType feedElementType, String originalFeedElementId) { } + global static ConnectApi.FeedItem shareFeedItem(String communityId, ConnectApi.FeedType feedType, String subjectId, String originalFeedItemId) { } + global static ConnectApi.FeedItem updateBookmark(String communityId, String feedItemId, Boolean isBookmarkedByCurrentUser) { } + global static ConnectApi.Comment updateComment(String communityId, String commentId, ConnectApi.CommentInput comment) { } + global static ConnectApi.DirectMessageCapability updateDirectMessage(String communityId, String feedElementId, ConnectApi.DirectMessageCapabilityInput directMessage) { } + global static ConnectApi.FeedElement updateFeedElement(String communityId, String feedElementId, ConnectApi.FeedElementInput feedElement) { } + global static ConnectApi.BookmarksCapability updateFeedElementBookmarks(String communityId, String feedElementId, Boolean isBookmarkedByCurrentUser) { } + global static ConnectApi.BookmarksCapability updateFeedElementBookmarks(String communityId, String feedElementId, ConnectApi.BookmarksCapabilityInput bookmarks) { } + global static List updateFeedElementReadByCapabilityBatch(String communityId, List feedElementIds, Boolean isReadByMe) { } + global static List updateFeedElementReadByCapabilityBatch(String communityId, List feedElementIds, ConnectApi.ReadByCapabilityInput readBy) { } + global static ConnectApi.ChatterLikePage updateLikeForComment(String communityId, String commentId, Boolean isLikedByCurrentUser) { } + global static ConnectApi.ChatterLikePage updateLikeForFeedElement(String communityId, String feedElementId, Boolean isLikedByCurrentUser) { } + global static ConnectApi.PinCapability updatePinnedFeedElements(String communityId, ConnectApi.FeedType feedType, String subjectId, ConnectApi.PinCapabilityInput pin) { } + global static ConnectApi.ChatterStream updateStream(String communityId, String streamId, ConnectApi.ChatterStreamInput streamInput) { } + global static ConnectApi.PollCapability voteOnFeedElementPoll(String communityId, String feedElementId, String myChoiceId) { } + global static ConnectApi.FeedPoll voteOnFeedPoll(String communityId, String feedItemId, String myChoiceId) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterGroup.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterGroup.cls new file mode 100644 index 0000000..19eca3b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterGroup.cls @@ -0,0 +1,25 @@ +global class ChatterGroup { + global String additionalLabel; + global ConnectApi.Announcement announcement; + global ConnectApi.BannerPhoto bannerPhoto; + global Boolean canHaveChatterGuests; + global ConnectApi.Reference community; + global String description; + global String emailToChatterAddress; + global Boolean isArchived; + global Boolean isAutoArchiveDisabled; + global Boolean isBroadcast; + global Datetime lastFeedElementPostDate; + global Datetime lastFeedItemPostDate; + global Integer memberCount; + global ConnectApi.GroupMembershipType myRole; + global ConnectApi.UserSummary owner; + global ConnectApi.Photo photo; + global ConnectApi.GroupVisibilityType visibility; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterGroupDetail.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterGroupDetail.cls new file mode 100644 index 0000000..7a0c9a0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterGroupDetail.cls @@ -0,0 +1,12 @@ +global class ChatterGroupDetail { + global Integer fileCount; + global ConnectApi.GroupInformation information; + global Integer pendingRequests; + global ChatterGroupDetail() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterGroupInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterGroupInput.cls new file mode 100644 index 0000000..be333ec --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterGroupInput.cls @@ -0,0 +1,18 @@ +global class ChatterGroupInput { + global String announcement; + global Boolean canHaveChatterGuests; + global String description; + global ConnectApi.GroupInformationInput information; + global Boolean isArchived; + global Boolean isAutoArchiveDisabled; + global Boolean isBroadcast; + global String name; + global String owner; + global ConnectApi.GroupVisibilityType visibility; + global ChatterGroupInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterGroupPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterGroupPage.cls new file mode 100644 index 0000000..8ff3d4e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterGroupPage.cls @@ -0,0 +1,13 @@ +global class ChatterGroupPage { + global String currentPageUrl; + global List groups; + global String nextPageUrl; + global String previousPageUrl; + global ChatterGroupPage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterGroupSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterGroupSummary.cls new file mode 100644 index 0000000..b7e3698 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterGroupSummary.cls @@ -0,0 +1,10 @@ +global class ChatterGroupSummary { + global Integer fileCount; + global ChatterGroupSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterGroups.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterGroups.cls new file mode 100644 index 0000000..22e7cf2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterGroups.cls @@ -0,0 +1,62 @@ +global class ChatterGroups { + global static ConnectApi.GroupMember addMember(String communityId, String groupId, String userId) { } + global static ConnectApi.GroupMember addMemberWithRole(String communityId, String groupId, String userId, ConnectApi.GroupMembershipType role) { } + global static ConnectApi.GroupRecord addRecord(String communityId, String groupId, String recordId) { } + global Object clone() { } + global static ConnectApi.ChatterGroupDetail createGroup(String communityId, ConnectApi.ChatterGroupInput groupInput) { } + global static void deleteBannerPhoto(String communityId, String groupId) { } + global static void deleteGroup(String communityId, String groupId) { } + global static void deleteMember(String communityId, String membershipId) { } + global static void deletePhoto(String communityId, String groupId) { } + global static ConnectApi.Subscription follow(String communityId, String groupId, String subjectId) { } + global static ConnectApi.AnnouncementPage getAnnouncements(String communityId, String groupId, Integer pageParam, Integer pageSize) { } + global static ConnectApi.AnnouncementPage getAnnouncements(String communityId, String groupId) { } + global static ConnectApi.BannerPhoto getBannerPhoto(String communityId, String groupId) { } + global static ConnectApi.FollowingPage getFollowings(String communityId, String groupId, String filterType, Integer pageParam, Integer pageSize) { } + global static ConnectApi.FollowingPage getFollowings(String communityId, String groupId, Integer pageParam, Integer pageSize) { } + global static ConnectApi.FollowingPage getFollowings(String communityId, String groupId, String filterType, Integer pageParam) { } + global static ConnectApi.FollowingPage getFollowings(String communityId, String groupId, Integer pageParam) { } + global static ConnectApi.FollowingPage getFollowings(String communityId, String groupId, String filterType) { } + global static ConnectApi.FollowingPage getFollowings(String communityId, String groupId) { } + global static ConnectApi.ChatterGroupDetail getGroup(String communityId, String groupId) { } + global static List getGroupBatch(String communityId, List groupIds) { } + global static ConnectApi.GroupMembershipRequest getGroupMembershipRequest(String communityId, String requestId) { } + global static ConnectApi.GroupMembershipRequests getGroupMembershipRequests(String communityId, String groupId, ConnectApi.GroupMembershipRequestStatus status) { } + global static ConnectApi.GroupMembershipRequests getGroupMembershipRequests(String communityId, String groupId) { } + global static ConnectApi.ChatterGroupPage getGroups(String communityId, ConnectApi.GroupArchiveStatus archiveStatus, Integer pageParam, Integer pageSize) { } + global static ConnectApi.ChatterGroupPage getGroups(String communityId, Integer pageParam, Integer pageSize) { } + global static ConnectApi.ChatterGroupPage getGroups(String communityId) { } + global static ConnectApi.GroupMember getMember(String communityId, String membershipId) { } + global static ConnectApi.GroupMemberPage getMembers(String communityId, String groupId, Integer pageParam, Integer pageSize) { } + global static ConnectApi.GroupMemberPage getMembers(String communityId, String groupId) { } + global static List getMembershipBatch(String communityId, List membershipIds) { } + global static ConnectApi.GroupChatterSettings getMyChatterSettings(String communityId, String groupId) { } + global static ConnectApi.Photo getPhoto(String communityId, String groupId) { } + global static ConnectApi.GroupRecord getRecord(String communityId, String groupRecordId) { } + global static ConnectApi.GroupRecordPage getRecords(String communityId, String groupId, Integer pageParam, Integer pageSize) { } + global static ConnectApi.GroupRecordPage getRecords(String communityId, String groupId) { } + global static ConnectApi.Invitations inviteUsers(String groupId, ConnectApi.InviteInput invite) { } + global static ConnectApi.Announcement postAnnouncement(String communityId, String groupId, ConnectApi.AnnouncementInput announcement) { } + global static void removeRecord(String communityId, String groupRecordId) { } + global static ConnectApi.GroupMembershipRequest requestGroupMembership(String communityId, String groupId) { } + global static ConnectApi.ChatterGroupPage searchGroups(String communityId, String q, ConnectApi.GroupArchiveStatus archiveStatus, Integer pageParam, Integer pageSize) { } + global static ConnectApi.ChatterGroupPage searchGroups(String communityId, String q, Integer pageParam, Integer pageSize) { } + global static ConnectApi.ChatterGroupPage searchGroups(String communityId, String q) { } + global static ConnectApi.BannerPhoto setBannerPhoto(String communityId, String groupId, String fileId, Integer versionNumber) { } + global static ConnectApi.BannerPhoto setBannerPhoto(String communityId, String groupId, ConnectApi.BinaryInput fileUpload) { } + global static ConnectApi.BannerPhoto setBannerPhotoWithAttributes(String communityId, String groupId, ConnectApi.BannerPhotoInput bannerPhoto, ConnectApi.BinaryInput fileUpload) { } + global static ConnectApi.BannerPhoto setBannerPhotoWithAttributes(String communityId, String groupId, ConnectApi.BannerPhotoInput bannerPhoto) { } + global static ConnectApi.Photo setPhoto(String communityId, String groupId, String fileId, Integer versionNumber) { } + global static ConnectApi.Photo setPhoto(String communityId, String groupId, ConnectApi.BinaryInput fileUpload) { } + global static ConnectApi.Photo setPhotoWithAttributes(String communityId, String groupId, ConnectApi.PhotoInput photo, ConnectApi.BinaryInput fileUpload) { } + global static ConnectApi.Photo setPhotoWithAttributes(String communityId, String groupId, ConnectApi.PhotoInput photo) { } + global static void setTestSearchGroups(String communityId, String q, ConnectApi.GroupArchiveStatus archiveStatus, Integer pageParam, Integer pageSize, ConnectApi.ChatterGroupPage result) { } + global static void setTestSearchGroups(String communityId, String q, Integer pageParam, Integer pageSize, ConnectApi.ChatterGroupPage result) { } + global static void setTestSearchGroups(String communityId, String q, ConnectApi.ChatterGroupPage result) { } + global static ConnectApi.ChatterGroupDetail updateGroup(String communityId, String groupId, ConnectApi.ChatterGroupInput groupInput) { } + global static ConnectApi.GroupMember updateGroupMember(String communityId, String membershipId, ConnectApi.GroupMembershipType role) { } + global static ConnectApi.GroupChatterSettings updateMyChatterSettings(String communityId, String groupId, ConnectApi.GroupEmailFrequency emailFrequency) { } + global static ConnectApi.GroupMembershipRequest updateRequestStatus(String communityId, String requestId, ConnectApi.GroupMembershipRequestStatus status, String responseMessage) { } + global static ConnectApi.GroupMembershipRequest updateRequestStatus(String communityId, String requestId, ConnectApi.GroupMembershipRequestStatus status) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterLike.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterLike.cls new file mode 100644 index 0000000..f525d7b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterLike.cls @@ -0,0 +1,13 @@ +global class ChatterLike { + global String id; + global ConnectApi.Reference likedItem; + global String url; + global ConnectApi.UserSummary user; + global ChatterLike() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterLikePage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterLikePage.cls new file mode 100644 index 0000000..918ee4a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterLikePage.cls @@ -0,0 +1,18 @@ +global class ChatterLikePage { + global Integer currentPageToken; + global String currentPageUrl; + global List items; + global List likes; + global Integer nextPageToken; + global String nextPageUrl; + global Integer previousPageToken; + global String previousPageUrl; + global Integer total; + global ChatterLikePage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterLikesCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterLikesCapability.cls new file mode 100644 index 0000000..9892110 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterLikesCapability.cls @@ -0,0 +1,13 @@ +global class ChatterLikesCapability { + global Boolean isLikedByCurrentUser; + global ConnectApi.MessageBody likesMessage; + global ConnectApi.Reference myLike; + global ConnectApi.ChatterLikePage page; + global ChatterLikesCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterMessage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterMessage.cls new file mode 100644 index 0000000..dec615c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterMessage.cls @@ -0,0 +1,18 @@ +global class ChatterMessage { + global ConnectApi.MessageBody body; + global String conversationId; + global String conversationUrl; + global String id; + global List recipients; + global ConnectApi.UserSummary sender; + global ConnectApi.Reference sendingCommunity; + global Datetime sentDate; + global String url; + global ChatterMessage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterMessagePage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterMessagePage.cls new file mode 100644 index 0000000..37bae61 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterMessagePage.cls @@ -0,0 +1,14 @@ +global class ChatterMessagePage { + global String currentPageToken; + global String currentPageUrl; + global List messages; + global String nextPageToken; + global String nextPageUrl; + global ChatterMessagePage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterMessages.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterMessages.cls new file mode 100644 index 0000000..e874475 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterMessages.cls @@ -0,0 +1,38 @@ +global class ChatterMessages { + global Object clone() { } + global static ConnectApi.ChatterConversation getConversation(String communityId, String conversationId, String pageParam, Integer pageSize) { } + global static ConnectApi.ChatterConversation getConversation(String conversationId, String pageParam, Integer pageSize) { } + global static ConnectApi.ChatterConversation getConversation(String communityId, String conversationId) { } + global static ConnectApi.ChatterConversation getConversation(String conversationId) { } + global static ConnectApi.ChatterConversationPage getConversations(String communityId, String pageParam, Integer pageSize) { } + global static ConnectApi.ChatterConversationPage getConversations(String pageParam, Integer pageSize) { } + global static ConnectApi.ChatterConversationPage getConversations(String communityId) { } + global static ConnectApi.ChatterConversationPage getConversations() { } + global static ConnectApi.ChatterMessage getMessage(String communityId, String messageId) { } + global static ConnectApi.ChatterMessage getMessage(String messageId) { } + global static ConnectApi.ChatterMessagePage getMessages(String communityId, String pageParam, Integer pageSize) { } + global static ConnectApi.ChatterMessagePage getMessages(String pageParam, Integer pageSize) { } + global static ConnectApi.ChatterMessagePage getMessages(String communityId) { } + global static ConnectApi.ChatterMessagePage getMessages() { } + global static ConnectApi.UnreadConversationCount getUnreadCount(String communityId) { } + global static ConnectApi.UnreadConversationCount getUnreadCount() { } + global static ConnectApi.ChatterConversationSummary markConversationRead(String communityId, String conversationId, Boolean read) { } + global static ConnectApi.ChatterConversationSummary markConversationRead(String conversationId, Boolean read) { } + global static ConnectApi.ChatterMessage replyToMessage(String communityId, String text, String inReplyTo) { } + global static ConnectApi.ChatterMessage replyToMessage(String text, String inReplyTo) { } + global static ConnectApi.ChatterConversation searchConversation(String communityId, String conversationId, String pageParam, Integer pageSize, String q) { } + global static ConnectApi.ChatterConversation searchConversation(String conversationId, String pageParam, Integer pageSize, String q) { } + global static ConnectApi.ChatterConversation searchConversation(String communityId, String conversationId, String q) { } + global static ConnectApi.ChatterConversation searchConversation(String conversationId, String q) { } + global static ConnectApi.ChatterConversationPage searchConversations(String communityId, String pageParam, Integer pageSize, String q) { } + global static ConnectApi.ChatterConversationPage searchConversations(String pageParam, Integer pageSize, String q) { } + global static ConnectApi.ChatterConversationPage searchConversations(String communityId, String q) { } + global static ConnectApi.ChatterConversationPage searchConversations(String q) { } + global static ConnectApi.ChatterMessagePage searchMessages(String communityId, String pageParam, Integer pageSize, String q) { } + global static ConnectApi.ChatterMessagePage searchMessages(String pageParam, Integer pageSize, String q) { } + global static ConnectApi.ChatterMessagePage searchMessages(String communityId, String q) { } + global static ConnectApi.ChatterMessagePage searchMessages(String q) { } + global static ConnectApi.ChatterMessage sendMessage(String communityId, String text, String recipients) { } + global static ConnectApi.ChatterMessage sendMessage(String text, String recipients) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterStream.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterStream.cls new file mode 100644 index 0000000..75c8523 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterStream.cls @@ -0,0 +1,16 @@ +global class ChatterStream { + global ConnectApi.CommunitySummary community; + global Datetime createdDate; + global String description; + global String id; + global String name; + global List subscriptions; + global String url; + global ChatterStream() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterStreamInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterStreamInput.cls new file mode 100644 index 0000000..2b1ae33 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterStreamInput.cls @@ -0,0 +1,12 @@ +global class ChatterStreamInput { + global String description; + global String name; + global List subscriptionsToAdd; + global List subscriptionsToRemove; + global ChatterStreamInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterStreamPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterStreamPage.cls new file mode 100644 index 0000000..5353c9e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterStreamPage.cls @@ -0,0 +1,13 @@ +global class ChatterStreamPage { + global String currentPageUrl; + global List items; + global String nextPageUrl; + global Integer total; + global ChatterStreamPage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterUsers.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterUsers.cls new file mode 100644 index 0000000..e3019c8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChatterUsers.cls @@ -0,0 +1,43 @@ +global class ChatterUsers { + global Object clone() { } + global static void deletePhoto(String communityId, String userId) { } + global static ConnectApi.UserActivitiesJob exportUserActivities(String communityId, String userId) { } + global static ConnectApi.Subscription follow(String communityId, String userId, String subjectId) { } + global static ConnectApi.UserChatterSettings getChatterSettings(String communityId, String userId) { } + global static ConnectApi.FollowerPage getFollowers(String communityId, String userId, Integer pageParam, Integer pageSize) { } + global static ConnectApi.FollowerPage getFollowers(String communityId, String userId) { } + global static ConnectApi.FollowingPage getFollowings(String communityId, String userId, String filterType, Integer pageParam, Integer pageSize) { } + global static ConnectApi.FollowingPage getFollowings(String communityId, String userId, Integer pageParam, Integer pageSize) { } + global static ConnectApi.FollowingPage getFollowings(String communityId, String userId, String filterType, Integer pageParam) { } + global static ConnectApi.FollowingPage getFollowings(String communityId, String userId, Integer pageParam) { } + global static ConnectApi.FollowingPage getFollowings(String communityId, String userId, String filterType) { } + global static ConnectApi.FollowingPage getFollowings(String communityId, String userId) { } + global static ConnectApi.UserGroupPage getGroups(String communityId, String userId, Integer pageParam, Integer pageSize) { } + global static ConnectApi.UserGroupPage getGroups(String communityId, String userId) { } + global static ConnectApi.Photo getPhoto(String communityId, String userId) { } + global static ConnectApi.Reputation getReputation(String communityId, String userId) { } + global static ConnectApi.UserDetail getUser(String communityId, String userId) { } + global static List getUserBatch(String communityId, List userIds) { } + global static ConnectApi.UserGroupDetailPage getUserGroups(String communityId, String userId, Integer pageParam, Integer pageSize) { } + global static ConnectApi.UserGroupDetailPage getUserGroups(String communityId, String userId) { } + global static ConnectApi.UserPage getUsers(String communityId, Integer pageParam, Integer pageSize) { } + global static ConnectApi.UserPage getUsers(String communityId) { } + global static ConnectApi.UserActivitiesJob purgeUserActivities(String communityId, String userId) { } + global static ConnectApi.UserGroupDetailPage searchUserGroupDetails(String communityId, String userId, String q, Integer pageParam, Integer pageSize) { } + global static ConnectApi.UserGroupDetailPage searchUserGroupDetails(String communityId, String userId, String q) { } + global static ConnectApi.UserGroupPage searchUserGroups(String communityId, String userId, String q, Integer pageParam, Integer pageSize) { } + global static ConnectApi.UserGroupPage searchUserGroups(String communityId, String userId, String q) { } + global static ConnectApi.UserPage searchUsers(String communityId, String q, String searchContextId, Integer pageParam, Integer pageSize) { } + global static ConnectApi.UserPage searchUsers(String communityId, String q, Integer pageParam, Integer pageSize) { } + global static ConnectApi.UserPage searchUsers(String communityId, String q) { } + global static ConnectApi.Photo setPhoto(String communityId, String userId, String fileId, Integer versionNumber) { } + global static ConnectApi.Photo setPhoto(String communityId, String userId, ConnectApi.BinaryInput fileUpload) { } + global static ConnectApi.Photo setPhotoWithAttributes(String communityId, String userId, ConnectApi.PhotoInput photo, ConnectApi.BinaryInput fileUpload) { } + global static ConnectApi.Photo setPhotoWithAttributes(String communityId, String userId, ConnectApi.PhotoInput photo) { } + global static void setTestSearchUsers(String communityId, String q, String searchContextId, Integer pageParam, Integer pageSize, ConnectApi.UserPage result) { } + global static void setTestSearchUsers(String communityId, String q, Integer pageParam, Integer pageSize, ConnectApi.UserPage result) { } + global static void setTestSearchUsers(String communityId, String q, ConnectApi.UserPage result) { } + global static ConnectApi.UserChatterSettings updateChatterSettings(String communityId, String userId, ConnectApi.GroupEmailFrequency defaultGroupEmailFrequency) { } + global static ConnectApi.UserDetail updateUser(String communityId, String userId, ConnectApi.UserInput userInput) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CheckoutSessionState.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CheckoutSessionState.cls new file mode 100644 index 0000000..cb94699 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CheckoutSessionState.cls @@ -0,0 +1,7 @@ +global enum CheckoutSessionState { +BILLING, +COMPLETE, +DELIVERY, +ORDERING, +START +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChimeAttendeeResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChimeAttendeeResult.cls new file mode 100644 index 0000000..d318034 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChimeAttendeeResult.cls @@ -0,0 +1,12 @@ +global class ChimeAttendeeResult { + global String attendeeId; + global String externalAttendeeId; + global String joinToken; + global ChimeAttendeeResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChimeMediaPlacementResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChimeMediaPlacementResult.cls new file mode 100644 index 0000000..22661c2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChimeMediaPlacementResult.cls @@ -0,0 +1,17 @@ +global class ChimeMediaPlacementResult { + global String audioFallbackUrl; + global String audioHostUrl; + global String eventIngestionUrl; + global String screenDataUrl; + global String screenSharingUrl; + global String screenViewingUrl; + global String signalingUrl; + global String turnControlUrl; + global ChimeMediaPlacementResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChimeMeetingResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChimeMeetingResult.cls new file mode 100644 index 0000000..29d2050 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ChimeMeetingResult.cls @@ -0,0 +1,11 @@ +global class ChimeMeetingResult { + global ConnectApi.ChimeMediaPlacementResult mediaPlacement; + global String meetingId; + global ChimeMeetingResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ClientInfo.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ClientInfo.cls new file mode 100644 index 0000000..cb0f939 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ClientInfo.cls @@ -0,0 +1,11 @@ +global class ClientInfo { + global String applicationName; + global String applicationUrl; + global ClientInfo() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Clm.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Clm.cls new file mode 100644 index 0000000..5008c85 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Clm.cls @@ -0,0 +1,3 @@ +global class Clm { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CloseCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CloseCapability.cls new file mode 100644 index 0000000..fce0ad0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CloseCapability.cls @@ -0,0 +1,11 @@ +global class CloseCapability { + global Boolean canContextUserUpdateIsClosed; + global Boolean isClosed; + global CloseCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CloseCapabilityInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CloseCapabilityInput.cls new file mode 100644 index 0000000..2a4b3ad --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CloseCapabilityInput.cls @@ -0,0 +1,9 @@ +global class CloseCapabilityInput { + global Boolean isClosed; + global CloseCapabilityInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Column.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Column.cls new file mode 100644 index 0000000..15f28d3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Column.cls @@ -0,0 +1,13 @@ +global class Column { + global String columnLabel; + global String columnName; + global String columnValue; + global String initialValue; + global Column() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Comment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Comment.cls new file mode 100644 index 0000000..c0ae8fa --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Comment.cls @@ -0,0 +1,29 @@ +global class Comment { + global ConnectApi.FeedItemAttachment attachment; + global ConnectApi.FeedBody body; + global ConnectApi.CommentCapabilities capabilities; + global ConnectApi.ClientInfo clientInfo; + global Datetime createdDate; + global ConnectApi.Reference feedElement; + global ConnectApi.Reference feedItem; + global String id; + global Boolean isDeleteRestricted; + global ConnectApi.ChatterLikePage likes; + global ConnectApi.MessageBody likesMessage; + global ConnectApi.ModerationFlags moderationFlags; + global ConnectApi.Reference myLike; + global ConnectApi.Reference parent; + global String relativeCreatedDate; + global Integer threadLevel; + global String threadParentId; + global ConnectApi.CommentType type; + global String url; + global ConnectApi.UserSummary user; + global Comment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommentCapabilities.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommentCapabilities.cls new file mode 100644 index 0000000..5ce7355 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommentCapabilities.cls @@ -0,0 +1,18 @@ +global class CommentCapabilities { + global ConnectApi.CommentsCapability comments; + global ConnectApi.ContentCapability content; + global ConnectApi.EditCapability edit; + global ConnectApi.ExtensionsCapability extensions; + global ConnectApi.FeedEntityShareCapability feedEntityShare; + global ConnectApi.RecordCapability record; + global ConnectApi.StatusCapability status; + global ConnectApi.UpDownVoteCapability upDownVote; + global ConnectApi.VerifiedCapability verified; + global CommentCapabilities() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommentCapabilitiesInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommentCapabilitiesInput.cls new file mode 100644 index 0000000..87d0708 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommentCapabilitiesInput.cls @@ -0,0 +1,12 @@ +global class CommentCapabilitiesInput { + global ConnectApi.ContentCapabilityInput content; + global ConnectApi.ExtensionsCapabilityInput extensions; + global ConnectApi.FeedEntityShareCapabilityInput feedEntityShare; + global ConnectApi.RecordCapabilityInput record; + global CommentCapabilitiesInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommentInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommentInput.cls new file mode 100644 index 0000000..2c6e460 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommentInput.cls @@ -0,0 +1,13 @@ +global class CommentInput { + global ConnectApi.FeedItemAttachmentInput attachment; + global ConnectApi.MessageBodyInput body; + global ConnectApi.CommentCapabilitiesInput capabilities; + global ConnectApi.ExtensionsCapabilityInput extensions; + global String threadParentId; + global CommentInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommentPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommentPage.cls new file mode 100644 index 0000000..79c7a89 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommentPage.cls @@ -0,0 +1,18 @@ +global class CommentPage { + global List comments; + global String currentPageToken; + global String currentPageUrl; + global List items; + global String nextPageToken; + global String nextPageUrl; + global String previousPageToken; + global String previousPageUrl; + global Integer total; + global CommentPage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommentSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommentSummary.cls new file mode 100644 index 0000000..e860497 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommentSummary.cls @@ -0,0 +1,10 @@ +global class CommentSummary { + global String commentId; + global CommentSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommentType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommentType.cls new file mode 100644 index 0000000..fff7281 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommentType.cls @@ -0,0 +1,4 @@ +global enum CommentType { +CONTENTCOMMENT, +TEXTCOMMENT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommentsCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommentsCapability.cls new file mode 100644 index 0000000..85d83d7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommentsCapability.cls @@ -0,0 +1,10 @@ +global class CommentsCapability { + global ConnectApi.CommentPage page; + global CommentsCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceActionResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceActionResult.cls new file mode 100644 index 0000000..8ca5406 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceActionResult.cls @@ -0,0 +1,11 @@ +global class CommerceActionResult { + global Boolean isSuccess; + global String message; + global CommerceActionResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceAddressCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceAddressCollection.cls new file mode 100644 index 0000000..39f60bc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceAddressCollection.cls @@ -0,0 +1,19 @@ +global class CommerceAddressCollection { + global Integer count; + global String currentPageToken; + global String currentPageUrl; + global List items; + global String nextPageToken; + global String nextPageUrl; + global Integer pageSize; + global String previousPageToken; + global String previousPageUrl; + global ConnectApi.CommerceAddressSort sortOrder; + global CommerceAddressCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceAddressFieldInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceAddressFieldInput.cls new file mode 100644 index 0000000..92a2615 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceAddressFieldInput.cls @@ -0,0 +1,10 @@ +global class CommerceAddressFieldInput { + global String dataName; + global String text; + global CommerceAddressFieldInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceAddressInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceAddressInput.cls new file mode 100644 index 0000000..43655d7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceAddressInput.cls @@ -0,0 +1,24 @@ +global class CommerceAddressInput { + global String addressType; + global String city; + global List commerceAddressFieldInputList; + global String companyName; + global String country; + global String countryCode; + global String firstName; + global Boolean isDefault; + global String lastName; + global String middleName; + global String name; + global String phoneNumber; + global String postalCode; + global String region; + global String regionCode; + global String street; + global commerceAddressInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceAddressOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceAddressOutput.cls new file mode 100644 index 0000000..f188b14 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceAddressOutput.cls @@ -0,0 +1,26 @@ +global class CommerceAddressOutput { + global String addressId; + global String addressType; + global String city; + global String companyName; + global String country; + global String countryCode; + global Map fields; + global String firstName; + global Boolean isDefault; + global String lastName; + global String middleName; + global String name; + global String phoneNumber; + global String postalCode; + global String region; + global String regionCode; + global String street; + global CommerceAddressOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceAddressSort.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceAddressSort.cls new file mode 100644 index 0000000..07df66b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceAddressSort.cls @@ -0,0 +1,6 @@ +global enum CommerceAddressSort { +CREATEDDATEASC, +CREATEDDATEDESC, +NAMEASC, +NAMEDESC +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceBuyerExperience.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceBuyerExperience.cls new file mode 100644 index 0000000..4c9d9bf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceBuyerExperience.cls @@ -0,0 +1,3 @@ +global class CommerceBuyerExperience { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceCart.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceCart.cls new file mode 100644 index 0000000..0ff6067 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceCart.cls @@ -0,0 +1,3 @@ +global class CommerceCart { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceCatalog.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceCatalog.cls new file mode 100644 index 0000000..fd88546 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceCatalog.cls @@ -0,0 +1,3 @@ +global class CommerceCatalog { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceCatalogAttributeType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceCatalogAttributeType.cls new file mode 100644 index 0000000..a9dca4f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceCatalogAttributeType.cls @@ -0,0 +1,6 @@ +global enum CommerceCatalogAttributeType { +CUSTOM, +PRODUCTATTRIBUTE, +PRODUCTCATEGORY, +STANDARD +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceEinsteinActivityJobStatusEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceEinsteinActivityJobStatusEnum.cls new file mode 100644 index 0000000..eb4421c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceEinsteinActivityJobStatusEnum.cls @@ -0,0 +1,5 @@ +global enum CommerceEinsteinActivityJobStatusEnum { +COMPLETED, +NODATA, +PENDING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceEinsteinConfiguration.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceEinsteinConfiguration.cls new file mode 100644 index 0000000..3c8b93a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceEinsteinConfiguration.cls @@ -0,0 +1,5 @@ +global class CommerceEinsteinConfiguration { + global Object clone() { } + global static ConnectApi.CommerceEinsteinOutputConfiguration getEinsteinConfiguration(String webstoreId) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceEinsteinOutputConfiguration.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceEinsteinOutputConfiguration.cls new file mode 100644 index 0000000..44fb63d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceEinsteinOutputConfiguration.cls @@ -0,0 +1,16 @@ +global class CommerceEinsteinOutputConfiguration { + global Boolean activityTrackingEnabled; + global Boolean catalogExists; + global Boolean deploymentEnabled; + global String host; + global Boolean isDeployed; + global String siteId; + global String tenant; + global CommerceEinsteinOutputConfiguration() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceEinsteinStatusEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceEinsteinStatusEnum.cls new file mode 100644 index 0000000..9d22834 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceEinsteinStatusEnum.cls @@ -0,0 +1,8 @@ +global enum CommerceEinsteinStatusEnum { +DATAERROR, +INPROGRESS, +INTERNALERROR, +NOTDEPLYED, +SUCCESS, +UNDEPLOYEDSITEERROR +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceInventory.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceInventory.cls new file mode 100644 index 0000000..4001651 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceInventory.cls @@ -0,0 +1,3 @@ +global class CommerceInventory { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceInventoryPricing.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceInventoryPricing.cls new file mode 100644 index 0000000..d849c01 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceInventoryPricing.cls @@ -0,0 +1,3 @@ +global class CommerceInventoryPricing { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceProductAttributeSetSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceProductAttributeSetSummary.cls new file mode 100644 index 0000000..e3b3ae0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceProductAttributeSetSummary.cls @@ -0,0 +1,9 @@ +global class CommerceProductAttributeSetSummary { + global CommerceProductAttributeSetSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceProductSearchResults.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceProductSearchResults.cls new file mode 100644 index 0000000..594f722 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceProductSearchResults.cls @@ -0,0 +1,9 @@ +global class CommerceProductSearchResults { + global CommerceProductSearchResults() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceProductSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceProductSummary.cls new file mode 100644 index 0000000..b5cf85d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceProductSummary.cls @@ -0,0 +1,11 @@ +global class CommerceProductSummary { + global ConnectApi.PurchaseQuantityRule purchaseQuantityRule; + global ConnectApi.CommerceProductAttributeSetSummary variationAttributeSet; + global CommerceProductSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceProductSummaryPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceProductSummaryPage.cls new file mode 100644 index 0000000..3c940d5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceProductSummaryPage.cls @@ -0,0 +1,12 @@ +global class CommerceProductSummaryPage { + global Integer pageSize; + global List products; + global Long total; + global CommerceProductSummaryPage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommercePromotions.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommercePromotions.cls new file mode 100644 index 0000000..dffd6e4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommercePromotions.cls @@ -0,0 +1,3 @@ +global class CommercePromotions { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearch.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearch.cls new file mode 100644 index 0000000..6d90d1a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearch.cls @@ -0,0 +1,3 @@ +global class CommerceSearch { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchAttributeType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchAttributeType.cls new file mode 100644 index 0000000..857f610 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchAttributeType.cls @@ -0,0 +1,6 @@ +global enum CommerceSearchAttributeType { +CUSTOM, +PRODUCTATTRIBUTE, +PRODUCTCATEGORY, +STANDARD +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchConnectFamily.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchConnectFamily.cls new file mode 100644 index 0000000..305d30a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchConnectFamily.cls @@ -0,0 +1,3 @@ +global class CommerceSearchConnectFamily { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchFacetDisplayType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchFacetDisplayType.cls new file mode 100644 index 0000000..c36ffc4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchFacetDisplayType.cls @@ -0,0 +1,6 @@ +global enum CommerceSearchFacetDisplayType { +CATEGORYTREE, +DATEPICKER, +MULTISELECT, +SINGLESELECT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchFacetType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchFacetType.cls new file mode 100644 index 0000000..87a1c52 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchFacetType.cls @@ -0,0 +1,3 @@ +global enum CommerceSearchFacetType { +DISTINCTVALUE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchGroupingOption.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchGroupingOption.cls new file mode 100644 index 0000000..c0e5d66 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchGroupingOption.cls @@ -0,0 +1,4 @@ +global enum CommerceSearchGroupingOption { +NOGROUPING, +VARIATIONPARENT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchIndex.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchIndex.cls new file mode 100644 index 0000000..41aa6f2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchIndex.cls @@ -0,0 +1,19 @@ +global class CommerceSearchIndex { + global Datetime completionDate; + global Datetime createdDate; + global ConnectApi.CommerceSearchIndexCreationType creationType; + global String id; + global ConnectApi.CommerceSearchIndexBuildType indexBuildType; + global ConnectApi.CommerceSearchIndexStatus indexStatus; + global ConnectApi.CommerceSearchIndexUsage indexUsage; + global Boolean isIncrementable; + global Datetime lastCatalogSnapshotTime; + global String message; + global CommerceSearchIndex() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchIndexBuildType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchIndexBuildType.cls new file mode 100644 index 0000000..0c88d7a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchIndexBuildType.cls @@ -0,0 +1,4 @@ +global enum CommerceSearchIndexBuildType { +FULL, +INCREMENTAL +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchIndexCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchIndexCollection.cls new file mode 100644 index 0000000..03bfe6f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchIndexCollection.cls @@ -0,0 +1,10 @@ +global class CommerceSearchIndexCollection { + global List indexes; + global CommerceSearchIndexCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchIndexCreationType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchIndexCreationType.cls new file mode 100644 index 0000000..fc6c20f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchIndexCreationType.cls @@ -0,0 +1,4 @@ +global enum CommerceSearchIndexCreationType { +MANUAL, +SCHEDULED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchIndexLog.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchIndexLog.cls new file mode 100644 index 0000000..eb33f1c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchIndexLog.cls @@ -0,0 +1,17 @@ +global class CommerceSearchIndexLog { + global Datetime catalogSnapshotTime; + global Datetime completionDate; + global String createdById; + global ConnectApi.CommerceSearchIndexStatus indexBuildStatus; + global ConnectApi.CommerceSearchIndexBuildType indexBuildType; + global String indexId; + global String message; + global Integer numberOfProducts; + global CommerceSearchIndexLog() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchIndexLogCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchIndexLogCollection.cls new file mode 100644 index 0000000..6fad0ea --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchIndexLogCollection.cls @@ -0,0 +1,10 @@ +global class CommerceSearchIndexLogCollection { + global List indexLogs; + global CommerceSearchIndexLogCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchIndexStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchIndexStatus.cls new file mode 100644 index 0000000..eaadd39 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchIndexStatus.cls @@ -0,0 +1,5 @@ +global enum CommerceSearchIndexStatus { +COMPLETED, +FAILED, +INPROGRESS +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchIndexUsage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchIndexUsage.cls new file mode 100644 index 0000000..e2dff5a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchIndexUsage.cls @@ -0,0 +1,4 @@ +global enum CommerceSearchIndexUsage { +LIVE, +OUTOFUSE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchSettings.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchSettings.cls new file mode 100644 index 0000000..2d2feeb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchSettings.cls @@ -0,0 +1,3 @@ +global class CommerceSearchSettings { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchSortRuleDirection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchSortRuleDirection.cls new file mode 100644 index 0000000..17f1c4b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchSortRuleDirection.cls @@ -0,0 +1,5 @@ +global enum CommerceSearchSortRuleDirection { +ASCENDING, +DEFAULT, +DESCENDING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchSortRuleType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchSortRuleType.cls new file mode 100644 index 0000000..ef9ba92 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchSortRuleType.cls @@ -0,0 +1,7 @@ +global enum CommerceSearchSortRuleType { +CUSTOM, +PRODUCTATTRIBUTEBASED, +PRODUCTBASED, +RELEVANCY, +SORTBYPRICEBOOK +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchTopProductType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchTopProductType.cls new file mode 100644 index 0000000..b6816d6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceSearchTopProductType.cls @@ -0,0 +1,3 @@ +global enum CommerceSearchTopProductType { +VARIATIONPARENT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceStorePricing.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceStorePricing.cls new file mode 100644 index 0000000..cb1d51a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceStorePricing.cls @@ -0,0 +1,3 @@ +global class CommerceStorePricing { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceWishlist.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceWishlist.cls new file mode 100644 index 0000000..0dac183 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommerceWishlist.cls @@ -0,0 +1,3 @@ +global class CommerceWishlist { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Communities.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Communities.cls new file mode 100644 index 0000000..64ca29e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Communities.cls @@ -0,0 +1,8 @@ +global class Communities { + global Object clone() { } + global static ConnectApi.CommunityPage getCommunities(ConnectApi.CommunityStatus status) { } + global static ConnectApi.CommunityPage getCommunities() { } + global static ConnectApi.Community getCommunity(String communityId) { } + global static ConnectApi.CommunityTemplates getCommunityTemplates() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Community.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Community.cls new file mode 100644 index 0000000..dc2122c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Community.cls @@ -0,0 +1,32 @@ +global class Community { + global Boolean allowChatterAccessWithoutLogin; + global Boolean allowMembersToFlag; + global Boolean builderBasedSnaEnabled; + global String builderUrl; + global String description; + global Boolean guestMemberVisibilityEnabled; + global String id; + global Boolean imageOptimizationCDNEnabled; + global Boolean invitationsEnabled; + global Boolean knowledgeableEnabled; + global String loginUrl; + global Boolean memberVisibilityEnabled; + global String name; + global Boolean nicknameDisplayEnabled; + global Boolean privateMessagesEnabled; + global Boolean reputationEnabled; + global Boolean sendWelcomeEmail; + global Boolean siteAsContainerEnabled; + global String siteUrl; + global ConnectApi.CommunityStatus status; + global String templateName; + global String url; + global String urlPathPrefix; + global Community() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityFlagReasonType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityFlagReasonType.cls new file mode 100644 index 0000000..d8cd3e2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityFlagReasonType.cls @@ -0,0 +1,6 @@ +global enum CommunityFlagReasonType { +FLAGGEDBYRULE, +FLAGGEDBYSYSTEM, +FLAGGEDBYUSERASINAPPROPRIATE, +FLAGGEDBYUSERASSPAM +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityFlagType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityFlagType.cls new file mode 100644 index 0000000..bedaf21 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityFlagType.cls @@ -0,0 +1,4 @@ +global enum CommunityFlagType { +FLAGASINAPPROPRIATE, +FLAGASSPAM +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityFlagVisibility.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityFlagVisibility.cls new file mode 100644 index 0000000..9744b18 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityFlagVisibility.cls @@ -0,0 +1,4 @@ +global enum CommunityFlagVisibility { +MODERATORSONLY, +SELFANDMODERATORS +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityLanguage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityLanguage.cls new file mode 100644 index 0000000..0abf091 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityLanguage.cls @@ -0,0 +1,11 @@ +global class CommunityLanguage { + global List availableLanguages; + global ConnectApi.Language defaultLanguage; + global CommunityLanguage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityModeration.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityModeration.cls new file mode 100644 index 0000000..ea1f669 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityModeration.cls @@ -0,0 +1,35 @@ +global class CommunityModeration { + global static ConnectApi.ModerationFlags addFlagToComment(String communityId, String commentId, ConnectApi.CommunityFlagType type, ConnectApi.CommunityFlagVisibility visibility, String note) { } + global static ConnectApi.ModerationFlags addFlagToComment(String communityId, String commentId, ConnectApi.CommunityFlagType type, ConnectApi.CommunityFlagVisibility visibility) { } + global static ConnectApi.ModerationFlags addFlagToComment(String communityId, String commentId, ConnectApi.CommunityFlagType type, String note) { } + global static ConnectApi.ModerationFlags addFlagToComment(String communityId, String commentId, ConnectApi.CommunityFlagVisibility visibility, String note) { } + global static ConnectApi.ModerationFlags addFlagToComment(String communityId, String commentId, ConnectApi.CommunityFlagType type) { } + global static ConnectApi.ModerationFlags addFlagToComment(String communityId, String commentId, ConnectApi.CommunityFlagVisibility visibility) { } + global static ConnectApi.ModerationFlags addFlagToComment(String communityId, String commentId, String note) { } + global static ConnectApi.ModerationFlags addFlagToComment(String communityId, String commentId) { } + global static ConnectApi.ModerationCapability addFlagToFeedElement(String communityId, String feedElementId, ConnectApi.CommunityFlagType type, ConnectApi.CommunityFlagVisibility visibility, String note) { } + global static ConnectApi.ModerationCapability addFlagToFeedElement(String communityId, String feedElementId, ConnectApi.CommunityFlagType type, ConnectApi.CommunityFlagVisibility visibility) { } + global static ConnectApi.ModerationCapability addFlagToFeedElement(String communityId, String feedElementId, ConnectApi.CommunityFlagType type, String note) { } + global static ConnectApi.ModerationCapability addFlagToFeedElement(String communityId, String feedElementId, ConnectApi.CommunityFlagVisibility visibility, String note) { } + global static ConnectApi.ModerationCapability addFlagToFeedElement(String communityId, String feedElementId, ConnectApi.CommunityFlagType type) { } + global static ConnectApi.ModerationCapability addFlagToFeedElement(String communityId, String feedElementId, ConnectApi.CommunityFlagVisibility visibility) { } + global static ConnectApi.ModerationCapability addFlagToFeedElement(String communityId, String feedElementId, String note) { } + global static ConnectApi.ModerationCapability addFlagToFeedElement(String communityId, String feedElementId) { } + global static ConnectApi.ModerationFlags addFlagToFeedItem(String communityId, String feedItemId, ConnectApi.CommunityFlagVisibility visibility) { } + global static ConnectApi.ModerationFlags addFlagToFeedItem(String communityId, String feedItemId) { } + global Object clone() { } + global static ConnectApi.ModerationFlags getFlagsOnComment(String communityId, String commentId, ConnectApi.CommunityFlagVisibility visibility, Integer pageSize, String pageParam) { } + global static ConnectApi.ModerationFlags getFlagsOnComment(String communityId, String commentId, Integer pageSize, String pageParam) { } + global static ConnectApi.ModerationFlags getFlagsOnComment(String communityId, String commentId, ConnectApi.CommunityFlagVisibility visibility) { } + global static ConnectApi.ModerationFlags getFlagsOnComment(String communityId, String commentId) { } + global static ConnectApi.ModerationCapability getFlagsOnFeedElement(String communityId, String feedElementId, ConnectApi.CommunityFlagVisibility visibility, Integer pageSize, String pageParam) { } + global static ConnectApi.ModerationCapability getFlagsOnFeedElement(String communityId, String feedElementId, String pageParam, Integer pageSize) { } + global static ConnectApi.ModerationCapability getFlagsOnFeedElement(String communityId, String feedElementId, ConnectApi.CommunityFlagVisibility visibility) { } + global static ConnectApi.ModerationCapability getFlagsOnFeedElement(String communityId, String feedElementId) { } + global static ConnectApi.ModerationFlags getFlagsOnFeedItem(String communityId, String feedItemId, ConnectApi.CommunityFlagVisibility visibility) { } + global static ConnectApi.ModerationFlags getFlagsOnFeedItem(String communityId, String feedItemId) { } + global static void removeFlagFromComment(String communityId, String commentId, String userId) { } + global static void removeFlagFromFeedElement(String communityId, String feedElementId, String userId) { } + global static void removeFlagFromFeedItem(String communityId, String feedItemId, String userId) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityPage.cls new file mode 100644 index 0000000..22abc28 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityPage.cls @@ -0,0 +1,11 @@ +global class CommunityPage { + global List communities; + global Integer total; + global CommunityPage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityPublish.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityPublish.cls new file mode 100644 index 0000000..b1bdac0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityPublish.cls @@ -0,0 +1,14 @@ +global class CommunityPublish { + global String id; + global String jobId; + global String message; + global String name; + global String url; + global CommunityPublish() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityStatus.cls new file mode 100644 index 0000000..beda50e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityStatus.cls @@ -0,0 +1,5 @@ +global enum CommunityStatus { +INACTIVE, +LIVE, +UNDERCONSTRUCTION +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunitySummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunitySummary.cls new file mode 100644 index 0000000..05aad9d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunitySummary.cls @@ -0,0 +1,11 @@ +global class CommunitySummary { + global String id; + global String name; + global CommunitySummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityTemplate.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityTemplate.cls new file mode 100644 index 0000000..e376282 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityTemplate.cls @@ -0,0 +1,11 @@ +global class CommunityTemplate { + global String publisher; + global String templateName; + global CommunityTemplate() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityTemplates.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityTemplates.cls new file mode 100644 index 0000000..fe1a2d3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CommunityTemplates.cls @@ -0,0 +1,11 @@ +global class CommunityTemplates { + global List templates; + global Integer total; + global CommunityTemplates() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CompanyVerifySummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CompanyVerifySummary.cls new file mode 100644 index 0000000..b8cc0f0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CompanyVerifySummary.cls @@ -0,0 +1,9 @@ +global class CompanyVerifySummary { + global CompanyVerifySummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ComplaintInfoWrapper.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ComplaintInfoWrapper.cls new file mode 100644 index 0000000..2f5e5d4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ComplaintInfoWrapper.cls @@ -0,0 +1,20 @@ +global class ComplaintInfoWrapper { + global String accountId; + global Map additionalInfo; + global String complaintSubType; + global String complaintType; + global String description; + global String email; + global String incidentDate; + global String priority; + global String productType; + global String receivedDate; + global String status; + global String subject; + global ComplaintInfoWrapper() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ComplaintMgmtOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ComplaintMgmtOutputRepresentation.cls new file mode 100644 index 0000000..4a02a22 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ComplaintMgmtOutputRepresentation.cls @@ -0,0 +1,12 @@ +global class ComplaintMgmtOutputRepresentation { + global String caseId; + global String caseNumber; + global String publicComplaintId; + global ComplaintMgmtOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ComplaintMgmtRequestInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ComplaintMgmtRequestInputRepresentation.cls new file mode 100644 index 0000000..dc8a754 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ComplaintMgmtRequestInputRepresentation.cls @@ -0,0 +1,14 @@ +global class ComplaintMgmtRequestInputRepresentation { + global String assessmentId; + global ConnectApi.CaseInfoWrapper caseInfo; + global List caseParticipantInfo; + global ConnectApi.ComplaintInfoWrapper complaintInfo; + global List documentInfo; + global Boolean shouldInclInRegulatoryRpt; + global ComplaintMgmtRequestInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ComplexSegment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ComplexSegment.cls new file mode 100644 index 0000000..c9df833 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ComplexSegment.cls @@ -0,0 +1,9 @@ +global class ComplexSegment { + global List segments; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CompoundRecordField.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CompoundRecordField.cls new file mode 100644 index 0000000..4eb8f67 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CompoundRecordField.cls @@ -0,0 +1,10 @@ +global class CompoundRecordField { + global List fields; + global CompoundRecordField() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConfirmHeldFOCapacityInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConfirmHeldFOCapacityInputRepresentation.cls new file mode 100644 index 0000000..621f858 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConfirmHeldFOCapacityInputRepresentation.cls @@ -0,0 +1,9 @@ +global class ConfirmHeldFOCapacityInputRepresentation { + global List confirmHeldFOCapacityRequests; + global ConfirmHeldFOCapacityInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConfirmHeldFOCapacityOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConfirmHeldFOCapacityOutputRepresentation.cls new file mode 100644 index 0000000..dcfe708 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConfirmHeldFOCapacityOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class ConfirmHeldFOCapacityOutputRepresentation { + global List confirmHeldFOCapacityResponses; + global ConfirmHeldFOCapacityOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConfirmHeldFOCapacityRequestInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConfirmHeldFOCapacityRequestInputRepresentation.cls new file mode 100644 index 0000000..166a550 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConfirmHeldFOCapacityRequestInputRepresentation.cls @@ -0,0 +1,10 @@ +global class ConfirmHeldFOCapacityRequestInputRepresentation { + global Boolean allOrNothing; + global List capacityRequests; + global ConfirmHeldFOCapacityRequestInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConfirmHeldFOCapacityResponseOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConfirmHeldFOCapacityResponseOutputRepresentation.cls new file mode 100644 index 0000000..6306e6a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConfirmHeldFOCapacityResponseOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class ConfirmHeldFOCapacityResponseOutputRepresentation { + global List capacityResponses; + global ConfirmHeldFOCapacityResponseOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectApiException.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectApiException.cls new file mode 100644 index 0000000..645cd50 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectApiException.cls @@ -0,0 +1,6 @@ +global class ConnectApiException extends Exception { + global Object clone() { } + global String getErrorCode() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectCommerceSearchSortRuleLabelSuffix.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectCommerceSearchSortRuleLabelSuffix.cls new file mode 100644 index 0000000..6377a7f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectCommerceSearchSortRuleLabelSuffix.cls @@ -0,0 +1,28 @@ +global enum ConnectCommerceSearchSortRuleLabelSuffix { +ASCEN, +ASCENDING, +AZ, +DESCEN, +DESCENDING, +FEWMANY, +HEAVYLIGHT, +HIGHLOW, +HIGHESTLOWEST, +LIGHTHEAVY, +LOWHIGH, +LOWESTHIGHEST, +MANYFEW, +NEWOLD, +NEWEST, +NEWESTOLDEST, +NINEZERO, +OLDNEW, +OLDEST, +OLDESTNEWEST, +PRICEDECREASING, +PRICEINCREASING, +THICKTHIN, +THINTHICK, +ZA, +ZERONINE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectCommerceSearchSortStandardField.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectCommerceSearchSortStandardField.cls new file mode 100644 index 0000000..26c25f3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectCommerceSearchSortStandardField.cls @@ -0,0 +1,8 @@ +global enum ConnectCommerceSearchSortStandardField { +CREATEDDATE, +FAMILY, +NAME, +PRODUCTCODE, +QUANTITYUNITOFMEASURE, +STOCKKEEPINGUNIT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectManagedContentChannelType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectManagedContentChannelType.cls new file mode 100644 index 0000000..4e04813 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectManagedContentChannelType.cls @@ -0,0 +1,6 @@ +global enum ConnectManagedContentChannelType { +CLOUDTOCLOUD, +COMMUNITY, +CONNECTEDAPP, +PUBLICUNAUTHENTICATED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectManagedContentDeploymentType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectManagedContentDeploymentType.cls new file mode 100644 index 0000000..ae5e383 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectManagedContentDeploymentType.cls @@ -0,0 +1,4 @@ +global enum ConnectManagedContentDeploymentType { +PUBLISH, +UNPUBLISH +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectManagedContentMediaType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectManagedContentMediaType.cls new file mode 100644 index 0000000..3f3b67b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectManagedContentMediaType.cls @@ -0,0 +1,5 @@ +global enum ConnectManagedContentMediaType { +DOCUMENT, +IMAGE, +VIDEO +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectManagedContentNodeType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectManagedContentNodeType.cls new file mode 100644 index 0000000..19bad35 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectManagedContentNodeType.cls @@ -0,0 +1,11 @@ +global enum ConnectManagedContentNodeType { +DATE, +DATETIME, +MEDIA, +MEDIASOURCE, +MULTILINETEXT, +NAMEFIELD, +RICHTEXT, +TEXT, +URL +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectSitesPageType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectSitesPageType.cls new file mode 100644 index 0000000..5c528f5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectSitesPageType.cls @@ -0,0 +1,4 @@ +global enum ConnectSitesPageType { +CONTENTPAGE, +SITEPAGE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectStatusCheckType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectStatusCheckType.cls new file mode 100644 index 0000000..c3a0ade --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectStatusCheckType.cls @@ -0,0 +1,4 @@ +global enum ConnectStatusCheckType { +DATAGENERATIONSTATUSCHECK, +TRAININGSTATUSCHECK +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectUtilities.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectUtilities.cls new file mode 100644 index 0000000..e3537aa --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectUtilities.cls @@ -0,0 +1,6 @@ +global class ConnectUtilities { + global ConnectUtilities() { } + global Object clone() { } + global static Object unwrapApexWrapper(Object obj) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectWaveSortOrderEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectWaveSortOrderEnum.cls new file mode 100644 index 0000000..607b438 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConnectWaveSortOrderEnum.cls @@ -0,0 +1,4 @@ +global enum ConnectWaveSortOrderEnum { +ASCENDING, +DESCENDING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Content.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Content.cls new file mode 100644 index 0000000..a8a8e25 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Content.cls @@ -0,0 +1,37 @@ +global class Content { + global String checksum; + global String contentUrl; + global String description; + global String downloadUrl; + global String fileExtension; + global String fileSize; + global String fileType; + global String fileTypeEnumName; + global Boolean hasFlashPreview; + global Boolean hasPdfPreview; + global Boolean hasTinyThumbnailPreview; + global String id; + global Boolean isContextUserSubscribedToDocument; + global Boolean isInMyFileSync; + global Boolean isRenditionProcessing; + global Boolean isSyncAvailable; + global Datetime lastModifiedDate; + global String mimeType; + global String renditionUrl; + global String renditionUrl240By180; + global String renditionUrl720By480; + global ConnectApi.FileSharingOption sharingOption; + global String textPreview; + global String thumb120By90RenditionStatus; + global String thumb240By180RenditionStatus; + global String thumb720By480RenditionStatus; + global String title; + global String versionId; + global Content() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentAttachment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentAttachment.cls new file mode 100644 index 0000000..7466111 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentAttachment.cls @@ -0,0 +1,30 @@ +global class ContentAttachment { + global String checksum; + global String contentUrl; + global String description; + global String downloadUrl; + global String fileExtension; + global String fileSize; + global String fileType; + global Boolean hasImagePreview; + global Boolean hasPdfPreview; + global String id; + global Boolean isInMyFileSync; + global String mimeType; + global String renditionUrl; + global String renditionUrl240By180; + global String renditionUrl720By480; + global String textPreview; + global String thumb120By90RenditionStatus; + global String thumb240By180RenditionStatus; + global String thumb720By480RenditionStatus; + global String title; + global String versionId; + global ContentAttachment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentAttachmentInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentAttachmentInput.cls new file mode 100644 index 0000000..08e0969 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentAttachmentInput.cls @@ -0,0 +1,9 @@ +global class ContentAttachmentInput { + global String contentDocumentId; + global ContentAttachmentInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentCapability.cls new file mode 100644 index 0000000..5ca3563 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentCapability.cls @@ -0,0 +1,37 @@ +global class ContentCapability { + global String checksum; + global String contentUrl; + global String description; + global String downloadUrl; + global String fileExtension; + global String fileSize; + global String fileType; + global String fileTypeEnumName; + global Boolean hasFlashPreview; + global Boolean hasPdfPreview; + global Boolean hasTinyThumbnailPreview; + global String id; + global Boolean isContextUserSubscribedToDocument; + global Boolean isInMyFileSync; + global Boolean isRenditionProcessing; + global Boolean isSyncAvailable; + global Datetime lastModifiedDate; + global String mimeType; + global String renditionUrl; + global String renditionUrl240By180; + global String renditionUrl720By480; + global ConnectApi.FileSharingOption sharingOption; + global String textPreview; + global String thumb120By90RenditionStatus; + global String thumb240By180RenditionStatus; + global String thumb720By480RenditionStatus; + global String title; + global String versionId; + global ContentCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentCapabilityInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentCapabilityInput.cls new file mode 100644 index 0000000..a42959c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentCapabilityInput.cls @@ -0,0 +1,12 @@ +global class ContentCapabilityInput { + global String contentDocumentId; + global String description; + global ConnectApi.FileSharingOption sharingOption; + global String title; + global ContentCapabilityInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentDocumentOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentDocumentOutput.cls new file mode 100644 index 0000000..1934c12 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentDocumentOutput.cls @@ -0,0 +1,10 @@ +global class ContentDocumentOutput { + global String id; + global ContentDocumentOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHub.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHub.cls new file mode 100644 index 0000000..d5a5e39 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHub.cls @@ -0,0 +1,80 @@ +global class ContentHub { + global static ConnectApi.RepositoryFolderItem addRepositoryItem(String communityId, String repositoryId, String repositoryFolderId, ConnectApi.ContentHubItemInput file, ConnectApi.BinaryInput fileData) { } + global static ConnectApi.RepositoryFolderItem addRepositoryItem(String repositoryId, String repositoryFolderId, ConnectApi.ContentHubItemInput file, ConnectApi.BinaryInput fileData) { } + global static ConnectApi.RepositoryFolderItem addRepositoryItem(String communityId, String repositoryId, String repositoryFolderId, ConnectApi.ContentHubItemInput file) { } + global static ConnectApi.RepositoryFolderItem addRepositoryItem(String repositoryId, String repositoryFolderId, ConnectApi.ContentHubItemInput file) { } + global Object clone() { } + global static void deleteRepositoryFile(String communityId, String repositoryId, String repositoryFileId) { } + global static void deleteRepositoryFile(String repositoryId, String repositoryFileId) { } + global static void deleteRepositoryFolder(String communityId, String repositoryId, String repositoryFolderId) { } + global static void deleteRepositoryFolder(String repositoryId, String repositoryFolderId) { } + global static ConnectApi.ContentHubAllowedItemTypeCollection getAllowedItemTypes(String communityId, String repositoryId, String repositoryFolderId, ConnectApi.ContentHubItemType filter) { } + global static ConnectApi.ContentHubAllowedItemTypeCollection getAllowedItemTypes(String repositoryId, String repositoryFolderId, ConnectApi.ContentHubItemType filter) { } + global static ConnectApi.ContentHubAllowedItemTypeCollection getAllowedItemTypes(String communityId, String repositoryId, String repositoryFolderId) { } + global static ConnectApi.ContentHubAllowedItemTypeCollection getAllowedItemTypes(String repositoryId, String repositoryFolderId) { } + global static ConnectApi.FilePreview getFilePreview(String communityId, String repositoryId, String repositoryFileId, ConnectApi.FilePreviewFormat formatType, Integer startPageNumber, Integer endPageNumber) { } + global static ConnectApi.FilePreview getFilePreview(String repositoryId, String repositoryFileId, ConnectApi.FilePreviewFormat formatType, Integer startPageNumber, Integer endPageNumber) { } + global static ConnectApi.FilePreview getFilePreview(String communityId, String repositoryId, String repositoryFileId, ConnectApi.FilePreviewFormat formatType) { } + global static ConnectApi.FilePreview getFilePreview(String repositoryId, String repositoryFileId, ConnectApi.FilePreviewFormat formatType) { } + global static ConnectApi.ContentHubItemTypeDetail getItemType(String communityId, String repositoryId, String repositoryItemTypeId) { } + global static ConnectApi.ContentHubItemTypeDetail getItemType(String repositoryId, String repositoryItemTypeId) { } + global static ConnectApi.FilePreviewCollection getPreviews(String communityId, String repositoryId, String repositoryFileId) { } + global static ConnectApi.FilePreviewCollection getPreviews(String repositoryId, String repositoryFileId) { } + global static ConnectApi.ContentHubRepositoryCollection getRepositories(String communityId, Integer pageParam, Integer pageSize) { } + global static ConnectApi.ContentHubRepositoryCollection getRepositories(Integer pageParam, Integer pageSize) { } + global static ConnectApi.ContentHubRepositoryCollection getRepositories(String communityId) { } + global static ConnectApi.ContentHubRepositoryCollection getRepositories() { } + global static ConnectApi.ContentHubRepository getRepository(String communityId, String repositoryId) { } + global static ConnectApi.ContentHubRepository getRepository(String repositoryId) { } + global static ConnectApi.RepositoryFileDetail getRepositoryFile(String communityId, String repositoryId, String repositoryFileId, Boolean includeExternalFilePermissionsInfo) { } + global static ConnectApi.RepositoryFileDetail getRepositoryFile(String repositoryId, String repositoryFileId, Boolean includeExternalFilePermissionsInfo) { } + global static ConnectApi.RepositoryFileDetail getRepositoryFile(String communityId, String repositoryId, String repositoryFileId) { } + global static ConnectApi.RepositoryFileDetail getRepositoryFile(String repositoryId, String repositoryFileId) { } + global static ConnectApi.RepositoryFolderDetail getRepositoryFolder(String communityId, String repositoryId, String repositoryFolderId) { } + global static ConnectApi.RepositoryFolderDetail getRepositoryFolder(String repositoryId, String repositoryFolderId) { } + global static ConnectApi.RepositoryFolderItemsCollection getRepositoryFolderItems(String communityId, String repositoryId, String repositoryFolderId, Integer pageParam, Integer pageSize) { } + global static ConnectApi.RepositoryFolderItemsCollection getRepositoryFolderItems(String repositoryId, String repositoryFolderId, Integer pageParam, Integer pageSize) { } + global static ConnectApi.RepositoryFolderItemsCollection getRepositoryFolderItems(String communityId, String repositoryId, String repositoryFolderId) { } + global static ConnectApi.RepositoryFolderItemsCollection getRepositoryFolderItems(String repositoryId, String repositoryFolderId) { } + global static void setTestAddRepositoryItem(String communityId, String repositoryId, String repositoryFolderId, ConnectApi.ContentHubItemInput file, ConnectApi.BinaryInput fileData, ConnectApi.RepositoryFolderItem result) { } + global static void setTestAddRepositoryItem(String repositoryId, String repositoryFolderId, ConnectApi.ContentHubItemInput file, ConnectApi.BinaryInput fileData, ConnectApi.RepositoryFolderItem result) { } + global static void setTestAddRepositoryItem(String communityId, String repositoryId, String repositoryFolderId, ConnectApi.ContentHubItemInput file, ConnectApi.RepositoryFolderItem result) { } + global static void setTestAddRepositoryItem(String repositoryId, String repositoryFolderId, ConnectApi.ContentHubItemInput file, ConnectApi.RepositoryFolderItem result) { } + global static void setTestGetAllowedItemTypes(String communityId, String repositoryId, String repositoryFolderId, ConnectApi.ContentHubItemType filter, ConnectApi.ContentHubAllowedItemTypeCollection result) { } + global static void setTestGetAllowedItemTypes(String repositoryId, String repositoryFolderId, ConnectApi.ContentHubItemType filter, ConnectApi.ContentHubAllowedItemTypeCollection result) { } + global static void setTestGetAllowedItemTypes(String communityId, String repositoryId, String repositoryFolderId, ConnectApi.ContentHubAllowedItemTypeCollection result) { } + global static void setTestGetAllowedItemTypes(String repositoryId, String repositoryFolderId, ConnectApi.ContentHubAllowedItemTypeCollection result) { } + global static void setTestGetFilePreview(String communityId, String repositoryId, String repositoryFileId, ConnectApi.FilePreviewFormat formatType, Integer startPageNumber, Integer endPageNumber, ConnectApi.FilePreview result) { } + global static void setTestGetFilePreview(String repositoryId, String repositoryFileId, ConnectApi.FilePreviewFormat formatType, Integer startPageNumber, Integer endPageNumber, ConnectApi.FilePreview result) { } + global static void setTestGetFilePreview(String communityId, String repositoryId, String repositoryFileId, ConnectApi.FilePreviewFormat formatType, ConnectApi.FilePreview result) { } + global static void setTestGetFilePreview(String repositoryId, String repositoryFileId, ConnectApi.FilePreviewFormat formatType, ConnectApi.FilePreview result) { } + global static void setTestGetItemType(String communityId, String repositoryId, String repositoryItemTypeId, ConnectApi.ContentHubItemTypeDetail result) { } + global static void setTestGetItemType(String repositoryId, String repositoryItemTypeId, ConnectApi.ContentHubItemTypeDetail result) { } + global static void setTestGetPreviews(String communityId, String repositoryId, String repositoryFileId, ConnectApi.FilePreviewCollection result) { } + global static void setTestGetPreviews(String repositoryId, String repositoryFileId, ConnectApi.FilePreviewCollection result) { } + global static void setTestGetRepositories(String communityId, Integer pageParam, Integer pageSize, ConnectApi.ContentHubRepositoryCollection result) { } + global static void setTestGetRepositories(Integer pageParam, Integer pageSize, ConnectApi.ContentHubRepositoryCollection result) { } + global static void setTestGetRepositories(String communityId, ConnectApi.ContentHubRepositoryCollection result) { } + global static void setTestGetRepositories(ConnectApi.ContentHubRepositoryCollection result) { } + global static void setTestGetRepository(String communityId, String repositoryId, ConnectApi.ContentHubRepository result) { } + global static void setTestGetRepository(String repositoryId, ConnectApi.ContentHubRepository result) { } + global static void setTestGetRepositoryFile(String communityId, String repositoryId, String repositoryFileId, Boolean includeExternalFilePermissionsInfo, ConnectApi.RepositoryFileDetail result) { } + global static void setTestGetRepositoryFile(String repositoryId, String repositoryFileId, Boolean includeExternalFilePermissionsInfo, ConnectApi.RepositoryFileDetail result) { } + global static void setTestGetRepositoryFile(String communityId, String repositoryId, String repositoryFileId, ConnectApi.RepositoryFileDetail result) { } + global static void setTestGetRepositoryFile(String repositoryId, String repositoryFileId, ConnectApi.RepositoryFileDetail result) { } + global static void setTestGetRepositoryFolder(String communityId, String repositoryId, String repositoryFolderId, ConnectApi.RepositoryFolderDetail result) { } + global static void setTestGetRepositoryFolder(String repositoryId, String repositoryFolderId, ConnectApi.RepositoryFolderDetail result) { } + global static void setTestGetRepositoryFolderItems(String communityId, String repositoryId, String repositoryFolderId, Integer pageParam, Integer pageSize, ConnectApi.RepositoryFolderItemsCollection result) { } + global static void setTestGetRepositoryFolderItems(String repositoryId, String repositoryFolderId, Integer pageParam, Integer pageSize, ConnectApi.RepositoryFolderItemsCollection result) { } + global static void setTestGetRepositoryFolderItems(String communityId, String repositoryId, String repositoryFolderId, ConnectApi.RepositoryFolderItemsCollection result) { } + global static void setTestGetRepositoryFolderItems(String repositoryId, String repositoryFolderId, ConnectApi.RepositoryFolderItemsCollection result) { } + global static void setTestUpdateRepositoryFile(String communityId, String repositoryId, String repositoryFileId, ConnectApi.ContentHubItemInput file, ConnectApi.BinaryInput fileData, ConnectApi.RepositoryFileDetail result) { } + global static void setTestUpdateRepositoryFile(String repositoryId, String repositoryFileId, ConnectApi.ContentHubItemInput file, ConnectApi.BinaryInput fileData, ConnectApi.RepositoryFileDetail result) { } + global static void setTestUpdateRepositoryFile(String communityId, String repositoryId, String repositoryFileId, ConnectApi.ContentHubItemInput file, ConnectApi.RepositoryFileDetail result) { } + global static void setTestUpdateRepositoryFile(String repositoryId, String repositoryFileId, ConnectApi.ContentHubItemInput file, ConnectApi.RepositoryFileDetail result) { } + global static ConnectApi.RepositoryFileDetail updateRepositoryFile(String communityId, String repositoryId, String repositoryFileId, ConnectApi.ContentHubItemInput file, ConnectApi.BinaryInput fileData) { } + global static ConnectApi.RepositoryFileDetail updateRepositoryFile(String repositoryId, String repositoryFileId, ConnectApi.ContentHubItemInput file, ConnectApi.BinaryInput fileData) { } + global static ConnectApi.RepositoryFileDetail updateRepositoryFile(String communityId, String repositoryId, String repositoryFileId, ConnectApi.ContentHubItemInput file) { } + global static ConnectApi.RepositoryFileDetail updateRepositoryFile(String repositoryId, String repositoryFileId, ConnectApi.ContentHubItemInput file) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubAllowedItemTypeCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubAllowedItemTypeCollection.cls new file mode 100644 index 0000000..a80d1ac --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubAllowedItemTypeCollection.cls @@ -0,0 +1,10 @@ +global class ContentHubAllowedItemTypeCollection { + global List allowedItemTypes; + global ContentHubAllowedItemTypeCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubAuthenticationProtocol.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubAuthenticationProtocol.cls new file mode 100644 index 0000000..ce61bd3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubAuthenticationProtocol.cls @@ -0,0 +1,5 @@ +global enum ContentHubAuthenticationProtocol { +NOAUTHENTICATION, +OAUTH, +PASSWORD +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubDirectoryEntryType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubDirectoryEntryType.cls new file mode 100644 index 0000000..a7717f8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubDirectoryEntryType.cls @@ -0,0 +1,4 @@ +global enum ContentHubDirectoryEntryType { +GROUPENTRY, +USERENTRY +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubExternalItemSharingType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubExternalItemSharingType.cls new file mode 100644 index 0000000..6fa8d44 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubExternalItemSharingType.cls @@ -0,0 +1,5 @@ +global enum ContentHubExternalItemSharingType { +DOMAINSHARING, +PRIVATESHARING, +PUBLICSHARING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubFieldDefinition.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubFieldDefinition.cls new file mode 100644 index 0000000..39ee428 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubFieldDefinition.cls @@ -0,0 +1,14 @@ +global class ContentHubFieldDefinition { + global String displayName; + global Boolean isMandatory; + global Integer maxLength; + global String name; + global ConnectApi.ContentHubVariableType type; + global ContentHubFieldDefinition() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubFieldValueInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubFieldValueInput.cls new file mode 100644 index 0000000..63c24d4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubFieldValueInput.cls @@ -0,0 +1,10 @@ +global class ContentHubFieldValueInput { + global String name; + global String value; + global ContentHubFieldValueInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubGroupType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubGroupType.cls new file mode 100644 index 0000000..bf88aac --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubGroupType.cls @@ -0,0 +1,5 @@ +global enum ContentHubGroupType { +EVERYBODY, +EVERYBODYINDOMAIN, +UNKNOWN +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubItemInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubItemInput.cls new file mode 100644 index 0000000..d452bf0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubItemInput.cls @@ -0,0 +1,10 @@ +global class ContentHubItemInput { + global List fields; + global String itemTypeId; + global ContentHubItemInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubItemType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubItemType.cls new file mode 100644 index 0000000..6f0e099 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubItemType.cls @@ -0,0 +1,5 @@ +global enum ContentHubItemType { +ANY, +FILESONLY, +FOLDERSONLY +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubItemTypeDetail.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubItemTypeDetail.cls new file mode 100644 index 0000000..74f8f80 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubItemTypeDetail.cls @@ -0,0 +1,10 @@ +global class ContentHubItemTypeDetail { + global List fields; + global ContentHubItemTypeDetail() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubItemTypeSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubItemTypeSummary.cls new file mode 100644 index 0000000..4f389c8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubItemTypeSummary.cls @@ -0,0 +1,9 @@ +global class ContentHubItemTypeSummary { + global ContentHubItemTypeSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubPermission.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubPermission.cls new file mode 100644 index 0000000..d2e1b6f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubPermission.cls @@ -0,0 +1,12 @@ +global class ContentHubPermission { + global ConnectApi.AbstractDirectoryEntrySummary directoryEntry; + global Boolean isUpdatable; + global List rights; + global ContentHubPermission() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubPermissionCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubPermissionCollection.cls new file mode 100644 index 0000000..22f1ac8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubPermissionCollection.cls @@ -0,0 +1,10 @@ +global class ContentHubPermissionCollection { + global List permissions; + global ContentHubPermissionCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubPermissionType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubPermissionType.cls new file mode 100644 index 0000000..54811ec --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubPermissionType.cls @@ -0,0 +1,11 @@ +global class ContentHubPermissionType { + global String id; + global String label; + global ContentHubPermissionType() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubProviderType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubProviderType.cls new file mode 100644 index 0000000..f7fe7ac --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubProviderType.cls @@ -0,0 +1,11 @@ +global class ContentHubProviderType { + global String label; + global String type; + global ContentHubProviderType() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubRepository.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubRepository.cls new file mode 100644 index 0000000..9fb1975 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubRepository.cls @@ -0,0 +1,14 @@ +global class ContentHubRepository { + global ConnectApi.ContentHubRepositoryAuthentication authentication; + global ConnectApi.ContentHubRepositoryFeatures features; + global String label; + global ConnectApi.ContentHubProviderType providerType; + global String rootFolderItemsUrl; + global ContentHubRepository() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubRepositoryAuthentication.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubRepositoryAuthentication.cls new file mode 100644 index 0000000..ce2c1fc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubRepositoryAuthentication.cls @@ -0,0 +1,12 @@ +global class ContentHubRepositoryAuthentication { + global String authFlowUrl; + global ConnectApi.ContentHubAuthenticationProtocol authProtocol; + global Boolean userHasAuthSettings; + global ContentHubRepositoryAuthentication() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubRepositoryCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubRepositoryCollection.cls new file mode 100644 index 0000000..4e1424b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubRepositoryCollection.cls @@ -0,0 +1,13 @@ +global class ContentHubRepositoryCollection { + global String currentPageUrl; + global String nextPageUrl; + global String previousPageUrl; + global List repositories; + global ContentHubRepositoryCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubRepositoryFeatures.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubRepositoryFeatures.cls new file mode 100644 index 0000000..5988533 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubRepositoryFeatures.cls @@ -0,0 +1,11 @@ +global class ContentHubRepositoryFeatures { + global Boolean canBrowse; + global Boolean canSearch; + global ContentHubRepositoryFeatures() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubStreamSupport.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubStreamSupport.cls new file mode 100644 index 0000000..8b05e92 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubStreamSupport.cls @@ -0,0 +1,5 @@ +global enum ContentHubStreamSupport { +CONTENTSTREAMALLOWED, +CONTENTSTREAMNOTALLOWED, +CONTENTSTREAMREQUIRED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubVariableType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubVariableType.cls new file mode 100644 index 0000000..af65c86 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentHubVariableType.cls @@ -0,0 +1,11 @@ +global enum ContentHubVariableType { +BOOLEANTYPE, +DATETIMETYPE, +DECIMALTYPE, +HTMLTYPE, +IDTYPE, +INTEGERTYPE, +STRINGTYPE, +URITYPE, +XMLTYPE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentImageFile.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentImageFile.cls new file mode 100644 index 0000000..9840132 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentImageFile.cls @@ -0,0 +1,11 @@ +global class ContentImageFile { + global ConnectApi.ContentImageFileDetails masterDetail; + global List renditionDimensions; + global ContentImageFile() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentImageFileDetails.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentImageFileDetails.cls new file mode 100644 index 0000000..83ce323 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContentImageFileDetails.cls @@ -0,0 +1,13 @@ +global class ContentImageFileDetails { + global Integer height; + global String imageFormat; + global String orientation; + global Integer width; + global ContentImageFileDetails() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContextSupertype.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContextSupertype.cls new file mode 100644 index 0000000..13de1c0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContextSupertype.cls @@ -0,0 +1,5 @@ +global enum ContextSupertype { +ANALYTICS, +COMMANDER, +SOBJECT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContractInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContractInputRepresentation.cls new file mode 100644 index 0000000..e55fadc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContractInputRepresentation.cls @@ -0,0 +1,12 @@ +global class ContractInputRepresentation { + global Boolean isAutoDocgenRequired; + global String recordTypeName; + global String sourceObjectId; + global String templateName; + global ContractInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContractOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContractOutputRepresentation.cls new file mode 100644 index 0000000..fa42e69 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ContractOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class ContractOutputRepresentation { + global List data; + global ContractOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConversationApplicationDefinition.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConversationApplicationDefinition.cls new file mode 100644 index 0000000..818f0e1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConversationApplicationDefinition.cls @@ -0,0 +1,3 @@ +global class ConversationApplicationDefinition { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConversationApplicationDefinitionDetailRespresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConversationApplicationDefinitionDetailRespresentation.cls new file mode 100644 index 0000000..55bd256 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConversationApplicationDefinitionDetailRespresentation.cls @@ -0,0 +1,15 @@ +global class ConversationApplicationDefinitionDetailRespresentation { + global ConnectApi.BotInfoRepresentation botInfo; + global String errorMessage; + global ConnectApi.ConversationApplicationIntegrationType integrationApplication; + global String integrationName; + global Boolean isSuccess; + global String runtimeUrl; + global ConversationApplicationDefinitionDetailRespresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConversationApplicationIntegrationType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConversationApplicationIntegrationType.cls new file mode 100644 index 0000000..453d4ac --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConversationApplicationIntegrationType.cls @@ -0,0 +1,4 @@ +global enum ConversationApplicationIntegrationType { +API, +SLACK +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConversationReasonChannelType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConversationReasonChannelType.cls new file mode 100644 index 0000000..2a17f20 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConversationReasonChannelType.cls @@ -0,0 +1,5 @@ +global enum ConversationReasonChannelType { +EMAIL, +LIVECHATAGENT, +LIVECHATBOT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConversationRuntimeProxyMessageType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConversationRuntimeProxyMessageType.cls new file mode 100644 index 0000000..286d75f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConversationRuntimeProxyMessageType.cls @@ -0,0 +1,7 @@ +global enum ConversationRuntimeProxyMessageType { +CHOICES, +ESCALATE, +MESSAGEDEFINITION, +SESSIONENDED, +TEXT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConversationRuntimeProxyMessageWidget.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConversationRuntimeProxyMessageWidget.cls new file mode 100644 index 0000000..8b3ea53 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConversationRuntimeProxyMessageWidget.cls @@ -0,0 +1,4 @@ +global enum ConversationRuntimeProxyMessageWidget { +BUTTONS, +MENU +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConvertNegativeInvoiceLinesInputRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConvertNegativeInvoiceLinesInputRequest.cls new file mode 100644 index 0000000..fe572ec --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConvertNegativeInvoiceLinesInputRequest.cls @@ -0,0 +1,12 @@ +global class ConvertNegativeInvoiceLinesInputRequest { + global String description; + global String effectiveDate; + global String invoiceId; + global List invoiceLines; + global ConvertNegativeInvoiceLinesInputRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConvertNegativeInvoiceLinesResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConvertNegativeInvoiceLinesResult.cls new file mode 100644 index 0000000..1af4543 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ConvertNegativeInvoiceLinesResult.cls @@ -0,0 +1,12 @@ +global class ConvertNegativeInvoiceLinesResult { + global List errors; + global String id; + global Boolean success; + global ConvertNegativeInvoiceLinesResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CorporateMemberInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CorporateMemberInput.cls new file mode 100644 index 0000000..f636925 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CorporateMemberInput.cls @@ -0,0 +1,22 @@ +global class CorporateMemberInput { + global Map additionalMemberFieldValues; + global ConnectApi.MemberAccountInput associatedAccountDetails; + global Boolean canReceivePartnerPromotions; + global Boolean canReceivePromotions; + global Boolean createTransactionJournals; + global ConnectApi.EnrollmentChannelResource enrollmentChannel; + global Datetime enrollmentDate; + global String memberStatus; + global Datetime membershipEndDate; + global String membershipNumber; + global String referredBy; + global String referredByMemberReferralCode; + global ConnectApi.StatementFrequencyResource transactionJournalStatementFrequency; + global ConnectApi.StatementMethodResource transactionJournalStatementMethod; + global CorporateMemberInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CorporateMemberOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CorporateMemberOutput.cls new file mode 100644 index 0000000..6b5990d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CorporateMemberOutput.cls @@ -0,0 +1,14 @@ +global class CorporateMemberOutput { + global String accountId; + global String loyaltyProgramMemberId; + global String loyaltyProgramName; + global String membershipNumber; + global List transactionJournals; + global CorporateMemberOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CouponCodeRedemptionCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CouponCodeRedemptionCollection.cls new file mode 100644 index 0000000..3f5dc68 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CouponCodeRedemptionCollection.cls @@ -0,0 +1,10 @@ +global class CouponCodeRedemptionCollection { + global List couponCodeRedemptionResults; + global CouponCodeRedemptionCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CouponCodeRedemptionInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CouponCodeRedemptionInput.cls new file mode 100644 index 0000000..5a111e4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CouponCodeRedemptionInput.cls @@ -0,0 +1,11 @@ +global class CouponCodeRedemptionInput { + global List couponCodes; + global String effectiveAccountId; + global String transactionId; + global CouponCodeRedemptionInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CouponCodeRedemptionResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CouponCodeRedemptionResult.cls new file mode 100644 index 0000000..19638c8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CouponCodeRedemptionResult.cls @@ -0,0 +1,14 @@ +global class CouponCodeRedemptionResult { + global Integer availableRedemptions; + global String couponCode; + global String errorMsg; + global Boolean isSuccess; + global Integer redemptionLimit; + global CouponCodeRedemptionResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateCredentialAction.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateCredentialAction.cls new file mode 100644 index 0000000..cceab8b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateCredentialAction.cls @@ -0,0 +1,3 @@ +global enum CreateCredentialAction { +REFRESH +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateCreditMemoInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateCreditMemoInputRepresentation.cls new file mode 100644 index 0000000..ef28cfd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateCreditMemoInputRepresentation.cls @@ -0,0 +1,9 @@ +global class CreateCreditMemoInputRepresentation { + global List changeOrderIds; + global CreateCreditMemoInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateCreditMemoOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateCreditMemoOutputRepresentation.cls new file mode 100644 index 0000000..e383f0a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateCreditMemoOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class CreateCreditMemoOutputRepresentation { + global String creditMemoId; + global CreateCreditMemoOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateInvoiceFromChangeOrdersInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateInvoiceFromChangeOrdersInputRepresentation.cls new file mode 100644 index 0000000..0d00152 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateInvoiceFromChangeOrdersInputRepresentation.cls @@ -0,0 +1,10 @@ +global class CreateInvoiceFromChangeOrdersInputRepresentation { + global List changeOrderIds; + global String orderSummaryId; + global CreateInvoiceFromChangeOrdersInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateMultipleInvoicesFromChangeOrdersInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateMultipleInvoicesFromChangeOrdersInputRepresentation.cls new file mode 100644 index 0000000..a8de595 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateMultipleInvoicesFromChangeOrdersInputRepresentation.cls @@ -0,0 +1,9 @@ +global class CreateMultipleInvoicesFromChangeOrdersInputRepresentation { + global List invoicesFromChangeOrders; + global CreateMultipleInvoicesFromChangeOrdersInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateMultipleInvoicesFromChangeOrdersOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateMultipleInvoicesFromChangeOrdersOutputRepresentation.cls new file mode 100644 index 0000000..72d6445 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateMultipleInvoicesFromChangeOrdersOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class CreateMultipleInvoicesFromChangeOrdersOutputRepresentation { + global List invoices; + global CreateMultipleInvoicesFromChangeOrdersOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateOrderPaymentSummaryInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateOrderPaymentSummaryInputRepresentation.cls new file mode 100644 index 0000000..d707c3c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateOrderPaymentSummaryInputRepresentation.cls @@ -0,0 +1,11 @@ +global class CreateOrderPaymentSummaryInputRepresentation { + global String orderSummaryId; + global String paymentAuthorizationId; + global List paymentIds; + global CreateOrderPaymentSummaryInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateOrderPaymentSummaryOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateOrderPaymentSummaryOutputRepresentation.cls new file mode 100644 index 0000000..3561ea5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateOrderPaymentSummaryOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class CreateOrderPaymentSummaryOutputRepresentation { + global String orderPaymentSummaryId; + global CreateOrderPaymentSummaryOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreatePatientResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreatePatientResult.cls new file mode 100644 index 0000000..b2f85d0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreatePatientResult.cls @@ -0,0 +1,12 @@ +global class CreatePatientResult { + global ConnectApi.ErrorRepresentation error; + global Boolean isSuccess; + global String patientAccountId; + global CreatePatientResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateRevenueElementRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateRevenueElementRequest.cls new file mode 100644 index 0000000..fae25ed --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateRevenueElementRequest.cls @@ -0,0 +1,9 @@ +global class CreateRevenueElementRequest { + global List revenueElementInputs; + global CreateRevenueElementRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateServiceAppointmentInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateServiceAppointmentInput.cls new file mode 100644 index 0000000..0aad7cf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateServiceAppointmentInput.cls @@ -0,0 +1,8 @@ +global class CreateServiceAppointmentInput { + global CreateServiceAppointmentInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateServiceAppointmentResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateServiceAppointmentResult.cls new file mode 100644 index 0000000..c9b050e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreateServiceAppointmentResult.cls @@ -0,0 +1,12 @@ +global class CreateServiceAppointmentResult { + global List assignedResourceIds; + global String parentRecordId; + global String serviceAppointmentId; + global CreateServiceAppointmentResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Credential.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Credential.cls new file mode 100644 index 0000000..5967bb0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Credential.cls @@ -0,0 +1,16 @@ +global class Credential { + global ConnectApi.CredentialAuthenticationProtocol authenticationProtocol; + global ConnectApi.CredentialAuthenticationProtocolVariant authenticationProtocolVariant; + global ConnectApi.CredentialAuthenticationStatus authenticationStatus; + global Map credentials; + global String externalCredential; + global String principalName; + global ConnectApi.CredentialPrincipalType principalType; + global Credential() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CredentialAuthenticationProtocol.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CredentialAuthenticationProtocol.cls new file mode 100644 index 0000000..a375280 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CredentialAuthenticationProtocol.cls @@ -0,0 +1,5 @@ +global enum CredentialAuthenticationProtocol { +AWSSV4, +CUSTOM, +OAUTH +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CredentialAuthenticationProtocolVariant.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CredentialAuthenticationProtocolVariant.cls new file mode 100644 index 0000000..6345f49 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CredentialAuthenticationProtocolVariant.cls @@ -0,0 +1,5 @@ +global enum CredentialAuthenticationProtocolVariant { +AWSSV4_STS, +JWTBEARER, +ROLESANYWHERE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CredentialAuthenticationStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CredentialAuthenticationStatus.cls new file mode 100644 index 0000000..0076635 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CredentialAuthenticationStatus.cls @@ -0,0 +1,5 @@ +global enum CredentialAuthenticationStatus { +CONFIGURED, +NOTCONFIGURED, +UNKNOWN +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CredentialCustomHeader.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CredentialCustomHeader.cls new file mode 100644 index 0000000..572a057 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CredentialCustomHeader.cls @@ -0,0 +1,13 @@ +global class CredentialCustomHeader { + global String headerName; + global String headerValue; + global String id; + global Integer sequenceNumber; + global CredentialCustomHeader() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CredentialCustomHeaderInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CredentialCustomHeaderInput.cls new file mode 100644 index 0000000..ea5e52e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CredentialCustomHeaderInput.cls @@ -0,0 +1,12 @@ +global class CredentialCustomHeaderInput { + global String headerName; + global String headerValue; + global String id; + global Integer sequenceNumber; + global CredentialCustomHeaderInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CredentialInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CredentialInput.cls new file mode 100644 index 0000000..20e28a0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CredentialInput.cls @@ -0,0 +1,14 @@ +global class CredentialInput { + global ConnectApi.CredentialAuthenticationProtocol authenticationProtocol; + global ConnectApi.CredentialAuthenticationProtocolVariant authenticationProtocolVariant; + global Map credentials; + global String externalCredential; + global String principalName; + global ConnectApi.CredentialPrincipalType principalType; + global CredentialInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CredentialPrincipalType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CredentialPrincipalType.cls new file mode 100644 index 0000000..d488bfa --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CredentialPrincipalType.cls @@ -0,0 +1,5 @@ +global enum CredentialPrincipalType { +AWSSTSPRINCIPAL, +NAMEDPRINCIPAL, +PERUSERPRINCIPAL +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CredentialValue.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CredentialValue.cls new file mode 100644 index 0000000..ff4c720 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CredentialValue.cls @@ -0,0 +1,12 @@ +global class CredentialValue { + global Boolean encrypted; + global Integer revision; + global String value; + global CredentialValue() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CredentialValueInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CredentialValueInput.cls new file mode 100644 index 0000000..90e7663 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CredentialValueInput.cls @@ -0,0 +1,11 @@ +global class CredentialValueInput { + global Boolean encrypted; + global Integer revision; + global String value; + global CredentialValueInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditInvoiceInputRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditInvoiceInputRequest.cls new file mode 100644 index 0000000..0c14d8d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditInvoiceInputRequest.cls @@ -0,0 +1,15 @@ +global class CreditInvoiceInputRequest { + global String description; + global String effectiveDate; + global String invoiceId; + global List invoiceLines; + global String taxEffectiveDate; + global ConnectApi.TaxStrategyEnum taxStrategy; + global ConnectApi.CreditMemoTypeEnum type; + global CreditInvoiceInputRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditInvoiceInvoiceLine.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditInvoiceInvoiceLine.cls new file mode 100644 index 0000000..89774eb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditInvoiceInvoiceLine.cls @@ -0,0 +1,15 @@ +global class CreditInvoiceInvoiceLine { + global ConnectApi.CreditMemoAddressesInputRequest addresses; + global Double amountToCredit; + global String invoiceLineId; + global Boolean isTaxOnlyCredit; + global String taxEffectiveDate; + global ConnectApi.TaxStrategyEnum taxStrategy; + global List taxes; + global CreditInvoiceInvoiceLine() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditInvoiceInvoiceLineTax.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditInvoiceInvoiceLineTax.cls new file mode 100644 index 0000000..f235371 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditInvoiceInvoiceLineTax.cls @@ -0,0 +1,12 @@ +global class CreditInvoiceInvoiceLineTax { + global Double taxAmount; + global String taxCode; + global String taxName; + global Double taxRate; + global CreditInvoiceInvoiceLineTax() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditMemoAddressesInputRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditMemoAddressesInputRequest.cls new file mode 100644 index 0000000..27d3c98 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditMemoAddressesInputRequest.cls @@ -0,0 +1,10 @@ +global class CreditMemoAddressesInputRequest { + global ConnectApi.RevenueAddressInputRepresentation billingAddress; + global ConnectApi.RevenueAddressInputRepresentation shippingAddress; + global CreditMemoAddressesInputRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditMemoApply.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditMemoApply.cls new file mode 100644 index 0000000..096a22f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditMemoApply.cls @@ -0,0 +1,6 @@ +global class CreditMemoApply { + global static ConnectApi.ApplyCreditResults applyCreditMemos(ConnectApi.CreditMemoApplyInputRequest CreditMemoApplyInput, String creditMemoId) { } + global Object clone() { } + global static ConnectApi.UnapplyCreditResult unapplyCreditMemos(ConnectApi.CreditMemoUnapplyInputRequest CreditMemoUnapplyInput, String creditMemoInvApplicationId) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditMemoApplyInputRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditMemoApplyInputRequest.cls new file mode 100644 index 0000000..4c4d49c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditMemoApplyInputRequest.cls @@ -0,0 +1,10 @@ +global class CreditMemoApplyInputRequest { + global List applications; + global String creditMemoId; + global CreditMemoApplyInputRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditMemoBaseInputRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditMemoBaseInputRequest.cls new file mode 100644 index 0000000..5f61622 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditMemoBaseInputRequest.cls @@ -0,0 +1,18 @@ +global class CreditMemoBaseInputRequest { + global ConnectApi.CreditMemoAddressesInputRequest addresses; + global String description; + global String endDate; + global Boolean isTaxOnlyCredit; + global String productId; + global String productName; + global String startDate; + global String taxEffectiveDate; + global ConnectApi.StandaloneTaxStrategyEnum taxStrategy; + global List taxes; + global String treatmentId; + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditMemoStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditMemoStatus.cls new file mode 100644 index 0000000..22c3e50 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditMemoStatus.cls @@ -0,0 +1,7 @@ +global enum CreditMemoStatus { +CANCELED, +DRAFT, +ERROR, +PENDING, +POSTED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditMemoTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditMemoTypeEnum.cls new file mode 100644 index 0000000..51f00e5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditMemoTypeEnum.cls @@ -0,0 +1,3 @@ +global enum CreditMemoTypeEnum { +POSTED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditMemoUnapplyInputRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditMemoUnapplyInputRequest.cls new file mode 100644 index 0000000..cfa7d36 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CreditMemoUnapplyInputRequest.cls @@ -0,0 +1,11 @@ +global class CreditMemoUnapplyInputRequest { + global String creditMemoInvApplicationId; + global String description; + global String effectiveDate; + global CreditMemoUnapplyInputRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CurrencyRecordField.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CurrencyRecordField.cls new file mode 100644 index 0000000..b6d6d22 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CurrencyRecordField.cls @@ -0,0 +1,9 @@ +global class CurrencyRecordField { + global CurrencyRecordField() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CustomListAudienceCriteria.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CustomListAudienceCriteria.cls new file mode 100644 index 0000000..de78fca --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CustomListAudienceCriteria.cls @@ -0,0 +1,11 @@ +global class CustomListAudienceCriteria { + global Integer memberCount; + global ConnectApi.UserReferencePage members; + global CustomListAudienceCriteria() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CustomListAudienceCriteriaInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CustomListAudienceCriteriaInput.cls new file mode 100644 index 0000000..d53ca30 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CustomListAudienceCriteriaInput.cls @@ -0,0 +1,10 @@ +global class CustomListAudienceCriteriaInput { + global ConnectApi.RecommendationAudienceMemberOperationType memberOperationType; + global List members; + global CustomListAudienceCriteriaInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CycleDetectionInputRequestRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CycleDetectionInputRequestRepresentation.cls new file mode 100644 index 0000000..1e9ac36 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CycleDetectionInputRequestRepresentation.cls @@ -0,0 +1,12 @@ +global class CycleDetectionInputRequestRepresentation { + global String associationType; + global String currentAccountRecordId; + global String namespace; + global String relatedAccountRecordId; + global CycleDetectionInputRequestRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CycleDetectionOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CycleDetectionOutputRepresentation.cls new file mode 100644 index 0000000..cfb3f5d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/CycleDetectionOutputRepresentation.cls @@ -0,0 +1,12 @@ +global class CycleDetectionOutputRepresentation { + global Boolean cycleDetected; + global String errorCode; + global String errorMessage; + global CycleDetectionOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DaoSourceObjectType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DaoSourceObjectType.cls new file mode 100644 index 0000000..321e05f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DaoSourceObjectType.cls @@ -0,0 +1,4 @@ +global enum DaoSourceObjectType { +CIO, +DMO +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DashboardComponentAttachment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DashboardComponentAttachment.cls new file mode 100644 index 0000000..6541ef7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DashboardComponentAttachment.cls @@ -0,0 +1,19 @@ +global class DashboardComponentAttachment { + global String componentId; + global String componentName; + global String dashboardBodyText; + global String dashboardId; + global String dashboardName; + global String fullSizeImageUrl; + global Datetime lastRefreshDate; + global String lastRefreshDateDisplayText; + global ConnectApi.UserSummary runningUser; + global String thumbnailUrl; + global DashboardComponentAttachment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DashboardComponentSnapshot.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DashboardComponentSnapshot.cls new file mode 100644 index 0000000..dbb00fd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DashboardComponentSnapshot.cls @@ -0,0 +1,19 @@ +global class DashboardComponentSnapshot { + global String componentId; + global String componentName; + global String dashboardBodyText; + global String dashboardId; + global String dashboardName; + global String fullSizeImageUrl; + global Datetime lastRefreshDate; + global String lastRefreshDateDisplayText; + global ConnectApi.UserSummary runningUser; + global String thumbnailUrl; + global DashboardComponentSnapshot() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DashboardComponentSnapshotCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DashboardComponentSnapshotCapability.cls new file mode 100644 index 0000000..33bcda6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DashboardComponentSnapshotCapability.cls @@ -0,0 +1,10 @@ +global class DashboardComponentSnapshotCapability { + global ConnectApi.DashboardComponentSnapshot dashboardComponentSnapshot; + global DashboardComponentSnapshotCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataActionStatusEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataActionStatusEnum.cls new file mode 100644 index 0000000..39f1cf8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataActionStatusEnum.cls @@ -0,0 +1,6 @@ +global enum DataActionStatusEnum { +ACTIVE, +ERROR, +INACTIVE, +PROCESSING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataActionStatusErrorCodeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataActionStatusErrorCodeEnum.cls new file mode 100644 index 0000000..2d7aaf8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataActionStatusErrorCodeEnum.cls @@ -0,0 +1,5 @@ +global enum DataActionStatusErrorCodeEnum { +CREATEFAILED, +DELETEFAILED, +PROCESSINGFAILED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataActionTargetStatusEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataActionTargetStatusEnum.cls new file mode 100644 index 0000000..3cc8bfa --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataActionTargetStatusEnum.cls @@ -0,0 +1,6 @@ +global enum DataActionTargetStatusEnum { +ACTIVE, +ERROR, +INACTIVE, +PROCESSING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataActionTargetStatusErrorCodeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataActionTargetStatusErrorCodeEnum.cls new file mode 100644 index 0000000..218830f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataActionTargetStatusErrorCodeEnum.cls @@ -0,0 +1,5 @@ +global enum DataActionTargetStatusErrorCodeEnum { +CREATEFAILED, +DELETEFAILED, +PROCESSINGFAILED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataActionTargetTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataActionTargetTypeEnum.cls new file mode 100644 index 0000000..6e58aca --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataActionTargetTypeEnum.cls @@ -0,0 +1,5 @@ +global enum DataActionTargetTypeEnum { +CORE, +MARKETINGCLOUD, +WEBHOOK +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataEnrichmentFilterOperationEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataEnrichmentFilterOperationEnum.cls new file mode 100644 index 0000000..2860558 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataEnrichmentFilterOperationEnum.cls @@ -0,0 +1,8 @@ +global enum DataEnrichmentFilterOperationEnum { +EQUALS, +GREATERTHAN, +GREATERTHANEQUALTO, +LESSTHAN, +LESSTHANEQUALTO, +NOTEQUALS +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataEnrichmentStatusEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataEnrichmentStatusEnum.cls new file mode 100644 index 0000000..68facfd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataEnrichmentStatusEnum.cls @@ -0,0 +1,6 @@ +global enum DataEnrichmentStatusEnum { +ACTIVE, +FAILED, +INACTIVE, +PROCESSING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataKitBundleConnectorTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataKitBundleConnectorTypeEnum.cls new file mode 100644 index 0000000..0b0cc4b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataKitBundleConnectorTypeEnum.cls @@ -0,0 +1,4 @@ +global enum DataKitBundleConnectorTypeEnum { +CRM, +S3 +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataKitComponentTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataKitComponentTypeEnum.cls new file mode 100644 index 0000000..6bf58eb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataKitComponentTypeEnum.cls @@ -0,0 +1,4 @@ +global enum DataKitComponentTypeEnum { +CALCULATEDINSIGHT, +DATASTREAMBUNDLE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataProviderSchema.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataProviderSchema.cls new file mode 100644 index 0000000..10618e5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DataProviderSchema.cls @@ -0,0 +1,10 @@ +global class DataProviderSchema { + global Map schema; + global DataProviderSchema() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Datacloud.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Datacloud.cls new file mode 100644 index 0000000..088381d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Datacloud.cls @@ -0,0 +1,3 @@ +global class Datacloud { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudCompanies.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudCompanies.cls new file mode 100644 index 0000000..81c80ed --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudCompanies.cls @@ -0,0 +1,14 @@ +global class DatacloudCompanies { + global List companies; + global String currentPageUrl; + global String nextPageUrl; + global String previousPageUrl; + global Integer total; + global DatacloudCompanies() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudCompany.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudCompany.cls new file mode 100644 index 0000000..4d0b61e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudCompany.cls @@ -0,0 +1,32 @@ +global class DatacloudCompany { + global Integer activeContacts; + global ConnectApi.Address address; + global Double annualRevenue; + global String companyId; + global String description; + global String dunsNumber; + global String industry; + global Boolean isInactive; + global Boolean isOwned; + global String naicsCode; + global String naicsDescription; + global String name; + global Integer numberOfEmployees; + global String ownership; + global List phoneNumbers; + global String sic; + global String sicDescription; + global String site; + global String tickerSymbol; + global String tradeStyle; + global Datetime updatedDate; + global String website; + global String yearStarted; + global DatacloudCompany() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudCompanyIdentifier.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudCompanyIdentifier.cls new file mode 100644 index 0000000..afe24df --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudCompanyIdentifier.cls @@ -0,0 +1,5 @@ +global enum DatacloudCompanyIdentifier { +ACCOUNTID, +DATACLOUDCOMPANYID, +DUNS +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudContact.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudContact.cls new file mode 100644 index 0000000..bb70da8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudContact.cls @@ -0,0 +1,23 @@ +global class DatacloudContact { + global ConnectApi.Address address; + global String companyId; + global String companyName; + global String contactId; + global String department; + global String email; + global String firstName; + global Boolean isInactive; + global Boolean isOwned; + global String lastName; + global String level; + global List phoneNumbers; + global String title; + global Datetime updatedDate; + global DatacloudContact() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudContacts.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudContacts.cls new file mode 100644 index 0000000..3fb835a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudContacts.cls @@ -0,0 +1,14 @@ +global class DatacloudContacts { + global List contacts; + global String currentPageUrl; + global String nextPageUrl; + global String previousPageUrl; + global Integer total; + global DatacloudContacts() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudImport.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudImport.cls new file mode 100644 index 0000000..abb4b18 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudImport.cls @@ -0,0 +1,15 @@ +global class DatacloudImport { + global Integer duplicatesSkippedCount; + global Integer errorCount; + global String errorMessageDescriptionUrl; + global List importStatus; + global Boolean orgAllowsDuplicates; + global Integer successCount; + global DatacloudImport() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudImportStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudImportStatus.cls new file mode 100644 index 0000000..c962cd7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudImportStatus.cls @@ -0,0 +1,11 @@ +global class DatacloudImportStatus { + global String datacloudId; + global ConnectApi.DatacloudImportStatusType importStatus; + global DatacloudImportStatus() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudImportStatusType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudImportStatusType.cls new file mode 100644 index 0000000..e5c8b3a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudImportStatusType.cls @@ -0,0 +1,5 @@ +global enum DatacloudImportStatusType { +DUPLICATE, +ERROR, +SUCCESS +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudInternalCompany.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudInternalCompany.cls new file mode 100644 index 0000000..0d56bc2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudInternalCompany.cls @@ -0,0 +1,15 @@ +global class DatacloudInternalCompany { + global String domesticUltimateDuns; + global ConnectApi.DatacloudCompany externalRepresentation; + global String globalUltimateDuns; + global Boolean isInCrm; + global Boolean isMarketable; + global String parentDuns; + global DatacloudInternalCompany() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudOrder.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudOrder.cls new file mode 100644 index 0000000..85f4bb5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudOrder.cls @@ -0,0 +1,14 @@ +global class DatacloudOrder { + global String entityUrl; + global String id; + global Integer purchaseCount; + global Datetime purchaseDate; + global String url; + global DatacloudOrder() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudOrderInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudOrderInput.cls new file mode 100644 index 0000000..4f7adff --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudOrderInput.cls @@ -0,0 +1,11 @@ +global class DatacloudOrderInput { + global List companyIds; + global List contactIds; + global ConnectApi.DatacloudUserType userType; + global DatacloudOrderInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudPurchaseUsage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudPurchaseUsage.cls new file mode 100644 index 0000000..e5bc6d0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudPurchaseUsage.cls @@ -0,0 +1,13 @@ +global class DatacloudPurchaseUsage { + global Integer listpoolCreditsAvailable; + global Integer listpoolCreditsUsed; + global Integer monthlyCreditsAvailable; + global Integer monthlyCreditsUsed; + global DatacloudPurchaseUsage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudUserType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudUserType.cls new file mode 100644 index 0000000..b8926e5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DatacloudUserType.cls @@ -0,0 +1,4 @@ +global enum DatacloudUserType { +LISTPOOL, +MONTHLY +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DateRecordField.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DateRecordField.cls new file mode 100644 index 0000000..acb2edd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DateRecordField.cls @@ -0,0 +1,10 @@ +global class DateRecordField { + global Datetime dateValue; + global DateRecordField() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTable.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTable.cls new file mode 100644 index 0000000..4490220 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTable.cls @@ -0,0 +1,3 @@ +global class DecisionTable { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableCollectOperator.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableCollectOperator.cls new file mode 100644 index 0000000..83d6be8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableCollectOperator.cls @@ -0,0 +1,7 @@ +global enum DecisionTableCollectOperator { +COUNT, +MAXIMUM, +MINIMUM, +NONE, +SUM +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableCondition.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableCondition.cls new file mode 100644 index 0000000..1ebf0a5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableCondition.cls @@ -0,0 +1,12 @@ +global class DecisionTableCondition { + global String fieldName; + global ConnectApi.DecisionTableOperator operator; + global String sourceObject; + global Object value; + global DecisionTableCondition() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableConditionType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableConditionType.cls new file mode 100644 index 0000000..dc2482b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableConditionType.cls @@ -0,0 +1,5 @@ +global enum DecisionTableConditionType { +ALL, +ANY, +CUSTOM +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableDataType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableDataType.cls new file mode 100644 index 0000000..24dd356 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableDataType.cls @@ -0,0 +1,8 @@ +global enum DecisionTableDataType { +BOOLEAN, +CURRENCY, +DATE, +NUMBER, +PERCENT, +STRING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableDefinitionOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableDefinitionOutput.cls new file mode 100644 index 0000000..9cf59a8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableDefinitionOutput.cls @@ -0,0 +1,24 @@ +global class DecisionTableDefinitionOutput { + global ConnectApi.DecisionTableCollectOperator collectOperator; + global String conditionCriteria; + global ConnectApi.DecisionTableConditionType conditionType; + global ConnectApi.DecisionTableHitPolicy decisionResultPolicy; + global String description; + global String fullName; + global String id; + global List parameters; + global String setupName; + global List sourceCriteria; + global String sourceObject; + global ConnectApi.DecisionTableSourceType sourceType; + global String sourceconditionLogic; + global ConnectApi.DecisionTableStatus status; + global ConnectApi.DecisionTableUsageType usageType; + global DecisionTableDefinitionOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableHitPolicy.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableHitPolicy.cls new file mode 100644 index 0000000..d7a9dd0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableHitPolicy.cls @@ -0,0 +1,9 @@ +global enum DecisionTableHitPolicy { +ANYVALUE, +COLLECTOPERATOR, +FIRSTMATCH, +OUTPUTORDER, +PRIORITY, +RULEORDER, +UNIQUEVALUES +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableInput.cls new file mode 100644 index 0000000..5de91b9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableInput.cls @@ -0,0 +1,10 @@ +global class DecisionTableInput { + global List conditions; + global String datasetLinkName; + global DecisionTableInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableOperator.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableOperator.cls new file mode 100644 index 0000000..52b410b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableOperator.cls @@ -0,0 +1,12 @@ +global enum DecisionTableOperator { +BETWEEN, +DOESNOTEXISTIN, +EQUALS, +EXISTSIN, +GREATEROREQUAL, +GREATERTHAN, +LESSOREQUAL, +LESSTHAN, +MATCHES, +NOTEQUALS +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableOperatorString.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableOperatorString.cls new file mode 100644 index 0000000..fdda612 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableOperatorString.cls @@ -0,0 +1,12 @@ +global enum DecisionTableOperatorString { +CONTAINS, +DOESNOTCONTAIN, +EQUALS, +GREATERTHAN, +GREATERTHANOREQUAL, +ISNOTNULL, +ISNULL, +LESSTHAN, +LESSTHANOREQUAL, +NOTEQUAL +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableOutcome.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableOutcome.cls new file mode 100644 index 0000000..29c85b0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableOutcome.cls @@ -0,0 +1,14 @@ +global class DecisionTableOutcome { + global Integer errorCode; + global String errorMessage; + global List outcomeList; + global String outcomeType; + global Boolean successStatus; + global DecisionTableOutcome() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableOutcomeItem.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableOutcomeItem.cls new file mode 100644 index 0000000..a80cb9c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableOutcomeItem.cls @@ -0,0 +1,10 @@ +global class DecisionTableOutcomeItem { + global Map values; + global DecisionTableOutcomeItem() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableOutput.cls new file mode 100644 index 0000000..71cb02a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableOutput.cls @@ -0,0 +1,13 @@ +global class DecisionTableOutput { + global String code; + global ConnectApi.DecisionTableDefinitionOutput decisionTable; + global Boolean isSuccess; + global String message; + global DecisionTableOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableParameterInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableParameterInput.cls new file mode 100644 index 0000000..00dd31e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableParameterInput.cls @@ -0,0 +1,20 @@ +global class DecisionTableParameterInput { + global String columnMapping; + global ConnectApi.DecisionTableDataType dataType; + global Integer decimalScale; + global String domainEntity; + global String fieldName; + global Boolean isGroupByField; + global Boolean isPriority; + global Integer maxlength; + global ConnectApi.DecisionTableOperator operator; + global Integer sequence; + global ConnectApi.DecisionTableSortType sortType; + global ConnectApi.DecisionTableParameterType usage; + global DecisionTableParameterInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableParameterOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableParameterOutput.cls new file mode 100644 index 0000000..57f116e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableParameterOutput.cls @@ -0,0 +1,21 @@ +global class DecisionTableParameterOutput { + global String columnMapping; + global ConnectApi.DecisionTableDataType dataType; + global Integer decimalScale; + global String domainEntity; + global String fieldName; + global Boolean isGroupByField; + global Boolean isPriority; + global Integer maxlength; + global ConnectApi.DecisionTableOperator operator; + global Integer sequence; + global ConnectApi.DecisionTableSortType sortType; + global ConnectApi.DecisionTableParameterType usage; + global DecisionTableParameterOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableParameterType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableParameterType.cls new file mode 100644 index 0000000..fd0044d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableParameterType.cls @@ -0,0 +1,4 @@ +global enum DecisionTableParameterType { +INPUT, +OUTPUT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableSortType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableSortType.cls new file mode 100644 index 0000000..f9fc7cd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableSortType.cls @@ -0,0 +1,7 @@ +global enum DecisionTableSortType { +ASCNULLFIRST, +ASCNULLLAST, +DESCNULLFIRST, +DESCNULLLAST, +NONE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableSourceConditionValueType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableSourceConditionValueType.cls new file mode 100644 index 0000000..a4f070e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableSourceConditionValueType.cls @@ -0,0 +1,7 @@ +global enum DecisionTableSourceConditionValueType { +FORMULA, +LITERAL, +LOOKUP, +PARAMETER, +PICKLIST +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableSourceCriteriaInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableSourceCriteriaInput.cls new file mode 100644 index 0000000..cd9c1e7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableSourceCriteriaInput.cls @@ -0,0 +1,13 @@ +global class DecisionTableSourceCriteriaInput { + global ConnectApi.DecisionTableOperatorString operator; + global Integer sequenceNumber; + global String sourceFieldName; + global String value; + global ConnectApi.DecisionTableSourceConditionValueType valueType; + global DecisionTableSourceCriteriaInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableSourceCriteriaOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableSourceCriteriaOutput.cls new file mode 100644 index 0000000..986502f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableSourceCriteriaOutput.cls @@ -0,0 +1,14 @@ +global class DecisionTableSourceCriteriaOutput { + global ConnectApi.DecisionTableOperatorString operator; + global Integer sequenceNumber; + global String sourceFieldName; + global String value; + global ConnectApi.DecisionTableSourceConditionValueType valueType; + global DecisionTableSourceCriteriaOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableSourceType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableSourceType.cls new file mode 100644 index 0000000..e6da8c2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableSourceType.cls @@ -0,0 +1,5 @@ +global enum DecisionTableSourceType { +CSVUPLOAD, +MULTIPLESOBJECTS, +SINGLESOBJECT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableStatus.cls new file mode 100644 index 0000000..0111087 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableStatus.cls @@ -0,0 +1,6 @@ +global enum DecisionTableStatus { +ACTIVATIONINPROGRESS, +ACTIVE, +DRAFT, +INACTIVE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableUsageType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableUsageType.cls new file mode 100644 index 0000000..7e0477a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DecisionTableUsageType.cls @@ -0,0 +1,4 @@ +global enum DecisionTableUsageType { +PRICING, +PRODUCTELIGIBILITY +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DeleteIntent.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DeleteIntent.cls new file mode 100644 index 0000000..07222ce --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DeleteIntent.cls @@ -0,0 +1,10 @@ +global class DeleteIntent { + global ConnectApi.ManagedSocialAccount managedSocialAccount; + global DeleteIntent() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DeleteIntents.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DeleteIntents.cls new file mode 100644 index 0000000..be429c5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DeleteIntents.cls @@ -0,0 +1,10 @@ +global class DeleteIntents { + global List deletes; + global DeleteIntents() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DeleteSocialPostIntent.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DeleteSocialPostIntent.cls new file mode 100644 index 0000000..99656eb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DeleteSocialPostIntent.cls @@ -0,0 +1,11 @@ +global class DeleteSocialPostIntent { + global String socialAccountId; + global String socialPostId; + global DeleteSocialPostIntent() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DependencyDetailOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DependencyDetailOutputRepresentation.cls new file mode 100644 index 0000000..c763572 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DependencyDetailOutputRepresentation.cls @@ -0,0 +1,14 @@ +global class DependencyDetailOutputRepresentation { + global String apiName; + global String id; + global Datetime lastModifiedDate; + global String name; + global ConnectApi.ExpressionSetVersionDependencyEnumRepresentation type; + global DependencyDetailOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DeploymentActionEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DeploymentActionEnum.cls new file mode 100644 index 0000000..55967fd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DeploymentActionEnum.cls @@ -0,0 +1,5 @@ +global enum DeploymentActionEnum { +FRESHDEPLOYMENT, +REDEPLOYMENT, +UPDATEDEPLOYMENT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DetailedProjectedRebateAmountCalc.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DetailedProjectedRebateAmountCalc.cls new file mode 100644 index 0000000..b249041 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DetailedProjectedRebateAmountCalc.cls @@ -0,0 +1,18 @@ +global class DetailedProjectedRebateAmountCalc { + global String aggregateId; + global Double benefitQualifierValue; + global String benefitTier; + global String error; + global Double measureFieldValue; + global String payoutPeriod; + global Double projectedRebateAmount; + global List qualifiedTiers; + global String rebateTypeBenefit; + global DetailedProjectedRebateAmountCalc() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DigestJobRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DigestJobRepresentation.cls new file mode 100644 index 0000000..bdf3462 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DigestJobRepresentation.cls @@ -0,0 +1,10 @@ +global class DigestJobRepresentation { + global ConnectApi.DigestPeriod period; + global DigestJobRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DigestPeriod.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DigestPeriod.cls new file mode 100644 index 0000000..dde864d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DigestPeriod.cls @@ -0,0 +1,4 @@ +global enum DigestPeriod { +DAILYDIGEST, +WEEKLYDIGEST +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DigitalCertificateRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DigitalCertificateRepresentation.cls new file mode 100644 index 0000000..3cc4396 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DigitalCertificateRepresentation.cls @@ -0,0 +1,11 @@ +global class DigitalCertificateRepresentation { + global Boolean isValid; + global String issuerName; + global DigitalCertificateRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DirectMessageCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DirectMessageCapability.cls new file mode 100644 index 0000000..36d2d07 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DirectMessageCapability.cls @@ -0,0 +1,13 @@ +global class DirectMessageCapability { + global ConnectApi.DirectMessageMemberActivityPage memberChanges; + global ConnectApi.DirectMessageMemberPage members; + global ConnectApi.DirectMessageMemberPage originalMembers; + global String subject; + global DirectMessageCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DirectMessageCapabilityInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DirectMessageCapabilityInput.cls new file mode 100644 index 0000000..5ee18d2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DirectMessageCapabilityInput.cls @@ -0,0 +1,11 @@ +global class DirectMessageCapabilityInput { + global List membersToAdd; + global List membersToRemove; + global String subject; + global DirectMessageCapabilityInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DirectMessageMemberActivity.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DirectMessageMemberActivity.cls new file mode 100644 index 0000000..71c32dc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DirectMessageMemberActivity.cls @@ -0,0 +1,13 @@ +global class DirectMessageMemberActivity { + global Datetime activityDate; + global ConnectApi.UserSummary actor; + global ConnectApi.DirectMessageMemberPage membersAdded; + global ConnectApi.DirectMessageMemberPage membersRemoved; + global DirectMessageMemberActivity() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DirectMessageMemberActivityPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DirectMessageMemberActivityPage.cls new file mode 100644 index 0000000..547b9f4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DirectMessageMemberActivityPage.cls @@ -0,0 +1,14 @@ +global class DirectMessageMemberActivityPage { + global List activities; + global String currentPageToken; + global String currentPageUrl; + global String nextPageToken; + global String nextPageUrl; + global DirectMessageMemberActivityPage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DirectMessageMemberPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DirectMessageMemberPage.cls new file mode 100644 index 0000000..cfd1018 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DirectMessageMemberPage.cls @@ -0,0 +1,14 @@ +global class DirectMessageMemberPage { + global String currentPageToken; + global String currentPageUrl; + global String nextPageToken; + global String nextPageUrl; + global List users; + global DirectMessageMemberPage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DispenserAddressOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DispenserAddressOutput.cls new file mode 100644 index 0000000..01f13ff --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DispenserAddressOutput.cls @@ -0,0 +1,14 @@ +global class DispenserAddressOutput { + global String dispenserCity; + global String dispenserCountry; + global String dispenserPostalCode; + global String dispenserState; + global String dispenserStreet; + global DispenserAddressOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DistanceCalculationOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DistanceCalculationOutputRepresentation.cls new file mode 100644 index 0000000..3a89c6a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DistanceCalculationOutputRepresentation.cls @@ -0,0 +1,12 @@ +global class DistanceCalculationOutputRepresentation { + global Double averageDistance; + global List locations; + global Integer rank; + global DistanceCalculationOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DistinctFacetValue.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DistinctFacetValue.cls new file mode 100644 index 0000000..18ec07a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DistinctFacetValue.cls @@ -0,0 +1,12 @@ +global class DistinctFacetValue { + global String displayName; + global String nameOrId; + global Long productCount; + global DistinctFacetValue() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DistinctValueRefinementInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DistinctValueRefinementInput.cls new file mode 100644 index 0000000..8dfebb0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DistinctValueRefinementInput.cls @@ -0,0 +1,9 @@ +global class DistinctValueRefinementInput { + global List values; + global DistinctValueRefinementInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DistinctValueSearchFacet.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DistinctValueSearchFacet.cls new file mode 100644 index 0000000..846ffb9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DistinctValueSearchFacet.cls @@ -0,0 +1,10 @@ +global class DistinctValueSearchFacet { + global List values; + global DistinctValueSearchFacet() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DistributePickedQuantitiesInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DistributePickedQuantitiesInputRepresentation.cls new file mode 100644 index 0000000..e4d0672 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DistributePickedQuantitiesInputRepresentation.cls @@ -0,0 +1,11 @@ +global class DistributePickedQuantitiesInputRepresentation { + global List distributeToOrders; + global String optimizationCriteria; + global List quantitiesPickedList; + global DistributePickedQuantitiesInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DistributePickedQuantitiesOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DistributePickedQuantitiesOutputRepresentation.cls new file mode 100644 index 0000000..ba0bea0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DistributePickedQuantitiesOutputRepresentation.cls @@ -0,0 +1,13 @@ +global class DistributePickedQuantitiesOutputRepresentation { + global List fullyDistributedOrdersList; + global List notDistributedOrdersList; + global List partiallyDistributedOrdersList; + global List quantitiesRemainingList; + global DistributePickedQuantitiesOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DistributeToOrdersInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DistributeToOrdersInputRepresentation.cls new file mode 100644 index 0000000..9cec979 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DistributeToOrdersInputRepresentation.cls @@ -0,0 +1,10 @@ +global class DistributeToOrdersInputRepresentation { + global String externalOrderId; + global List itemQuantities; + global DistributeToOrdersInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DocumentInfoAttributes.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DocumentInfoAttributes.cls new file mode 100644 index 0000000..b4c7525 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DocumentInfoAttributes.cls @@ -0,0 +1,11 @@ +global class DocumentInfoAttributes { + global String id; + global String name; + global String typeId; + global documentInfoAttributes() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DocumentInfoAttributesWrapper.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DocumentInfoAttributesWrapper.cls new file mode 100644 index 0000000..350a138 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DocumentInfoAttributesWrapper.cls @@ -0,0 +1,11 @@ +global class DocumentInfoAttributesWrapper { + global String id; + global String name; + global String typeId; + global DocumentInfoAttributesWrapper() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DownVoteSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DownVoteSummary.cls new file mode 100644 index 0000000..7160a28 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DownVoteSummary.cls @@ -0,0 +1,9 @@ +global class DownVoteSummary { + global DownVoteSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DraftEinsteinResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DraftEinsteinResponse.cls new file mode 100644 index 0000000..55e224f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/DraftEinsteinResponse.cls @@ -0,0 +1,10 @@ +global class DraftEinsteinResponse { + global String einsteinResponse; + global DraftEinsteinResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EUProgram.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EUProgram.cls new file mode 100644 index 0000000..d0239f3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EUProgram.cls @@ -0,0 +1,3 @@ +global class EUProgram { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EditCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EditCapability.cls new file mode 100644 index 0000000..8853b1e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EditCapability.cls @@ -0,0 +1,15 @@ +global class EditCapability { + global Boolean isEditRestricted; + global String isEditableByMeUrl; + global ConnectApi.Actor lastEditedBy; + global Datetime lastEditedDate; + global Integer latestRevision; + global String relativeLastEditedDate; + global EditCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EffectiveMappingRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EffectiveMappingRepresentation.cls new file mode 100644 index 0000000..a063fa6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EffectiveMappingRepresentation.cls @@ -0,0 +1,10 @@ +global class EffectiveMappingRepresentation { + global String webstoreId; + global EffectiveMappingRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinAnswerType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinAnswerType.cls new file mode 100644 index 0000000..10c0ece --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinAnswerType.cls @@ -0,0 +1,4 @@ +global enum EinsteinAnswerType { +CHATTERPOST, +KNOWLEDGEARTICLE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinLLMEmbeddingItemOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinLLMEmbeddingItemOutput.cls new file mode 100644 index 0000000..d5d27f0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinLLMEmbeddingItemOutput.cls @@ -0,0 +1,11 @@ +global class EinsteinLLMEmbeddingItemOutput { + global List embedding; + global Integer index; + global EinsteinLLMEmbeddingItemOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinLLMEmbeddingsOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinLLMEmbeddingsOutput.cls new file mode 100644 index 0000000..b9b0790 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinLLMEmbeddingsOutput.cls @@ -0,0 +1,11 @@ +global class EinsteinLLMEmbeddingsOutput { + global List embeddings; + global Map parameters; + global EinsteinLLMEmbeddingsOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinLLMGenerationItemOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinLLMGenerationItemOutput.cls new file mode 100644 index 0000000..de57cc6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinLLMGenerationItemOutput.cls @@ -0,0 +1,11 @@ +global class EinsteinLLMGenerationItemOutput { + global String parameters; + global String text; + global EinsteinLLMGenerationItemOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinLLMGenerationsOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinLLMGenerationsOutput.cls new file mode 100644 index 0000000..f02503b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinLLMGenerationsOutput.cls @@ -0,0 +1,13 @@ +global class EinsteinLLMGenerationsOutput { + global List generations; + global ConnectApi.WrappedMapObject parameters; + global String prompt; + global String requestId; + global EinsteinLLMGenerationsOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinLlm.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinLlm.cls new file mode 100644 index 0000000..0796882 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinLlm.cls @@ -0,0 +1,3 @@ +global class EinsteinLlm { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinLlmAdditionalConfigInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinLlmAdditionalConfigInput.cls new file mode 100644 index 0000000..906d613 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinLlmAdditionalConfigInput.cls @@ -0,0 +1,18 @@ +global class EinsteinLlmAdditionalConfigInput { + global Map additionalParameters; + global String applicationName; + global Boolean enablePiiMasking; + global Double frequencyPenalty; + global Integer maxTokens; + global String model; + global Integer numGenerations; + global Double presencePenalty; + global List stopSequences; + global Double temperature; + global EinsteinLlmAdditionalConfigInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinLlmEmbeddingsAdditionalConfigInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinLlmEmbeddingsAdditionalConfigInput.cls new file mode 100644 index 0000000..8ec2e21 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinLlmEmbeddingsAdditionalConfigInput.cls @@ -0,0 +1,12 @@ +global class EinsteinLlmEmbeddingsAdditionalConfigInput { + global Map additionalParameters; + global String applicationName; + global Boolean enablePiiMasking; + global String model; + global EinsteinLlmEmbeddingsAdditionalConfigInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinLlmEmbeddingsInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinLlmEmbeddingsInput.cls new file mode 100644 index 0000000..918d1ae --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinLlmEmbeddingsInput.cls @@ -0,0 +1,11 @@ +global class EinsteinLlmEmbeddingsInput { + global ConnectApi.EinsteinLlmEmbeddingsAdditionalConfigInput additionalConfig; + global List prompts; + global String provider; + global EinsteinLlmEmbeddingsInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinLlmGenerationsInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinLlmGenerationsInput.cls new file mode 100644 index 0000000..872bdbd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinLlmGenerationsInput.cls @@ -0,0 +1,11 @@ +global class EinsteinLlmGenerationsInput { + global ConnectApi.EinsteinLlmAdditionalConfigInput additionalConfig; + global String promptTextorId; + global String provider; + global EinsteinLlmGenerationsInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinRecommendation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinRecommendation.cls new file mode 100644 index 0000000..7961db3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinRecommendation.cls @@ -0,0 +1,21 @@ +global class EinsteinRecommendation { + global Double confidence; + global String id; + global List insightValues; + global String mlPredictionDefinitionId; + global String predictionDefinitionId; + global String predictionField; + global String runGuid; + global Datetime runStartTime; + global String targetId; + global String targetSobjectType; + global String type; + global Datetime validUtil; + global EinsteinRecommendation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinRecommendationValue.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinRecommendationValue.cls new file mode 100644 index 0000000..035d0ce --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinRecommendationValue.cls @@ -0,0 +1,15 @@ +global class EinsteinRecommendationValue { + global Double confidence; + global String id; + global String sobjectLookupType; + global String sobjectLookupValueId; + global String value; + global String valueType; + global EinsteinRecommendationValue() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinRecommendations.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinRecommendations.cls new file mode 100644 index 0000000..b96d7b8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinRecommendations.cls @@ -0,0 +1,11 @@ +global class EinsteinRecommendations { + global String aiApplicationId; + global List recommendations; + global EinsteinRecommendations() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinResponseSpeakerType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinResponseSpeakerType.cls new file mode 100644 index 0000000..50c09a3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinResponseSpeakerType.cls @@ -0,0 +1,4 @@ +global enum EinsteinResponseSpeakerType { +AGENT, +CUSTOMER +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinResponseType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinResponseType.cls new file mode 100644 index 0000000..ba7bea2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinResponseType.cls @@ -0,0 +1,3 @@ +global enum EinsteinResponseType { +TEXTMESSAGE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinUser.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinUser.cls new file mode 100644 index 0000000..c5bcaa3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinUser.cls @@ -0,0 +1,14 @@ +global class EinsteinUser { + global String applicationId; + global Boolean canEditCase; + global List erroredPredictionFields; + global Boolean isValid; + global String userId; + global EinsteinUser() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinUsers.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinUsers.cls new file mode 100644 index 0000000..94eb2c7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EinsteinUsers.cls @@ -0,0 +1,10 @@ +global class EinsteinUsers { + global List einsteinUsers; + global EinsteinUsers() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EligibleProgramRebateTypesOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EligibleProgramRebateTypesOutput.cls new file mode 100644 index 0000000..190a2e6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EligibleProgramRebateTypesOutput.cls @@ -0,0 +1,14 @@ +global class EligibleProgramRebateTypesOutput { + global Integer appliedRebateTypesLimit; + global Integer appliedRebateTypesOffset; + global Integer limitValue; + global Integer offsetValue; + global List programRebateTypes; + global EligibleProgramRebateTypesOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmailAddress.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmailAddress.cls new file mode 100644 index 0000000..817f4f8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmailAddress.cls @@ -0,0 +1,12 @@ +global class EmailAddress { + global String displayName; + global String emailAddress; + global ConnectApi.RecordSummary relatedRecord; + global EmailAddress() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmailAttachment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmailAttachment.cls new file mode 100644 index 0000000..b2b6f7d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmailAttachment.cls @@ -0,0 +1,12 @@ +global class EmailAttachment { + global ConnectApi.RecordSummary attachment; + global String contentType; + global String fileName; + global EmailAttachment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmailMergeFieldCollectionInfo.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmailMergeFieldCollectionInfo.cls new file mode 100644 index 0000000..ae8e03a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmailMergeFieldCollectionInfo.cls @@ -0,0 +1,10 @@ +global class EmailMergeFieldCollectionInfo { + global List mergeFields; + global EmailMergeFieldCollectionInfo() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmailMergeFieldInfo.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmailMergeFieldInfo.cls new file mode 100644 index 0000000..9239874 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmailMergeFieldInfo.cls @@ -0,0 +1,10 @@ +global class EmailMergeFieldInfo { + global Map entityToMergeFieldsMap; + global EmailMergeFieldInfo() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmailMergeFieldService.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmailMergeFieldService.cls new file mode 100644 index 0000000..e528d34 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmailMergeFieldService.cls @@ -0,0 +1,5 @@ +global class EmailMergeFieldService { + global Object clone() { } + global static ConnectApi.EmailMergeFieldInfo getMergeFields(List objectApiNames) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmailMessage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmailMessage.cls new file mode 100644 index 0000000..cf701de --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmailMessage.cls @@ -0,0 +1,14 @@ +global class EmailMessage { + global ConnectApi.EmailMessageDirection direction; + global String emailMessageId; + global String subject; + global String textBody; + global List toAddresses; + global EmailMessage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmailMessageCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmailMessageCapability.cls new file mode 100644 index 0000000..3acf8ce --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmailMessageCapability.cls @@ -0,0 +1,23 @@ +global class EmailMessageCapability { + global List attachments; + global List bccAddresses; + global String body; + global List ccAddresses; + global ConnectApi.EmailMessageDirection direction; + global String emailMessageId; + global ConnectApi.EmailAddress fromAddress; + global Integer htmlExpandEmailThread; + global Boolean isRichText; + global ConnectApi.EmailMessageStatus status; + global String subject; + global String textBody; + global List toAddresses; + global Integer totalAttachments; + global EmailMessageCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmailMessageDirection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmailMessageDirection.cls new file mode 100644 index 0000000..b23be7e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmailMessageDirection.cls @@ -0,0 +1,4 @@ +global enum EmailMessageDirection { +INBOUND, +OUTBOUND +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmailMessageStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmailMessageStatus.cls new file mode 100644 index 0000000..c7e0092 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmailMessageStatus.cls @@ -0,0 +1,8 @@ +global enum EmailMessageStatus { +DRAFTSTATUS, +FORWARDEDSTATUS, +NEWSTATUS, +READSTATUS, +REPLIEDSTATUS, +SENTSTATUS +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Emoji.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Emoji.cls new file mode 100644 index 0000000..a4b3565 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Emoji.cls @@ -0,0 +1,12 @@ +global class Emoji { + global String category; + global String shortcut; + global String unicodeCharacter; + global Emoji() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmojiCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmojiCollection.cls new file mode 100644 index 0000000..2286a99 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmojiCollection.cls @@ -0,0 +1,10 @@ +global class EmojiCollection { + global List emojis; + global EmojiCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmployeeProfiles.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmployeeProfiles.cls new file mode 100644 index 0000000..e6e29a1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EmployeeProfiles.cls @@ -0,0 +1,16 @@ +global class EmployeeProfiles { + global Object clone() { } + global static void deleteBannerPhoto(String employeeId) { } + global static void deletePhoto(String employeeId) { } + global static ConnectApi.BannerPhoto getBannerPhoto(String employeeId) { } + global static ConnectApi.Photo getPhoto(String employeeId) { } + global static ConnectApi.BannerPhoto setBannerPhoto(String employeeId, String fileId, Integer versionNumber) { } + global static ConnectApi.BannerPhoto setBannerPhoto(String employeeId, ConnectApi.BinaryInput fileUpload) { } + global static ConnectApi.BannerPhoto setBannerPhotoWithAttributes(String employeeId, ConnectApi.BannerPhotoInput bannerPhoto, ConnectApi.BinaryInput fileUpload) { } + global static ConnectApi.BannerPhoto setBannerPhotoWithAttributes(String employeeId, ConnectApi.BannerPhotoInput bannerPhoto) { } + global static ConnectApi.Photo setPhoto(String employeeId, String fileId, Integer versionNumber) { } + global static ConnectApi.Photo setPhoto(String employeeId, ConnectApi.BinaryInput fileUpload) { } + global static ConnectApi.Photo setPhotoWithAttributes(String employeeId, ConnectApi.PhotoInput photo, ConnectApi.BinaryInput fileUpload) { } + global static ConnectApi.Photo setPhotoWithAttributes(String employeeId, ConnectApi.PhotoInput photo) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementAttendeeCreateInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementAttendeeCreateInput.cls new file mode 100644 index 0000000..b1cd5d5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementAttendeeCreateInput.cls @@ -0,0 +1,20 @@ +global class EngagementAttendeeCreateInput { + global List customFieldsList; + global String endDateTime; + global String engagementInteractionId; + global String externalAttendeeId; + global String id; + global String internalAttendeeId; + global Boolean isAuthenticated; + global Boolean isVerified; + global String ownerId; + global String role; + global String startDateTime; + global String verificationTime; + global EngagementAttendeeCreateInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementAttendeeCreateOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementAttendeeCreateOutput.cls new file mode 100644 index 0000000..0dbe612 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementAttendeeCreateOutput.cls @@ -0,0 +1,11 @@ +global class EngagementAttendeeCreateOutput { + global ConnectApi.EngagementsIdOutput engagementAttendee; + global ConnectApi.EngagementStatusOutput status; + global EngagementAttendeeCreateOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementAttendeeDetailsOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementAttendeeDetailsOutput.cls new file mode 100644 index 0000000..45f3e6c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementAttendeeDetailsOutput.cls @@ -0,0 +1,21 @@ +global class EngagementAttendeeDetailsOutput { + global List customFields; + global String endDateTime; + global String engagementInteractionId; + global String externalAttendeeId; + global String id; + global String internalAttendeeId; + global Boolean isAuthenticated; + global Boolean isVerified; + global String ownerId; + global String role; + global String startDateTime; + global String verificationTime; + global EngagementAttendeeDetailsOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementAttendeeFetchOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementAttendeeFetchOutput.cls new file mode 100644 index 0000000..71695dc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementAttendeeFetchOutput.cls @@ -0,0 +1,11 @@ +global class EngagementAttendeeFetchOutput { + global ConnectApi.EngagementAttendeeDetailsOutput engagementAttendee; + global ConnectApi.EngagementStatusOutput status; + global EngagementAttendeeFetchOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementCustomFieldsInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementCustomFieldsInput.cls new file mode 100644 index 0000000..0804e7e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementCustomFieldsInput.cls @@ -0,0 +1,10 @@ +global class EngagementCustomFieldsInput { + global String key; + global Object value; + global EngagementCustomFieldsInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementCustomFieldsOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementCustomFieldsOutput.cls new file mode 100644 index 0000000..9169a0a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementCustomFieldsOutput.cls @@ -0,0 +1,11 @@ +global class EngagementCustomFieldsOutput { + global String key; + global Object value; + global EngagementCustomFieldsOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementDetailsOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementDetailsOutput.cls new file mode 100644 index 0000000..8dcb69e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementDetailsOutput.cls @@ -0,0 +1,27 @@ +global class EngagementDetailsOutput { + global Boolean attendeeAuthenticated; + global Long attendeeVerificationTime; + global Boolean attendeeVerified; + global String communicationChannel; + global String contextId; + global String duration; + global String endDateTime; + global List engagementAttendees; + global List engagementTopics; + global String externalIdentifierId; + global String id; + global String initiatingAttendeeId; + global String mappedState; + global String ownerId; + global String sentiment; + global String startDateTime; + global String status; + global String type; + global EngagementDetailsOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementInteractionCreateInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementInteractionCreateInput.cls new file mode 100644 index 0000000..5000d14 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementInteractionCreateInput.cls @@ -0,0 +1,27 @@ +global class EngagementInteractionCreateInput { + global Boolean attendeeAuthenticated; + global String attendeeVerificationTime; + global Boolean attendeeVerified; + global String communicationChannel; + global String contextId; + global List customFieldsList; + global String endDateTime; + global List engagementAttendees; + global List engagementTopics; + global String externalIdentifierId; + global String id; + global String initiatingAttendeeId; + global String mappedState; + global String phoneNumber; + global String reason; + global String sentiment; + global String startDateTime; + global String status; + global String type; + global EngagementInteractionCreateInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementInteractionDetailsOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementInteractionDetailsOutput.cls new file mode 100644 index 0000000..21d5e61 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementInteractionDetailsOutput.cls @@ -0,0 +1,30 @@ +global class EngagementInteractionDetailsOutput { + global Boolean attendeeAuthenticated; + global String attendeeVerificationTime; + global Boolean attendeeVerified; + global String communicationChannel; + global String contextId; + global List customFields; + global String duration; + global String endDateTime; + global List engagementAttendees; + global List engagementTopics; + global String externalIdentifierId; + global String id; + global String initiatingAttendeeId; + global String mappedState; + global String ownerId; + global String phoneNumber; + global String reason; + global String sentiment; + global String startDateTime; + global String status; + global String type; + global EngagementInteractionDetailsOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementInteractionFetchOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementInteractionFetchOutput.cls new file mode 100644 index 0000000..e56c278 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementInteractionFetchOutput.cls @@ -0,0 +1,11 @@ +global class EngagementInteractionFetchOutput { + global ConnectApi.EngagementInteractionDetailsOutput engagementInteraction; + global ConnectApi.EngagementStatusOutput status; + global EngagementInteractionFetchOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementInteractionUpdateInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementInteractionUpdateInput.cls new file mode 100644 index 0000000..c569948 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementInteractionUpdateInput.cls @@ -0,0 +1,25 @@ +global class EngagementInteractionUpdateInput { + global Boolean attendeeAuthenticated; + global String attendeeVerificationTime; + global Boolean attendeeVerified; + global String communicationChannel; + global String contextId; + global String duration; + global String endDateTime; + global String externalIdentifierId; + global String id; + global String initiatingAttendeeId; + global String mappedState; + global String phoneNumber; + global String reason; + global String sentiment; + global String startDateTime; + global String status; + global String type; + global EngagementInteractionUpdateInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementStatusOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementStatusOutput.cls new file mode 100644 index 0000000..0144d99 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementStatusOutput.cls @@ -0,0 +1,11 @@ +global class EngagementStatusOutput { + global Integer code; + global String message; + global EngagementStatusOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementTopicCreateInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementTopicCreateInput.cls new file mode 100644 index 0000000..a191b53 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementTopicCreateInput.cls @@ -0,0 +1,21 @@ +global class EngagementTopicCreateInput { + global List customFieldsList; + global String engagementInteractionId; + global String id; + global String interactionSummary; + global String name; + global String ownerId; + global String parentTopicId; + global String processFailureReason; + global String processName; + global String processStatus; + global String processType; + global String relatedPersonId; + global String topicId; + global EngagementTopicCreateInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementTopicCreateOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementTopicCreateOutput.cls new file mode 100644 index 0000000..159c637 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementTopicCreateOutput.cls @@ -0,0 +1,11 @@ +global class EngagementTopicCreateOutput { + global ConnectApi.EngagementsIdOutput engagementTopic; + global ConnectApi.EngagementStatusOutput status; + global EngagementTopicCreateOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementTopicDetailsOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementTopicDetailsOutput.cls new file mode 100644 index 0000000..12bc766 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementTopicDetailsOutput.cls @@ -0,0 +1,20 @@ +global class EngagementTopicDetailsOutput { + global String id; + global String interactionSummary; + global String name; + global String ownerId; + global String parentTopicId; + global String processFailureReason; + global String processName; + global String processStatus; + global String processType; + global String relatedPersonId; + global String topicId; + global EngagementTopicDetailsOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementTopicFetchOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementTopicFetchOutput.cls new file mode 100644 index 0000000..81fbde7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementTopicFetchOutput.cls @@ -0,0 +1,11 @@ +global class EngagementTopicFetchOutput { + global ConnectApi.EngagementTopicOutput engagementTopic; + global ConnectApi.EngagementStatusOutput status; + global EngagementTopicFetchOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementTopicOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementTopicOutput.cls new file mode 100644 index 0000000..185e1c7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementTopicOutput.cls @@ -0,0 +1,22 @@ +global class EngagementTopicOutput { + global List customFields; + global String engagementInteractionId; + global String id; + global String interactionSummary; + global String name; + global String ownerId; + global String parentTopicId; + global String processFailureReason; + global String processName; + global String processStatus; + global String processType; + global String relatedPersonId; + global String topicId; + global EngagementTopicOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Engagementcontainerconnect.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Engagementcontainerconnect.cls new file mode 100644 index 0000000..62adf66 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Engagementcontainerconnect.cls @@ -0,0 +1,3 @@ +global class Engagementcontainerconnect { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementsCreateInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementsCreateInput.cls new file mode 100644 index 0000000..04040eb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementsCreateInput.cls @@ -0,0 +1,9 @@ +global class EngagementsCreateInput { + global ConnectApi.EngagementInteractionCreateInput engagementInteraction; + global EngagementsCreateInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementsCreateOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementsCreateOutput.cls new file mode 100644 index 0000000..80b71c3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementsCreateOutput.cls @@ -0,0 +1,11 @@ +global class EngagementsCreateOutput { + global ConnectApi.EngagementsIdCreateOutput engagementInteraction; + global ConnectApi.EngagementStatusOutput status; + global EngagementsCreateOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementsFetchOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementsFetchOutput.cls new file mode 100644 index 0000000..a3648f3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementsFetchOutput.cls @@ -0,0 +1,11 @@ +global class EngagementsFetchOutput { + global ConnectApi.EngagementInteractionDetailsOutput engagementInteraction; + global ConnectApi.EngagementStatusOutput status; + global EngagementsFetchOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementsIdCreateOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementsIdCreateOutput.cls new file mode 100644 index 0000000..63f0ba3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementsIdCreateOutput.cls @@ -0,0 +1,12 @@ +global class EngagementsIdCreateOutput { + global List engagementAttendees; + global List engagementTopics; + global String id; + global EngagementsIdCreateOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementsIdOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementsIdOutput.cls new file mode 100644 index 0000000..a556d9b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementsIdOutput.cls @@ -0,0 +1,10 @@ +global class EngagementsIdOutput { + global String id; + global EngagementsIdOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementsUpdateInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementsUpdateInput.cls new file mode 100644 index 0000000..553cc99 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementsUpdateInput.cls @@ -0,0 +1,11 @@ +global class EngagementsUpdateInput { + global List engagementAttendees; + global ConnectApi.EngagementInteractionUpdateInput engagementInteraction; + global List engagementTopics; + global EngagementsUpdateInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementsUpdateOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementsUpdateOutput.cls new file mode 100644 index 0000000..90440af --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EngagementsUpdateOutput.cls @@ -0,0 +1,13 @@ +global class EngagementsUpdateOutput { + global List engagementAttendees; + global ConnectApi.EngagementsIdOutput engagementInteraction; + global List engagementTopics; + global ConnectApi.EngagementStatusOutput status; + global EngagementsUpdateOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EnhancedLinkCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EnhancedLinkCapability.cls new file mode 100644 index 0000000..482845a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EnhancedLinkCapability.cls @@ -0,0 +1,14 @@ +global class EnhancedLinkCapability { + global String description; + global ConnectApi.Icon icon; + global String linkRecordId; + global String linkUrl; + global String title; + global EnhancedLinkCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EnrollmentChannelResource.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EnrollmentChannelResource.cls new file mode 100644 index 0000000..bfbb8da --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EnrollmentChannelResource.cls @@ -0,0 +1,12 @@ +global enum EnrollmentChannelResource { +CALLCENTER, +EMAIL, +FRANCHISE, +MOBILE, +PARTNER, +POS, +PRINT, +SOCIAL, +STORE, +WEB +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EnsureFundsAsyncInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EnsureFundsAsyncInputRepresentation.cls new file mode 100644 index 0000000..3a6b081 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EnsureFundsAsyncInputRepresentation.cls @@ -0,0 +1,9 @@ +global class EnsureFundsAsyncInputRepresentation { + global String invoiceId; + global EnsureFundsAsyncInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EnsureFundsAsyncOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EnsureFundsAsyncOutputRepresentation.cls new file mode 100644 index 0000000..17d5509 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EnsureFundsAsyncOutputRepresentation.cls @@ -0,0 +1,9 @@ +global class EnsureFundsAsyncOutputRepresentation { + global EnsureFundsAsyncOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EnsureRefundsAsyncInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EnsureRefundsAsyncInputRepresentation.cls new file mode 100644 index 0000000..5866c7b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EnsureRefundsAsyncInputRepresentation.cls @@ -0,0 +1,13 @@ +global class EnsureRefundsAsyncInputRepresentation { + global String creditMemoId; + global Double excessFundsAmount; + global List invoicesToPay; + global Boolean isAllowPartial; + global List sequences; + global EnsureRefundsAsyncInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EnsureRefundsAsyncOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EnsureRefundsAsyncOutputRepresentation.cls new file mode 100644 index 0000000..3b9a800 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EnsureRefundsAsyncOutputRepresentation.cls @@ -0,0 +1,9 @@ +global class EnsureRefundsAsyncOutputRepresentation { + global EnsureRefundsAsyncOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EntityLabel.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EntityLabel.cls new file mode 100644 index 0000000..03a593a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EntityLabel.cls @@ -0,0 +1,11 @@ +global class EntityLabel { + global String label; + global String labelPlural; + global EntityLabel() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EntityLinkSegment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EntityLinkSegment.cls new file mode 100644 index 0000000..77e77ca --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EntityLinkSegment.cls @@ -0,0 +1,11 @@ +global class EntityLinkSegment { + global ConnectApi.Motif motif; + global ConnectApi.Reference reference; + global EntityLinkSegment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EntityLinkSegmentInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EntityLinkSegmentInput.cls new file mode 100644 index 0000000..df239cf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EntityLinkSegmentInput.cls @@ -0,0 +1,9 @@ +global class EntityLinkSegmentInput { + global String entityId; + global EntityLinkSegmentInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EntityRecommendation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EntityRecommendation.cls new file mode 100644 index 0000000..ffbddb4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EntityRecommendation.cls @@ -0,0 +1,12 @@ +global class EntityRecommendation { + global String actOnUrl; + global ConnectApi.RecommendationActionType action; + global ConnectApi.Actor entity; + global EntityRecommendation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EntityResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EntityResult.cls new file mode 100644 index 0000000..353fd82 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EntityResult.cls @@ -0,0 +1,14 @@ +global class EntityResult { + global Boolean created; + global String externalId; + global String externalIdField; + global String id; + global String objectType; + global String status; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ErrorRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ErrorRepresentation.cls new file mode 100644 index 0000000..66a7783 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ErrorRepresentation.cls @@ -0,0 +1,15 @@ +global class ErrorRepresentation { + global String code; + global Boolean isConflictProvider; + global Boolean isConflictTime; + global Boolean isFatal; + global Boolean isRetryable; + global String message; + global ErrorRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ErrorResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ErrorResponse.cls new file mode 100644 index 0000000..c3f4dd8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ErrorResponse.cls @@ -0,0 +1,11 @@ +global class ErrorResponse { + global String errorCode; + global String message; + global ErrorResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ErrorResponseRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ErrorResponseRepresentation.cls new file mode 100644 index 0000000..38f54de --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ErrorResponseRepresentation.cls @@ -0,0 +1,11 @@ +global class ErrorResponseRepresentation { + global String code; + global String message; + global ErrorResponseRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ErrorsOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ErrorsOutputRepresentation.cls new file mode 100644 index 0000000..b2d2732 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ErrorsOutputRepresentation.cls @@ -0,0 +1,12 @@ +global class ErrorsOutputRepresentation { + global String code; + global String message; + global Map validationErrors; + global ErrorsOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Essentials.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Essentials.cls new file mode 100644 index 0000000..53118d3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Essentials.cls @@ -0,0 +1,3 @@ +global class Essentials { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EvaluateCallerVideoCallResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EvaluateCallerVideoCallResult.cls new file mode 100644 index 0000000..f283ff5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EvaluateCallerVideoCallResult.cls @@ -0,0 +1,11 @@ +global class EvaluateCallerVideoCallResult { + global String errorMessage; + global Boolean isSuccess; + global EvaluateCallerVideoCallResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EventTypeResource.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EventTypeResource.cls new file mode 100644 index 0000000..a8c54d6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/EventTypeResource.cls @@ -0,0 +1,5 @@ +global enum EventTypeResource { +ENROLLMENT, +PURCHASE, +REFER +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Example.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Example.cls new file mode 100644 index 0000000..302dead --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Example.cls @@ -0,0 +1,10 @@ +global class Example { + global Object clone() { } + global static ConnectApi.ExampleEntityRepresentation getExampleEntityWithFields(String recordId, List fields) { } + global static ConnectApi.ExampleListRepresentation getExampleListWithFields(String recordId, List fields) { } + global static ConnectApi.ExampleMapRepresentation getExampleMapWithFields(String recordId, List fields) { } + global static ConnectApi.ExampleEntityRepresentation updateExampleEntity(String recordId, ConnectApi.ExampleEntityInputRepresentation recordInput) { } + global static ConnectApi.ExampleListRepresentation updateExampleList(String recordId, ConnectApi.ExampleListInputRepresentation recordInput) { } + global static ConnectApi.ExampleMapRepresentation updateExampleMap(String recordId, ConnectApi.ExampleMapInputRepresentation recordInput) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExampleEntityInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExampleEntityInputRepresentation.cls new file mode 100644 index 0000000..1e970ae --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExampleEntityInputRepresentation.cls @@ -0,0 +1,13 @@ +global class ExampleEntityInputRepresentation { + global SObject customObject; + global String exampleId; + global Integer exampleInteger; + global Object exampleObject; + global String exampleString; + global ExampleEntityInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExampleEntityRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExampleEntityRepresentation.cls new file mode 100644 index 0000000..332eaf3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExampleEntityRepresentation.cls @@ -0,0 +1,15 @@ +global class ExampleEntityRepresentation { + global SObject customObject; + global String exampleConnectUri; + global String exampleId; + global Integer exampleInteger; + global Object exampleObject; + global String exampleString; + global ExampleEntityRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExampleListInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExampleListInputRepresentation.cls new file mode 100644 index 0000000..241fa3c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExampleListInputRepresentation.cls @@ -0,0 +1,10 @@ +global class ExampleListInputRepresentation { + global List customList; + global List stringList; + global ExampleListInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExampleListRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExampleListRepresentation.cls new file mode 100644 index 0000000..940cb07 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExampleListRepresentation.cls @@ -0,0 +1,12 @@ +global class ExampleListRepresentation { + global List customList; + global List objectList; + global List stringList; + global ExampleListRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExampleMapInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExampleMapInputRepresentation.cls new file mode 100644 index 0000000..c6e13ae --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExampleMapInputRepresentation.cls @@ -0,0 +1,11 @@ +global class ExampleMapInputRepresentation { + global Map connectMap; + global Map customMap; + global Map stringMap; + global ExampleMapInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExampleMapRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExampleMapRepresentation.cls new file mode 100644 index 0000000..7fc4812 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExampleMapRepresentation.cls @@ -0,0 +1,12 @@ +global class ExampleMapRepresentation { + global Map customMap; + global Map objectMap; + global Map stringMap; + global ExampleMapRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExampleObjectInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExampleObjectInputRepresentation.cls new file mode 100644 index 0000000..300cd29 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExampleObjectInputRepresentation.cls @@ -0,0 +1,9 @@ +global class ExampleObjectInputRepresentation { + global Object value; + global ExampleObjectInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExecutionStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExecutionStatus.cls new file mode 100644 index 0000000..cf11ba4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExecutionStatus.cls @@ -0,0 +1,5 @@ +global enum ExecutionStatus { +CRITERIANOTMET, +FAILED, +SUCCESS +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExplainabilityActionLogCreate.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExplainabilityActionLogCreate.cls new file mode 100644 index 0000000..10dbe88 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExplainabilityActionLogCreate.cls @@ -0,0 +1,11 @@ +global class ExplainabilityActionLogCreate { + global Integer sequenceNumber; + global String uniqueIdentifier; + global ExplainabilityActionLogCreate() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExplainabilityActionLogDetail.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExplainabilityActionLogDetail.cls new file mode 100644 index 0000000..7eff3c9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExplainabilityActionLogDetail.cls @@ -0,0 +1,20 @@ +global class ExplainabilityActionLogDetail { + global String actionContextCode; + global String actionLog; + global String additionalFilter; + global String applicationLogDate; + global String applicationSubtype; + global String applicationType; + global String explainabilitySpecName; + global String name; + global String primaryFilter; + global String processType; + global String secondaryFilter; + global ExplainabilityActionLogDetail() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExplainabilityActionLogInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExplainabilityActionLogInput.cls new file mode 100644 index 0000000..a6c19e3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExplainabilityActionLogInput.cls @@ -0,0 +1,17 @@ +global class ExplainabilityActionLogInput { + global String actionContextCode; + global String actionLog; + global String actionLogDate; + global String actionLogOwnerId; + global String additionalFilter; + global String name; + global String primaryFilter; + global String secondaryFilter; + global String specificationName; + global ExplainabilityActionLogInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExplainabilityActionLogSortEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExplainabilityActionLogSortEnum.cls new file mode 100644 index 0000000..2054d6f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExplainabilityActionLogSortEnum.cls @@ -0,0 +1,4 @@ +global enum ExplainabilityActionLogSortEnum { +ASCENDING, +DESCENDING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExplainabilityActionLogs.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExplainabilityActionLogs.cls new file mode 100644 index 0000000..1163aac --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExplainabilityActionLogs.cls @@ -0,0 +1,11 @@ +global class ExplainabilityActionLogs { + global List actionLogs; + global String queryMore; + global ExplainabilityActionLogs() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExplainabilityLogDetail.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExplainabilityLogDetail.cls new file mode 100644 index 0000000..65bee6c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExplainabilityLogDetail.cls @@ -0,0 +1,16 @@ +global class ExplainabilityLogDetail { + global String actionContextCode; + global String actionLog; + global String applicationLogDate; + global String applicationSubtype; + global String applicationType; + global String name; + global String processType; + global ExplainabilityLogDetail() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExplainabilityLogs.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExplainabilityLogs.cls new file mode 100644 index 0000000..169971a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExplainabilityLogs.cls @@ -0,0 +1,11 @@ +global class ExplainabilityLogs { + global List actionLogs; + global String queryMore; + global ExplainabilityLogs() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExplainabilityService.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExplainabilityService.cls new file mode 100644 index 0000000..0822c3e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExplainabilityService.cls @@ -0,0 +1,3 @@ +global class ExplainabilityService { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExpressionDataType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExpressionDataType.cls new file mode 100644 index 0000000..4b690be --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExpressionDataType.cls @@ -0,0 +1,8 @@ +global enum ExpressionDataType { +BOOLEAN, +DATE, +DATETIME, +NUMBER, +SOBJECT, +TEXT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExpressionSetVersionDependencyEnumRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExpressionSetVersionDependencyEnumRepresentation.cls new file mode 100644 index 0000000..fe69f46 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExpressionSetVersionDependencyEnumRepresentation.cls @@ -0,0 +1,5 @@ +global enum ExpressionSetVersionDependencyEnumRepresentation { +DECISIONMATRIX, +DECISIONTABLE, +EXPRESSIONSET +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExpressionSetVersionDependencyOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExpressionSetVersionDependencyOutputRepresentation.cls new file mode 100644 index 0000000..6481a9a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExpressionSetVersionDependencyOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class ExpressionSetVersionDependencyOutputRepresentation { + global List dependencies; + global String id; + global ExpressionSetVersionDependencyOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExtendedFieldInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExtendedFieldInput.cls new file mode 100644 index 0000000..0b9fafb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExtendedFieldInput.cls @@ -0,0 +1,10 @@ +global class ExtendedFieldInput { + global String name; + global String value; + global ExtendedFieldInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Extension.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Extension.cls new file mode 100644 index 0000000..0803250 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Extension.cls @@ -0,0 +1,14 @@ +global class Extension { + global ConnectApi.Alternative alternativeRepresentation; + global String attachmentId; + global String extensionId; + global String payload; + global String payloadVersion; + global Extension() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExtensionDefinition.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExtensionDefinition.cls new file mode 100644 index 0000000..37fe9d6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExtensionDefinition.cls @@ -0,0 +1,20 @@ +global class ExtensionDefinition { + global Boolean canAccess; + global Boolean canCreate; + global Datetime createdDate; + global String description; + global String iconUrl; + global String id; + global List informationCollection; + global Boolean isEnabledInCommunity; + global Boolean isEnabledInLightningPublisher; + global String name; + global Integer position; + global ExtensionDefinition() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExtensionDefinitions.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExtensionDefinitions.cls new file mode 100644 index 0000000..10922d5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExtensionDefinitions.cls @@ -0,0 +1,15 @@ +global class ExtensionDefinitions { + global String currentPageToken; + global String currentPageUrl; + global List extensionDefinitions; + global String nextPageToken; + global String nextPageUrl; + global Integer total; + global ExtensionDefinitions() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExtensionInformationType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExtensionInformationType.cls new file mode 100644 index 0000000..5315ff8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExtensionInformationType.cls @@ -0,0 +1,3 @@ +global enum ExtensionInformationType { +LIGHTNING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExtensionInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExtensionInput.cls new file mode 100644 index 0000000..e663bcd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExtensionInput.cls @@ -0,0 +1,12 @@ +global class ExtensionInput { + global ConnectApi.AlternativeInput alternativeRepresentation; + global String extensionId; + global String payload; + global String payloadVersion; + global ExtensionInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExtensionOutputCollectionRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExtensionOutputCollectionRepresentation.cls new file mode 100644 index 0000000..dc598ea --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExtensionOutputCollectionRepresentation.cls @@ -0,0 +1,11 @@ +global class ExtensionOutputCollectionRepresentation { + global Integer count; + global List items; + global ExtensionOutputCollectionRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExtensionOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExtensionOutputRepresentation.cls new file mode 100644 index 0000000..686b77c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExtensionOutputRepresentation.cls @@ -0,0 +1,16 @@ +global class ExtensionOutputRepresentation { + global String domain; + global String epn; + global String name; + global String product; + global String status; + global String type; + global Integer version; + global ExtensionOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExtensionsCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExtensionsCapability.cls new file mode 100644 index 0000000..7b9c9cd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExtensionsCapability.cls @@ -0,0 +1,10 @@ +global class ExtensionsCapability { + global List items; + global ExtensionsCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExtensionsCapabilityInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExtensionsCapabilityInput.cls new file mode 100644 index 0000000..643463f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExtensionsCapabilityInput.cls @@ -0,0 +1,10 @@ +global class ExtensionsCapabilityInput { + global List itemsToAdd; + global List itemsToRemove; + global ExtensionsCapabilityInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredential.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredential.cls new file mode 100644 index 0000000..be255d6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredential.cls @@ -0,0 +1,20 @@ +global class ExternalCredential { + global ConnectApi.CredentialAuthenticationProtocol authenticationProtocol; + global ConnectApi.CredentialAuthenticationProtocolVariant authenticationProtocolVariant; + global ConnectApi.CredentialAuthenticationStatus authenticationStatus; + global List customHeaders; + global String developerName; + global String id; + global String masterLabel; + global List parameters; + global List principals; + global List relatedNamedCredentials; + global String url; + global ExternalCredential() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialAuthParameterName.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialAuthParameterName.cls new file mode 100644 index 0000000..d2b3738 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialAuthParameterName.cls @@ -0,0 +1,10 @@ +global enum ExternalCredentialAuthParameterName { +AWSACCOUNTID, +AWSPROFILEARN, +AWSREGION, +AWSSERVICE, +AWSSTSDURATION, +AWSSTSEXTERNALID, +AWSTRUSTANCHORARN, +SCOPE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialInput.cls new file mode 100644 index 0000000..486604d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialInput.cls @@ -0,0 +1,15 @@ +global class ExternalCredentialInput { + global ConnectApi.CredentialAuthenticationProtocol authenticationProtocol; + global ConnectApi.CredentialAuthenticationProtocolVariant authenticationProtocolVariant; + global List customHeaders; + global String developerName; + global String masterLabel; + global List parameters; + global List principals; + global ExternalCredentialInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialList.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialList.cls new file mode 100644 index 0000000..58676e0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialList.cls @@ -0,0 +1,10 @@ +global class ExternalCredentialList { + global List externalCredentials; + global ExternalCredentialList() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialParameter.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialParameter.cls new file mode 100644 index 0000000..0aa02e3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialParameter.cls @@ -0,0 +1,14 @@ +global class ExternalCredentialParameter { + global String id; + global String parameterDescription; + global String parameterName; + global ConnectApi.ExternalCredentialParameterType parameterType; + global String parameterValue; + global ExternalCredentialParameter() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialParameterInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialParameterInput.cls new file mode 100644 index 0000000..e2a5245 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialParameterInput.cls @@ -0,0 +1,13 @@ +global class ExternalCredentialParameterInput { + global String id; + global String parameterDescription; + global String parameterName; + global ConnectApi.ExternalCredentialParameterType parameterType; + global String parameterValue; + global ExternalCredentialParameterInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialParameterType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialParameterType.cls new file mode 100644 index 0000000..edbcecc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialParameterType.cls @@ -0,0 +1,9 @@ +global enum ExternalCredentialParameterType { +AUTHPARAMETER, +AUTHPROVIDER, +AUTHPROVIDERURL, +AUTHPROVIDERURLQUERYPARAMETER, +JWTBODYCLAIM, +JWTHEADERCLAIM, +SIGNINGCERTIFICATE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialPrincipal.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialPrincipal.cls new file mode 100644 index 0000000..c04c080 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialPrincipal.cls @@ -0,0 +1,16 @@ +global class ExternalCredentialPrincipal { + global ConnectApi.CredentialAuthenticationStatus authenticationStatus; + global String id; + global List parameters; + global List principalAccess; + global String principalName; + global ConnectApi.CredentialPrincipalType principalType; + global Integer sequenceNumber; + global ExternalCredentialPrincipal() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialPrincipalAccess.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialPrincipalAccess.cls new file mode 100644 index 0000000..be55fd3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialPrincipalAccess.cls @@ -0,0 +1,12 @@ +global class ExternalCredentialPrincipalAccess { + global String developerName; + global String id; + global ConnectApi.ExternalCredentialPrincipalAccessType type; + global ExternalCredentialPrincipalAccess() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialPrincipalAccessType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialPrincipalAccessType.cls new file mode 100644 index 0000000..fb349e2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialPrincipalAccessType.cls @@ -0,0 +1,5 @@ +global enum ExternalCredentialPrincipalAccessType { +PERMISSIONSET, +PERMISSIONSETGROUP, +PROFILE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialPrincipalInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialPrincipalInput.cls new file mode 100644 index 0000000..4efdcc8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalCredentialPrincipalInput.cls @@ -0,0 +1,13 @@ +global class ExternalCredentialPrincipalInput { + global String id; + global List parameters; + global String principalName; + global ConnectApi.CredentialPrincipalType principalType; + global Integer sequenceNumber; + global ExternalCredentialPrincipalInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalDocCreationInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalDocCreationInputRepresentation.cls new file mode 100644 index 0000000..79ae651 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalDocCreationInputRepresentation.cls @@ -0,0 +1,12 @@ +global class ExternalDocCreationInputRepresentation { + global String contentVersionId; + global String documentNamePrefix; + global String isAsync; + global String refObjectId; + global ExternalDocCreationInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalDocCreationOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalDocCreationOutputRepresentation.cls new file mode 100644 index 0000000..0b394e5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalDocCreationOutputRepresentation.cls @@ -0,0 +1,13 @@ +global class ExternalDocCreationOutputRepresentation { + global Object externalDocumentDetails; + global Boolean isSuccess; + global String message; + global String ssoLinkUrl; + global ExternalDocCreationOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalDocument.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalDocument.cls new file mode 100644 index 0000000..6810a37 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalDocument.cls @@ -0,0 +1,3 @@ +global class ExternalDocument { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalDocumentOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalDocumentOutputRepresentation.cls new file mode 100644 index 0000000..d5338fe --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalDocumentOutputRepresentation.cls @@ -0,0 +1,15 @@ +global class ExternalDocumentOutputRepresentation { + global String contentVersionId; + global String externalDocumentId; + global String externalUserId; + global String referenceObject; + global String referenceObjectId; + global String url; + global ExternalDocumentOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalEmailService.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalEmailService.cls new file mode 100644 index 0000000..a6de224 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalEmailService.cls @@ -0,0 +1,5 @@ +global class ExternalEmailService { + global Object clone() { } + global static ConnectApi.UserOauthInfo getUserOauthInfo(String landingPage) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalFilePermissionInformation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalFilePermissionInformation.cls new file mode 100644 index 0000000..669145a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalFilePermissionInformation.cls @@ -0,0 +1,14 @@ +global class ExternalFilePermissionInformation { + global List externalFilePermissionTypes; + global Boolean externalFilePermissionsFailure; + global String externalFilePermissionsInfoFailureReason; + global ConnectApi.ContentHubExternalItemSharingType externalFileSharingStatus; + global List repositoryPublicGroups; + global ExternalFilePermissionInformation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalManagedAccount.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalManagedAccount.cls new file mode 100644 index 0000000..865ed37 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalManagedAccount.cls @@ -0,0 +1,3 @@ +global class Externalmanagedaccount { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalManagedAccountAddressOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalManagedAccountAddressOutput.cls new file mode 100644 index 0000000..493b8bb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalManagedAccountAddressOutput.cls @@ -0,0 +1,17 @@ +global class ExternalManagedAccountAddressOutput { + global String city; + global String country; + global String geolocationAccuracy; + global String latitude; + global String longitude; + global String state; + global String street; + global String zip; + global ExternalManagedAccountAddressOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalManagedAccountCollectionOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalManagedAccountCollectionOutput.cls new file mode 100644 index 0000000..009f984 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalManagedAccountCollectionOutput.cls @@ -0,0 +1,11 @@ +global class ExternalManagedAccountCollectionOutput { + global List externalManagedAccounts; + global Integer totalExternalManagedAccounts; + global ExternalManagedAccountCollectionOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalManagedAccountOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalManagedAccountOutput.cls new file mode 100644 index 0000000..d94adfa --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ExternalManagedAccountOutput.cls @@ -0,0 +1,14 @@ +global class ExternalManagedAccountOutput { + global String accountId; + global String accountName; + global ConnectApi.ExternalManagedAccountAddressOutput address; + global String externalManagedAccountId; + global Boolean isMyAccount; + global ExternalManagedAccountOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FacetValue.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FacetValue.cls new file mode 100644 index 0000000..a268562 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FacetValue.cls @@ -0,0 +1,9 @@ +global class FacetValue { + global ConnectApi.CommerceSearchFacetType type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeatureExtractionParametersFieldMapValue.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeatureExtractionParametersFieldMapValue.cls new file mode 100644 index 0000000..c963e1c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeatureExtractionParametersFieldMapValue.cls @@ -0,0 +1,9 @@ +global class FeatureExtractionParametersFieldMapValue { + global Object featureExtractionParametersMapValue; + global FeatureExtractionParametersFieldMapValue() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeatureValidationUseCaseEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeatureValidationUseCaseEnum.cls new file mode 100644 index 0000000..d354032 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeatureValidationUseCaseEnum.cls @@ -0,0 +1,3 @@ +global enum FeatureValidationUseCaseEnum { +HEALTHCLOUDIAM +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Features.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Features.cls new file mode 100644 index 0000000..0f16feb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Features.cls @@ -0,0 +1,57 @@ +global class Features { + global Boolean activityReminderNotificationsEnabled; + global Boolean chatter; + global Boolean chatterActivity; + global Boolean chatterAnswers; + global Boolean chatterGlobalInfluence; + global Boolean chatterGroupRecordSharing; + global Boolean chatterGroupRecords; + global Boolean chatterMessages; + global Boolean chatterTopics; + global Boolean communitiesEnabled; + global Boolean communityModeration; + global Boolean communityReputation; + global Boolean connectRecords; + global Boolean dashboardComponentSnapshots; + global String defaultCurrencyIsoCode; + global Boolean einsteinVoiceEnabled; + global Boolean einsteinVoiceInPilotEnabled; + global Boolean einsteinVoiceLoggingEnabled; + global Integer einsteinVoiceProviderId; + global Boolean favoritesEnabled; + global Integer favoritesLimit; + global Boolean feedPolling; + global Boolean feedStreamEnabled; + global Boolean files; + global Boolean filesOnComments; + global Boolean forecasting3AggregatedEnabled; + global Boolean forecastingEnabled; + global Integer forecastingPeriodRange; + global Integer forecastingPeriodStart; + global ConnectApi.PeriodTypesEnum forecastingPeriodType; + global Boolean groupsCanFollow; + global Boolean ideas; + global String liveAgentHostName; + global Boolean managedTopicsEnabled; + global Integer maxEntitySubscriptionsPerStream; + global Integer maxFilesPerFeedItem; + global Integer maxStreamsPerPerson; + global Boolean mobileNotificationsEnabled; + global Boolean multiCurrency; + global Boolean offlineEditEnabled; + global Boolean publisherActions; + global Boolean storeDataOnDevicesEnabled; + global Boolean thanksAllowed; + global Boolean trendingTopics; + global Boolean userNavItemsEnabled; + global Integer userNavItemsMax; + global Boolean viralInvitesAllowed; + global Boolean wave; + global Features() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Feed.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Feed.cls new file mode 100644 index 0000000..9b5f2bd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Feed.cls @@ -0,0 +1,19 @@ +global class Feed { + global String feedElementPostUrl; + global ConnectApi.FeedElementPage feedElements; + global String feedElementsUrl; + global String feedItemsUrl; + global String isModifiedUrl; + global String pinnedFeedElementsUrl; + global ConnectApi.FeedFilter redirectedFeedFilter; + global ConnectApi.FeedSortOrder redirectedFeedSort; + global ConnectApi.FeedType redirectedFeedType; + global Boolean respectsMute; + global Feed() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedBody.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedBody.cls new file mode 100644 index 0000000..bf6868e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedBody.cls @@ -0,0 +1,9 @@ +global class FeedBody { + global FeedBody() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedCommentSortOrder.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedCommentSortOrder.cls new file mode 100644 index 0000000..f680e36 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedCommentSortOrder.cls @@ -0,0 +1,5 @@ +global enum FeedCommentSortOrder { +CREATEDDATELATESTASC, +CREATEDDATEOLDESTASC, +RELEVANCE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedDensity.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedDensity.cls new file mode 100644 index 0000000..692bb28 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedDensity.cls @@ -0,0 +1,4 @@ +global enum FeedDensity { +ALLUPDATES, +FEWERUPDATES +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedDirectory.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedDirectory.cls new file mode 100644 index 0000000..77501a8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedDirectory.cls @@ -0,0 +1,11 @@ +global class FeedDirectory { + global List favorites; + global List feeds; + global FeedDirectory() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedDirectoryItem.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedDirectoryItem.cls new file mode 100644 index 0000000..40ddec6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedDirectoryItem.cls @@ -0,0 +1,15 @@ +global class FeedDirectoryItem { + global String feedElementsUrl; + global String feedItemsUrl; + global ConnectApi.FeedType feedType; + global String feedUrl; + global String keyPrefix; + global String label; + global FeedDirectoryItem() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedElement.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedElement.cls new file mode 100644 index 0000000..a05809a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedElement.cls @@ -0,0 +1,18 @@ +global class FeedElement { + global ConnectApi.FeedBody body; + global ConnectApi.FeedElementCapabilities capabilities; + global Datetime createdDate; + global ConnectApi.FeedElementType feedElementType; + global ConnectApi.MessageBody header; + global String id; + global Datetime modifiedDate; + global ConnectApi.ActorWithId parent; + global String relativeCreatedDate; + global String url; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedElementCapabilities.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedElementCapabilities.cls new file mode 100644 index 0000000..251c2f2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedElementCapabilities.cls @@ -0,0 +1,46 @@ +global class FeedElementCapabilities { + global ConnectApi.ApprovalCapability approval; + global ConnectApi.AssociatedActionsCapability associatedActions; + global ConnectApi.BannerCapability banner; + global ConnectApi.BookmarksCapability bookmarks; + global ConnectApi.BundleCapability bundle; + global ConnectApi.CallCollaborationCapability callCollaboration; + global ConnectApi.CanvasCapability canvas; + global ConnectApi.CaseCommentCapability caseComment; + global ConnectApi.ChatterLikesCapability chatterLikes; + global ConnectApi.CloseCapability close; + global ConnectApi.CommentsCapability comments; + global ConnectApi.ContentCapability content; + global ConnectApi.DashboardComponentSnapshotCapability dashboardComponentSnapshot; + global ConnectApi.DirectMessageCapability directMessage; + global ConnectApi.EditCapability edit; + global ConnectApi.EmailMessageCapability emailMessage; + global ConnectApi.EnhancedLinkCapability enhancedLink; + global ConnectApi.ExtensionsCapability extensions; + global ConnectApi.FeedEntityShareCapability feedEntityShare; + global ConnectApi.FilesCapability files; + global ConnectApi.InteractionsCapability interactions; + global ConnectApi.LinkCapability link; + global ConnectApi.MediaReferenceCapability mediaReferences; + global ConnectApi.ModerationCapability moderation; + global ConnectApi.MuteCapability mute; + global ConnectApi.OriginCapability origin; + global ConnectApi.PinCapability pin; + global ConnectApi.PollCapability poll; + global ConnectApi.QuestionAndAnswersCapability questionAndAnswers; + global ConnectApi.ReadByCapability readBy; + global ConnectApi.RecommendationsCapability recommendations; + global ConnectApi.RecordSnapshotCapability recordSnapshot; + global ConnectApi.SocialPostCapability socialPost; + global ConnectApi.StatusCapability status; + global ConnectApi.TopicsCapability topics; + global ConnectApi.TrackedChangesCapability trackedChanges; + global ConnectApi.UpDownVoteCapability upDownVote; + global FeedElementCapabilities() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedElementCapabilitiesInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedElementCapabilitiesInput.cls new file mode 100644 index 0000000..065fb63 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedElementCapabilitiesInput.cls @@ -0,0 +1,21 @@ +global class FeedElementCapabilitiesInput { + global ConnectApi.AssociatedActionsCapabilityInput associatedActions; + global ConnectApi.BookmarksCapabilityInput bookmarks; + global ConnectApi.CanvasCapabilityInput canvas; + global ConnectApi.ContentCapabilityInput content; + global ConnectApi.DirectMessageCapabilityInput directMessage; + global ConnectApi.ExtensionsCapabilityInput extensions; + global ConnectApi.FeedEntityShareCapabilityInput feedEntityShare; + global ConnectApi.FilesCapabilityInput files; + global ConnectApi.LinkCapabilityInput link; + global ConnectApi.PollCapabilityInput poll; + global ConnectApi.QuestionAndAnswersCapabilityInput questionAndAnswers; + global ConnectApi.StatusCapabilityInput status; + global ConnectApi.TopicsCapabilityInput topics; + global FeedElementCapabilitiesInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedElementCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedElementCapability.cls new file mode 100644 index 0000000..64a9bbf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedElementCapability.cls @@ -0,0 +1,8 @@ +global class FeedElementCapability { + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedElementCapabilityInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedElementCapabilityInput.cls new file mode 100644 index 0000000..8ea1888 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedElementCapabilityInput.cls @@ -0,0 +1,7 @@ +global class FeedElementCapabilityInput { + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedElementCapabilityType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedElementCapabilityType.cls new file mode 100644 index 0000000..d04a0d8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedElementCapabilityType.cls @@ -0,0 +1,41 @@ +global enum FeedElementCapabilityType { +APPROVAL, +ASSOCIATEDACTIONS, +BANNER, +BOOKMARKS, +BUNDLE, +CALLCOLLABORATION, +CANVAS, +CASECOMMENT, +CHATTERLIKES, +CLOSE, +COMMENTS, +CONTENT, +DASHBOARDCOMPONENTSNAPSHOT, +DIRECTMESSAGE, +EDIT, +EMAILMESSAGE, +ENHANCEDLINK, +EXTENSIONS, +FEEDENTITYSHARE, +FILES, +INTERACTIONS, +LINK, +MEDIAREFERENCES, +MODERATION, +MUTE, +ORIGIN, +PIN, +POLL, +QUESTIONANDANSWERS, +READBY, +RECOMMENDATIONS, +RECORD, +RECORDSNAPSHOT, +SOCIALPOST, +STATUS, +TOPICS, +TRACKEDCHANGES, +UPDOWNVOTE, +VERIFIED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedElementInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedElementInput.cls new file mode 100644 index 0000000..0cd97d4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedElementInput.cls @@ -0,0 +1,10 @@ +global class FeedElementInput { + global ConnectApi.FeedElementCapabilitiesInput capabilities; + global ConnectApi.FeedElementType feedElementType; + global String subjectId; + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedElementPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedElementPage.cls new file mode 100644 index 0000000..0495124 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedElementPage.cls @@ -0,0 +1,19 @@ +global class FeedElementPage { + global String currentPageToken; + global String currentPageUrl; + global List elements; + global String isModifiedToken; + global String isModifiedUrl; + global String nextPageToken; + global String nextPageUrl; + global String searchQueryId; + global String updatesToken; + global String updatesUrl; + global FeedElementPage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedElementType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedElementType.cls new file mode 100644 index 0000000..6387c32 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedElementType.cls @@ -0,0 +1,5 @@ +global enum FeedElementType { +BUNDLE, +FEEDITEM, +RECOMMENDATION +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedEnabledEntity.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedEnabledEntity.cls new file mode 100644 index 0000000..3d7e535 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedEnabledEntity.cls @@ -0,0 +1,15 @@ +global class FeedEnabledEntity { + global String id; + global ConnectApi.Motif motif; + global String name; + global String networkId; + global String type; + global String url; + global FeedEnabledEntity() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedEntityIsEditable.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedEntityIsEditable.cls new file mode 100644 index 0000000..51e02fe --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedEntityIsEditable.cls @@ -0,0 +1,12 @@ +global class FeedEntityIsEditable { + global Boolean areAttachmentsEditableByMe; + global String feedEntityUrl; + global Boolean isEditableByMe; + global FeedEntityIsEditable() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedEntityNotAvailableSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedEntityNotAvailableSummary.cls new file mode 100644 index 0000000..02b860b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedEntityNotAvailableSummary.cls @@ -0,0 +1,9 @@ +global class FeedEntityNotAvailableSummary { + global FeedEntityNotAvailableSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedEntityReadSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedEntityReadSummary.cls new file mode 100644 index 0000000..4b18d5a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedEntityReadSummary.cls @@ -0,0 +1,9 @@ +global class FeedEntityReadSummary { + global FeedEntityReadSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedEntityShareCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedEntityShareCapability.cls new file mode 100644 index 0000000..3f846e7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedEntityShareCapability.cls @@ -0,0 +1,10 @@ +global class FeedEntityShareCapability { + global ConnectApi.FeedEntitySummary feedEntity; + global FeedEntityShareCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedEntityShareCapabilityInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedEntityShareCapabilityInput.cls new file mode 100644 index 0000000..7847874 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedEntityShareCapabilityInput.cls @@ -0,0 +1,9 @@ +global class FeedEntityShareCapabilityInput { + global String feedEntityId; + global FeedEntityShareCapabilityInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedEntityStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedEntityStatus.cls new file mode 100644 index 0000000..63061a4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedEntityStatus.cls @@ -0,0 +1,5 @@ +global enum FeedEntityStatus { +DRAFT, +PENDINGREVIEW, +PUBLISHED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedEntitySummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedEntitySummary.cls new file mode 100644 index 0000000..1e18939 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedEntitySummary.cls @@ -0,0 +1,17 @@ +global class FeedEntitySummary { + global ConnectApi.Actor actor; + global ConnectApi.FeedBody body; + global Datetime createdDate; + global ConnectApi.FeedElementType feedElementType; + global String id; + global Boolean isEntityAvailable; + global ConnectApi.ActorWithId parent; + global String relativeCreatedDate; + global String url; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedFavorite.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedFavorite.cls new file mode 100644 index 0000000..0291c95 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedFavorite.cls @@ -0,0 +1,20 @@ +global class FeedFavorite { + global ConnectApi.Reference community; + global ConnectApi.UserSummary createdBy; + global String feedUrl; + global String id; + global Datetime lastViewDate; + global String name; + global String searchText; + global ConnectApi.Reference target; + global ConnectApi.FeedFavoriteType type; + global String url; + global ConnectApi.UserSummary user; + global FeedFavorite() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedFavoriteType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedFavoriteType.cls new file mode 100644 index 0000000..68c2d05 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedFavoriteType.cls @@ -0,0 +1,5 @@ +global enum FeedFavoriteType { +LISTVIEW, +SEARCH, +TOPIC +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedFavorites.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedFavorites.cls new file mode 100644 index 0000000..97d942a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedFavorites.cls @@ -0,0 +1,11 @@ +global class FeedFavorites { + global List favorites; + global Integer total; + global FeedFavorites() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedFilter.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedFilter.cls new file mode 100644 index 0000000..ebd9e79 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedFilter.cls @@ -0,0 +1,13 @@ +global enum FeedFilter { +ALLQUESTIONS, +AUTHOREDBY, +COMMUNITYSCOPED, +QUESTIONSWITHCANDIDATEANSWERS, +QUESTIONSWITHCANDIDATEANSWERSREVIEWEDPUBLISHED, +READ, +SOLVEDQUESTIONS, +UNANSWEREDQUESTIONS, +UNANSWEREDQUESTIONSWITHCANDIDATEANSWERS, +UNREAD, +UNSOLVEDQUESTIONS +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItem.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItem.cls new file mode 100644 index 0000000..287c7ac --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItem.cls @@ -0,0 +1,31 @@ +global class FeedItem { + global ConnectApi.Actor actor; + global ConnectApi.FeedItemAttachment attachment; + global Boolean canShare; + global ConnectApi.ClientInfo clientInfo; + global ConnectApi.CommentPage comments; + global Boolean event; + global Boolean hasVerifiedComment; + global Boolean isBookmarkedByCurrentUser; + global Boolean isDeleteRestricted; + global Boolean isLikedByCurrentUser; + global Boolean isSharable; + global ConnectApi.ChatterLikePage likes; + global ConnectApi.MessageBody likesMessage; + global ConnectApi.ModerationFlags moderationFlags; + global ConnectApi.Reference myLike; + global ConnectApi.Reference originalFeedItem; + global ConnectApi.Actor originalFeedItemActor; + global String photoUrl; + global ConnectApi.MessageBody preamble; + global ConnectApi.FeedItemTopicPage topics; + global ConnectApi.FeedItemType type; + global ConnectApi.FeedItemVisibilityType visibility; + global FeedItem() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItemAttachment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItemAttachment.cls new file mode 100644 index 0000000..eb2b371 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItemAttachment.cls @@ -0,0 +1,9 @@ +global class FeedItemAttachment { + global ConnectApi.FeedItemAttachmentType type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItemAttachmentInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItemAttachmentInput.cls new file mode 100644 index 0000000..044f74f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItemAttachmentInput.cls @@ -0,0 +1,7 @@ +global class FeedItemAttachmentInput { + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItemAttachmentType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItemAttachmentType.cls new file mode 100644 index 0000000..6d70f69 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItemAttachmentType.cls @@ -0,0 +1,14 @@ +global enum FeedItemAttachmentType { +APPROVAL, +BASICTEMPLATE, +CANVAS, +CASECOMMENT, +CONTENT, +DASHBOARDCOMPONENT, +EMAILMESSAGE, +LINK, +POLL, +QUESTION, +RECORDSNAPSHOT, +TRACKEDCHANGE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItemInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItemInput.cls new file mode 100644 index 0000000..f939a56 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItemInput.cls @@ -0,0 +1,14 @@ +global class FeedItemInput { + global ConnectApi.FeedItemAttachmentInput attachment; + global ConnectApi.MessageBodyInput body; + global Boolean isBookmarkedByCurrentUser; + global String originalFeedElementId; + global String originalFeedItemId; + global ConnectApi.FeedItemVisibilityType visibility; + global FeedItemInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItemPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItemPage.cls new file mode 100644 index 0000000..0865efd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItemPage.cls @@ -0,0 +1,18 @@ +global class FeedItemPage { + global String currentPageToken; + global String currentPageUrl; + global String isModifiedToken; + global String isModifiedUrl; + global List items; + global String nextPageToken; + global String nextPageUrl; + global String updatesToken; + global String updatesUrl; + global FeedItemPage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItemSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItemSummary.cls new file mode 100644 index 0000000..00bf000 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItemSummary.cls @@ -0,0 +1,16 @@ +global class FeedItemSummary { + global ConnectApi.FeedElementCapabilities capabilities; + global ConnectApi.MessageBody header; + global Datetime modifiedDate; + global ConnectApi.Reference originalFeedItem; + global ConnectApi.Actor originalFeedItemActor; + global String photoUrl; + global ConnectApi.FeedItemVisibilityType visibility; + global FeedItemSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItemTopicPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItemTopicPage.cls new file mode 100644 index 0000000..38d541f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItemTopicPage.cls @@ -0,0 +1,11 @@ +global class FeedItemTopicPage { + global Boolean canAssignTopics; + global List topics; + global FeedItemTopicPage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItemType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItemType.cls new file mode 100644 index 0000000..5eb62b4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItemType.cls @@ -0,0 +1,32 @@ +global enum FeedItemType { +ACTIVITYEVENT, +ADVANCEDTEXTPOST, +ANNOUNCEMENTPOST, +APPROVALPOST, +ATTACHARTICLEEVENT, +BASICTEMPLATEFEEDITEM, +CALLLOGPOST, +CANVASPOST, +CASECOMMENTPOST, +CHANGESTATUSPOST, +CHATTRANSCRIPTPOST, +COLLABORATIONGROUPCREATED, +COLLABORATIONGROUPUNARCHIVED, +CONTENTPOST, +CREATERECORDEVENT, +DASHBOARDCOMPONENTALERT, +DASHBOARDCOMPONENTSNAPSHOT, +EMAILMESSAGEEVENT, +FACEBOOKPOST, +LINKPOST, +MILESTONEEVENT, +POLLPOST, +PROFILESKILLPOST, +QUESTIONPOST, +REPLYPOST, +RYPPLEPOST, +SOCIALPOST, +TEXTPOST, +TRACKEDCHANGE, +USERSTATUS +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItemVisibilityType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItemVisibilityType.cls new file mode 100644 index 0000000..fa00b80 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedItemVisibilityType.cls @@ -0,0 +1,4 @@ +global enum FeedItemVisibilityType { +ALLUSERS, +INTERNALUSERS +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedModifiedInfo.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedModifiedInfo.cls new file mode 100644 index 0000000..da6ec2e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedModifiedInfo.cls @@ -0,0 +1,12 @@ +global class FeedModifiedInfo { + global Boolean isModified; + global String isModifiedToken; + global String nextPollUrl; + global FeedModifiedInfo() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedPoll.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedPoll.cls new file mode 100644 index 0000000..b41ad71 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedPoll.cls @@ -0,0 +1,12 @@ +global class FeedPoll { + global List choices; + global String myChoiceId; + global Integer totalVoteCount; + global FeedPoll() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedPollChoice.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedPollChoice.cls new file mode 100644 index 0000000..c5be5d1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedPollChoice.cls @@ -0,0 +1,14 @@ +global class FeedPollChoice { + global String id; + global Integer position; + global String text; + global Integer voteCount; + global Double voteCountRatio; + global FeedPollChoice() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedPostSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedPostSummary.cls new file mode 100644 index 0000000..1c8d715 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedPostSummary.cls @@ -0,0 +1,10 @@ +global class FeedPostSummary { + global String feedItemId; + global FeedPostSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedReadStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedReadStatus.cls new file mode 100644 index 0000000..b9c53c9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedReadStatus.cls @@ -0,0 +1,10 @@ +global class FeedReadStatus { + global Boolean isReadByMe; + global FeedReadStatus() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedReadStatusInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedReadStatusInput.cls new file mode 100644 index 0000000..413ff7a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedReadStatusInput.cls @@ -0,0 +1,9 @@ +global class FeedReadStatusInput { + global Datetime lastReadDate; + global FeedReadStatusInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedReadSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedReadSummary.cls new file mode 100644 index 0000000..a61577f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedReadSummary.cls @@ -0,0 +1,11 @@ +global class FeedReadSummary { + global String containerId; + global ConnectApi.FeedType feedType; + global FeedReadSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedSortOrder.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedSortOrder.cls new file mode 100644 index 0000000..966a83b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedSortOrder.cls @@ -0,0 +1,7 @@ +global enum FeedSortOrder { +CREATEDDATEASC, +CREATEDDATEDESC, +LASTMODIFIEDDATEDESC, +MOSTVIEWED, +RELEVANCE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedType.cls new file mode 100644 index 0000000..f974d41 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FeedType.cls @@ -0,0 +1,22 @@ +global enum FeedType { +BOOKMARKS, +COMPANY, +DIRECTMESSAGEMODERATION, +DIRECTMESSAGES, +DRAFT, +FILES, +FILTER, +GROUPS, +HOME, +LANDING, +MODERATION, +MUTED, +NEWS, +PENDINGREVIEW, +PEOPLE, +RECORD, +STREAMS, +TO, +TOPICS, +USERPROFILE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FieldChangeNameSegment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FieldChangeNameSegment.cls new file mode 100644 index 0000000..702e62a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FieldChangeNameSegment.cls @@ -0,0 +1,9 @@ +global class FieldChangeNameSegment { + global FieldChangeNameSegment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FieldChangeSegment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FieldChangeSegment.cls new file mode 100644 index 0000000..17e60c5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FieldChangeSegment.cls @@ -0,0 +1,9 @@ +global class FieldChangeSegment { + global FieldChangeSegment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FieldChangeValueSegment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FieldChangeValueSegment.cls new file mode 100644 index 0000000..a211723 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FieldChangeValueSegment.cls @@ -0,0 +1,11 @@ +global class FieldChangeValueSegment { + global String url; + global ConnectApi.FieldChangeValueType valueType; + global FieldChangeValueSegment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FieldChangeValueType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FieldChangeValueType.cls new file mode 100644 index 0000000..89588bd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FieldChangeValueType.cls @@ -0,0 +1,4 @@ +global enum FieldChangeValueType { +NEWVALUE, +OLDVALUE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FieldClassificationSetting.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FieldClassificationSetting.cls new file mode 100644 index 0000000..2f0573c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FieldClassificationSetting.cls @@ -0,0 +1,12 @@ +global class FieldClassificationSetting { + global Double confidenceThreshold; + global String fieldClassificationSettingId; + global String type; + global FieldClassificationSetting() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FieldService.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FieldService.cls new file mode 100644 index 0000000..7bac3fb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FieldService.cls @@ -0,0 +1,3 @@ +global class FieldService { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FieldValue.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FieldValue.cls new file mode 100644 index 0000000..32f7a0a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FieldValue.cls @@ -0,0 +1,10 @@ +global class FieldValue { + global String value; + global FieldValue() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FieldValueInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FieldValueInput.cls new file mode 100644 index 0000000..c8eda7a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FieldValueInput.cls @@ -0,0 +1,10 @@ +global class FieldValueInput { + global String developerName; + global String value; + global FieldValueInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FieldValueOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FieldValueOutputRepresentation.cls new file mode 100644 index 0000000..fdc0394 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FieldValueOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class FieldValueOutputRepresentation { + global String developerName; + global String value; + global FieldValueOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/File.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/File.cls new file mode 100644 index 0000000..6838c30 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/File.cls @@ -0,0 +1,41 @@ +global class File { + global String checksum; + global Datetime contentModifiedDate; + global Integer contentSize; + global String contentUrl; + global Datetime createdDate; + global String description; + global String downloadUrl; + global String fileExtension; + global String fileType; + global String flashRenditionStatus; + global Boolean isFileAsset; + global Boolean isInMyFileSync; + global Boolean isMajorVersion; + global String mimeType; + global ConnectApi.ModerationFlags moderationFlags; + global Datetime modifiedDate; + global String origin; + global ConnectApi.UserSummary owner; + global String pdfRenditionStatus; + global ConnectApi.FilePublishStatus publishStatus; + global String renditionUrl; + global String renditionUrl240By180; + global String renditionUrl720By480; + global ConnectApi.FileSharingOption sharingOption; + global ConnectApi.FileSharingPrivacy sharingPrivacy; + global ConnectApi.FileSharingType sharingRole; + global Datetime systemModstamp; + global String textPreview; + global String thumb120By90RenditionStatus; + global String thumb240By180RenditionStatus; + global String thumb720By480RenditionStatus; + global String title; + global String versionNumber; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileAsset.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileAsset.cls new file mode 100644 index 0000000..0f5e2cb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileAsset.cls @@ -0,0 +1,17 @@ +global class FileAsset { + global String baseAssetUrl; + global String baseUnauthenticatedAssetUrl; + global String id; + global Boolean isVisibleByExternalUsers; + global String masterLabel; + global String name; + global String namespacePrefix; + global String type; + global FileAsset() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileIdInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileIdInput.cls new file mode 100644 index 0000000..35d1e98 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileIdInput.cls @@ -0,0 +1,10 @@ +global class FileIdInput { + global String id; + global ConnectApi.OperationType operationType; + global FileIdInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FilePreview.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FilePreview.cls new file mode 100644 index 0000000..3a86122 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FilePreview.cls @@ -0,0 +1,14 @@ +global class FilePreview { + global ConnectApi.FilePreviewFormat format; + global Integer previewUrlCount; + global List previewUrls; + global ConnectApi.FilePreviewStatus status; + global String url; + global FilePreview() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FilePreviewCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FilePreviewCollection.cls new file mode 100644 index 0000000..8e62bc0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FilePreviewCollection.cls @@ -0,0 +1,13 @@ +global class FilePreviewCollection { + global String fileId; + global List previews; + global String url; + global String versionNumber; + global FilePreviewCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FilePreviewFormat.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FilePreviewFormat.cls new file mode 100644 index 0000000..d8f0b4a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FilePreviewFormat.cls @@ -0,0 +1,8 @@ +global enum FilePreviewFormat { +JPG, +PDF, +SVG, +THUMBNAIL, +THUMBNAILBIG, +THUMBNAILTINY +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FilePreviewStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FilePreviewStatus.cls new file mode 100644 index 0000000..2559c8e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FilePreviewStatus.cls @@ -0,0 +1,6 @@ +global enum FilePreviewStatus { +AVAILABLE, +INPROGRESS, +NOTAVAILABLE, +NOTSCHEDULED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FilePreviewUrl.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FilePreviewUrl.cls new file mode 100644 index 0000000..3dfc1c8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FilePreviewUrl.cls @@ -0,0 +1,11 @@ +global class FilePreviewUrl { + global Integer pageNumber; + global String previewUrl; + global FilePreviewUrl() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FilePublishStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FilePublishStatus.cls new file mode 100644 index 0000000..48bfe77 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FilePublishStatus.cls @@ -0,0 +1,5 @@ +global enum FilePublishStatus { +PENDINGACCESS, +PRIVATEACCESS, +PUBLICACCESS +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileSharingOption.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileSharingOption.cls new file mode 100644 index 0000000..c1d3e90 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileSharingOption.cls @@ -0,0 +1,4 @@ +global enum FileSharingOption { +ALLOWED, +RESTRICTED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileSharingPrivacy.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileSharingPrivacy.cls new file mode 100644 index 0000000..4df4e86 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileSharingPrivacy.cls @@ -0,0 +1,4 @@ +global enum FileSharingPrivacy { +NONE, +PRIVATEONRECORDS +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileSharingType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileSharingType.cls new file mode 100644 index 0000000..1a7d2d7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileSharingType.cls @@ -0,0 +1,7 @@ +global enum FileSharingType { +ADMIN, +COLLABORATOR, +OWNER, +VIEWER, +WORKSPACEMANAGED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileStat.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileStat.cls new file mode 100644 index 0000000..89ba79b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileStat.cls @@ -0,0 +1,11 @@ +global class FileStat { + global Integer stat; + global ConnectApi.FileStatsType type; + global FileStat() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileStatsCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileStatsCollection.cls new file mode 100644 index 0000000..701ee0e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileStatsCollection.cls @@ -0,0 +1,11 @@ +global class FileStatsCollection { + global String fileId; + global List stats; + global FileStatsCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileStatsType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileStatsType.cls new file mode 100644 index 0000000..f35ffcd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileStatsType.cls @@ -0,0 +1,4 @@ +global enum FileStatsType { +DOWNLOAD, +VIEW +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileSummary.cls new file mode 100644 index 0000000..e74f65c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileSummary.cls @@ -0,0 +1,9 @@ +global class FileSummary { + global FileSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileText.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileText.cls new file mode 100644 index 0000000..33191f7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FileText.cls @@ -0,0 +1,13 @@ +global class FileText { + global ConnectApi.FilePreviewStatus status; + global String text; + global String type; + global String url; + global FileText() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FilesCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FilesCapability.cls new file mode 100644 index 0000000..6894f04 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FilesCapability.cls @@ -0,0 +1,10 @@ +global class FilesCapability { + global List items; + global FilesCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FilesCapabilityInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FilesCapabilityInput.cls new file mode 100644 index 0000000..7217ec1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FilesCapabilityInput.cls @@ -0,0 +1,9 @@ +global class FilesCapabilityInput { + global List items; + global FilesCapabilityInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FindAppointmentSlotResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FindAppointmentSlotResult.cls new file mode 100644 index 0000000..d7209f7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FindAppointmentSlotResult.cls @@ -0,0 +1,13 @@ +global class FindAppointmentSlotResult { + global List errors; + global Boolean isSuccess; + global Map> slots; + global String slotsSerialized; + global FindAppointmentSlotResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FindRoutesWithFewestSplitsGroupUsingOCIInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FindRoutesWithFewestSplitsGroupUsingOCIInputRepresentation.cls new file mode 100644 index 0000000..6584377 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FindRoutesWithFewestSplitsGroupUsingOCIInputRepresentation.cls @@ -0,0 +1,11 @@ +global class FindRoutesWithFewestSplitsGroupUsingOCIInputRepresentation { + global List excludeLocations; + global Integer maximumNumberOfSplits; + global List orderedItems; + global FindRoutesWithFewestSplitsGroupUsingOCIInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FindRoutesWithFewestSplitsInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FindRoutesWithFewestSplitsInputRepresentation.cls new file mode 100644 index 0000000..56e0329 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FindRoutesWithFewestSplitsInputRepresentation.cls @@ -0,0 +1,11 @@ +global class FindRoutesWithFewestSplitsInputRepresentation { + global List locationAvailableInventory; + global Integer maximumNumberOfSplits; + global List orderedQuantities; + global FindRoutesWithFewestSplitsInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FindRoutesWithFewestSplitsOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FindRoutesWithFewestSplitsOutputRepresentation.cls new file mode 100644 index 0000000..ada1012 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FindRoutesWithFewestSplitsOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class FindRoutesWithFewestSplitsOutputRepresentation { + global List targetLocations; + global FindRoutesWithFewestSplitsOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FindRoutesWithFewestSplitsUsingOCIInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FindRoutesWithFewestSplitsUsingOCIInputRepresentation.cls new file mode 100644 index 0000000..4a67f39 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FindRoutesWithFewestSplitsUsingOCIInputRepresentation.cls @@ -0,0 +1,9 @@ +global class FindRoutesWithFewestSplitsUsingOCIInputRepresentation { + global List findRoutesWithFewestSplitsUsingOCIInputs; + global FindRoutesWithFewestSplitsUsingOCIInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FindRoutesWithFewestSplitsUsingOCIItemInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FindRoutesWithFewestSplitsUsingOCIItemInputRepresentation.cls new file mode 100644 index 0000000..4ae6b97 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FindRoutesWithFewestSplitsUsingOCIItemInputRepresentation.cls @@ -0,0 +1,11 @@ +global class FindRoutesWithFewestSplitsUsingOCIItemInputRepresentation { + global String locationGroupIdentifier; + global Double quantity; + global String stockKeepingUnit; + global FindRoutesWithFewestSplitsUsingOCIItemInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FindRoutesWithFewestSplitsUsingOCIOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FindRoutesWithFewestSplitsUsingOCIOutputRepresentation.cls new file mode 100644 index 0000000..a11ba60 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FindRoutesWithFewestSplitsUsingOCIOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class FindRoutesWithFewestSplitsUsingOCIOutputRepresentation { + global List results; + global FindRoutesWithFewestSplitsUsingOCIOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FindRoutesWithFewestSplitsWithInventoryOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FindRoutesWithFewestSplitsWithInventoryOutputRepresentation.cls new file mode 100644 index 0000000..bc2b010 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FindRoutesWithFewestSplitsWithInventoryOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class FindRoutesWithFewestSplitsWithInventoryOutputRepresentation { + global ConnectApi.OCIGetInventoryAvailabilityOutputRepresentation inventory; + global List targetLocations; + global FindRoutesWithFewestSplitsWithInventoryOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FirstReviewerOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FirstReviewerOutput.cls new file mode 100644 index 0000000..f6e13f5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FirstReviewerOutput.cls @@ -0,0 +1,10 @@ +global class FirstReviewerOutput { + global String username; + global FirstReviewerOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FolderItemType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FolderItemType.cls new file mode 100644 index 0000000..9e45c55 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FolderItemType.cls @@ -0,0 +1,4 @@ +global enum FolderItemType { +FILE, +FOLDER +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FollowIntents.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FollowIntents.cls new file mode 100644 index 0000000..bee97a6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FollowIntents.cls @@ -0,0 +1,10 @@ +global class FollowIntents { + global List follows; + global FollowIntents() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FollowSocialPersonaIntent.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FollowSocialPersonaIntent.cls new file mode 100644 index 0000000..52df88b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FollowSocialPersonaIntent.cls @@ -0,0 +1,11 @@ +global class FollowSocialPersonaIntent { + global ConnectApi.ManagedSocialAccount managedSocialAccount; + global String socialPersonaId; + global FollowSocialPersonaIntent() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FollowerPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FollowerPage.cls new file mode 100644 index 0000000..46bfd8a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FollowerPage.cls @@ -0,0 +1,14 @@ +global class FollowerPage { + global String currentPageUrl; + global List followers; + global String nextPageUrl; + global String previousPageUrl; + global Integer total; + global FollowerPage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FollowingCounts.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FollowingCounts.cls new file mode 100644 index 0000000..547c7ab --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FollowingCounts.cls @@ -0,0 +1,12 @@ +global class FollowingCounts { + global Integer people; + global Integer records; + global Integer total; + global FollowingCounts() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FollowingPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FollowingPage.cls new file mode 100644 index 0000000..854cf29 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FollowingPage.cls @@ -0,0 +1,14 @@ +global class FollowingPage { + global String currentPageUrl; + global List following; + global String nextPageUrl; + global String previousPageUrl; + global Integer total; + global FollowingPage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Form.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Form.cls new file mode 100644 index 0000000..dba7e34 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Form.cls @@ -0,0 +1,13 @@ +global class Form { + global String dataExtensionId; + global ConnectApi.FormFields formFieldsList; + global String formId; + global String formName; + global Form() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormField.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormField.cls new file mode 100644 index 0000000..c5f29aa --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormField.cls @@ -0,0 +1,11 @@ +global class FormField { + global String name; + global ConnectApi.FormFieldType type; + global FormField() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormFieldInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormFieldInput.cls new file mode 100644 index 0000000..0c5dcb5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormFieldInput.cls @@ -0,0 +1,10 @@ +global class FormFieldInput { + global String name; + global ConnectApi.FormFieldType type; + global FormFieldInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormFieldType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormFieldType.cls new file mode 100644 index 0000000..3c90d6d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormFieldType.cls @@ -0,0 +1,7 @@ +global enum FormFieldType { +BOOLEAN, +DATE, +EMAILADDRESS, +NUMBER, +TEXT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormFields.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormFields.cls new file mode 100644 index 0000000..b39552b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormFields.cls @@ -0,0 +1,10 @@ +global class FormFields { + global List formFields; + global FormFields() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormInput.cls new file mode 100644 index 0000000..fcd762a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormInput.cls @@ -0,0 +1,11 @@ +global class FormInput { + global List formFieldsList; + global String formName; + global String memberIdentificationCode; + global FormInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormSubmission.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormSubmission.cls new file mode 100644 index 0000000..8eb1799 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormSubmission.cls @@ -0,0 +1,10 @@ +global class FormSubmission { + global String formSubmissionId; + global FormSubmission() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormSubmissionFieldInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormSubmissionFieldInput.cls new file mode 100644 index 0000000..af9c5ba --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormSubmissionFieldInput.cls @@ -0,0 +1,10 @@ +global class FormSubmissionFieldInput { + global String name; + global String value; + global FormSubmissionFieldInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormSubmissionInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormSubmissionInput.cls new file mode 100644 index 0000000..9976e84 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormSubmissionInput.cls @@ -0,0 +1,9 @@ +global class FormSubmissionInput { + global List formFieldsList; + global FormSubmissionInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormulaFilterType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormulaFilterType.cls new file mode 100644 index 0000000..a834441 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormulaFilterType.cls @@ -0,0 +1,5 @@ +global enum FormulaFilterType { +ALLCRITERIAMATCH, +ANYCRITERIONMATCHES, +CUSTOMLOGICMATCHES +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormulaScope.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormulaScope.cls new file mode 100644 index 0000000..3b296cb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FormulaScope.cls @@ -0,0 +1,13 @@ +global class FormulaScope { + global Map contextValues; + global Map contextValuesMap; + global List fields; + global String formula; + global FormulaScope() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentGroupInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentGroupInputRepresentation.cls new file mode 100644 index 0000000..93d6b10 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentGroupInputRepresentation.cls @@ -0,0 +1,12 @@ +global class FulfillmentGroupInputRepresentation { + global String fulfilledFromLocationId; + global String fulfillmentType; + global List orderItemSummaries; + global String referenceId; + global FulfillmentGroupInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentGroupOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentGroupOutputRepresentation.cls new file mode 100644 index 0000000..43b37ba --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentGroupOutputRepresentation.cls @@ -0,0 +1,16 @@ +global class FulfillmentGroupOutputRepresentation { + global String fulfilledFromLocationId; + global String fulfillmentOrderId; + global String fulfillmentType; + global String orderDeliveryGroupSummaryId; + global List orderItemSummaries; + global String orderSummaryId; + global String referenceId; + global FulfillmentGroupOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentOrder.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentOrder.cls new file mode 100644 index 0000000..83506ab --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentOrder.cls @@ -0,0 +1,3 @@ +global class FulfillmentOrder { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentOrderCancelLineItemsOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentOrderCancelLineItemsOutputRepresentation.cls new file mode 100644 index 0000000..e4fa7c9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentOrderCancelLineItemsOutputRepresentation.cls @@ -0,0 +1,9 @@ +global class FulfillmentOrderCancelLineItemsOutputRepresentation { + global FulfillmentOrderCancelLineItemsOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentOrderInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentOrderInputRepresentation.cls new file mode 100644 index 0000000..428d5d4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentOrderInputRepresentation.cls @@ -0,0 +1,12 @@ +global class FulfillmentOrderInputRepresentation { + global String defaultActivationStatus; + global List fulfillmentGroups; + global String orderDeliveryGroupSummaryId; + global String orderSummaryId; + global FulfillmentOrderInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentOrderInvoiceInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentOrderInvoiceInputRepresentation.cls new file mode 100644 index 0000000..52ad079 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentOrderInvoiceInputRepresentation.cls @@ -0,0 +1,8 @@ +global class FulfillmentOrderInvoiceInputRepresentation { + global FulfillmentOrderInvoiceInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentOrderInvoiceOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentOrderInvoiceOutputRepresentation.cls new file mode 100644 index 0000000..e68a663 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentOrderInvoiceOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class FulfillmentOrderInvoiceOutputRepresentation { + global String invoiceId; + global FulfillmentOrderInvoiceOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentOrderLineItemInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentOrderLineItemInputRepresentation.cls new file mode 100644 index 0000000..3880536 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentOrderLineItemInputRepresentation.cls @@ -0,0 +1,10 @@ +global class FulfillmentOrderLineItemInputRepresentation { + global String fulfillmentOrderLineItemId; + global Double quantity; + global FulfillmentOrderLineItemInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentOrderLineItemsToCancelInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentOrderLineItemsToCancelInputRepresentation.cls new file mode 100644 index 0000000..43a75ac --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentOrderLineItemsToCancelInputRepresentation.cls @@ -0,0 +1,9 @@ +global class FulfillmentOrderLineItemsToCancelInputRepresentation { + global List fulfillmentOrderLineItemsToCancel; + global FulfillmentOrderLineItemsToCancelInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentOrderOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentOrderOutputRepresentation.cls new file mode 100644 index 0000000..8ec379d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/FulfillmentOrderOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class FulfillmentOrderOutputRepresentation { + global List fulfillmentOrderIds; + global FulfillmentOrderOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GatewayLogResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GatewayLogResponse.cls new file mode 100644 index 0000000..970ddb6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GatewayLogResponse.cls @@ -0,0 +1,13 @@ +global class GatewayLogResponse { + global Datetime createdDate; + global String gatewayResultCode; + global String id; + global String interactionStatus; + global GatewayLogResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GeneralPractitionerOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GeneralPractitionerOutput.cls new file mode 100644 index 0000000..97c49a9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GeneralPractitionerOutput.cls @@ -0,0 +1,10 @@ +global class GeneralPractitionerOutput { + global String generalPractitionerNpi; + global GeneralPractitionerOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GenerateBenefitSessionOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GenerateBenefitSessionOutputRepresentation.cls new file mode 100644 index 0000000..bdd4f89 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GenerateBenefitSessionOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class GenerateBenefitSessionOutputRepresentation { + global String message; + global Boolean success; + global GenerateBenefitSessionOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GenericBundleCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GenericBundleCapability.cls new file mode 100644 index 0000000..92ae178 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GenericBundleCapability.cls @@ -0,0 +1,9 @@ +global class GenericBundleCapability { + global GenericBundleCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GenericFeedElement.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GenericFeedElement.cls new file mode 100644 index 0000000..501b993 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GenericFeedElement.cls @@ -0,0 +1,9 @@ +global class GenericFeedElement { + global GenericFeedElement() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GenericObject.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GenericObject.cls new file mode 100644 index 0000000..ece181f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GenericObject.cls @@ -0,0 +1,9 @@ +global class GenericObject { + global Object value; + global GenericObject() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GenericObjectOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GenericObjectOutput.cls new file mode 100644 index 0000000..60812c9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GenericObjectOutput.cls @@ -0,0 +1,10 @@ +global class GenericObjectOutput { + global Object value; + global GenericObjectOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GenericObjectWrapper.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GenericObjectWrapper.cls new file mode 100644 index 0000000..a9bc15f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GenericObjectWrapper.cls @@ -0,0 +1,9 @@ +global class GenericObjectWrapper { + global Object value; + global GenericObjectWrapper() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GenericPricingResponseRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GenericPricingResponseRepresentation.cls new file mode 100644 index 0000000..ec848b9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GenericPricingResponseRepresentation.cls @@ -0,0 +1,11 @@ +global class GenericPricingResponseRepresentation { + global ConnectApi.PricingErrorResponse error; + global Boolean success; + global GenericPricingResponseRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GetBlockchainConfigOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GetBlockchainConfigOutput.cls new file mode 100644 index 0000000..2f815c7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GetBlockchainConfigOutput.cls @@ -0,0 +1,10 @@ +global class GetBlockchainConfigOutput { + global List blockchainConfigList; + global GetBlockchainConfigOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GetContractValueInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GetContractValueInput.cls new file mode 100644 index 0000000..9cc0ba5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GetContractValueInput.cls @@ -0,0 +1,12 @@ +global class GetContractValueInput { + global String contractAddress; + global List fieldNames; + global List fieldTypes; + global String url; + global GetContractValueInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GetContractValueOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GetContractValueOutput.cls new file mode 100644 index 0000000..cb0259d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GetContractValueOutput.cls @@ -0,0 +1,10 @@ +global class GetContractValueOutput { + global ConnectApi.WrappedMap contractValues; + global GetContractValueOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GetFOCapacityValuesOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GetFOCapacityValuesOutputRepresentation.cls new file mode 100644 index 0000000..b39966d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GetFOCapacityValuesOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class GetFOCapacityValuesOutputRepresentation { + global List locations; + global GetFOCapacityValuesOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GetFOCapacityValuesRequestInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GetFOCapacityValuesRequestInputRepresentation.cls new file mode 100644 index 0000000..f369b2a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GetFOCapacityValuesRequestInputRepresentation.cls @@ -0,0 +1,9 @@ +global class GetFOCapacityValuesRequestInputRepresentation { + global List locationIds; + global GetFOCapacityValuesRequestInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GetFunctionValueInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GetFunctionValueInput.cls new file mode 100644 index 0000000..18bf0d7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GetFunctionValueInput.cls @@ -0,0 +1,14 @@ +global class GetFunctionValueInput { + global List arguments; + global String contractAddress; + global String functionName; + global List solidityInputTypes; + global List solidityOutputTypes; + global String url; + global GetFunctionValueInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GetFunctionValueOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GetFunctionValueOutput.cls new file mode 100644 index 0000000..b89a74b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GetFunctionValueOutput.cls @@ -0,0 +1,10 @@ +global class GetFunctionValueOutput { + global List functionValue; + global GetFunctionValueOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GetSlotStatusInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GetSlotStatusInput.cls new file mode 100644 index 0000000..e07b388 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GetSlotStatusInput.cls @@ -0,0 +1,18 @@ +global class GetSlotStatusInput { + global String channelId; + global String endTime; + global String externalFacilityId; + global String externalPractitionerId; + global String externalSlotId; + global String resourceId; + global String sourceSystem; + global String startTime; + global String territoryId; + global String workTypeId; + global GetSlotStatusInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GiftCampaignDefaultDesignationRecordOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GiftCampaignDefaultDesignationRecordOutputRepresentation.cls new file mode 100644 index 0000000..a3906fe --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GiftCampaignDefaultDesignationRecordOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class GiftCampaignDefaultDesignationRecordOutputRepresentation { + global String designationId; + global Double percentage; + global GiftCampaignDefaultDesignationRecordOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GiftCampaignDefaultDesignationsOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GiftCampaignDefaultDesignationsOutputRepresentation.cls new file mode 100644 index 0000000..e5795e9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GiftCampaignDefaultDesignationsOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class GiftCampaignDefaultDesignationsOutputRepresentation { + global List campaignDefaultDesignations; + global GiftCampaignDefaultDesignationsOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GiftCommitmentDefaultDesignationRecordOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GiftCommitmentDefaultDesignationRecordOutputRepresentation.cls new file mode 100644 index 0000000..6da50ba --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GiftCommitmentDefaultDesignationRecordOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class GiftCommitmentDefaultDesignationRecordOutputRepresentation { + global String designationId; + global Double percentage; + global GiftCommitmentDefaultDesignationRecordOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GiftCommitmentDefaultDesignationsOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GiftCommitmentDefaultDesignationsOutputRepresentation.cls new file mode 100644 index 0000000..59f8add --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GiftCommitmentDefaultDesignationsOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class GiftCommitmentDefaultDesignationsOutputRepresentation { + global List commitmentDefaultDesignations; + global GiftCommitmentDefaultDesignationsOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GiftCommitmentOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GiftCommitmentOutputRepresentation.cls new file mode 100644 index 0000000..6249dbd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GiftCommitmentOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class GiftCommitmentOutputRepresentation { + global List giftCommitments; + global GiftCommitmentOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GiftCommitmenteDetails.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GiftCommitmenteDetails.cls new file mode 100644 index 0000000..d1d643b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GiftCommitmenteDetails.cls @@ -0,0 +1,17 @@ +global class GiftCommitmenteDetails { + global String campaignId; + global String commitmentId; + global String commitmentType; + global String name; + global Double nextGiftAmount; + global Datetime nextGiftDate; + global String status; + global String transactionId; + global GiftCommitmenteDetails() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GlobalInfluence.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GlobalInfluence.cls new file mode 100644 index 0000000..5b7eb59 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GlobalInfluence.cls @@ -0,0 +1,11 @@ +global class GlobalInfluence { + global String percentile; + global Integer rank; + global GlobalInfluence() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupArchiveStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupArchiveStatus.cls new file mode 100644 index 0000000..be55536 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupArchiveStatus.cls @@ -0,0 +1,5 @@ +global enum GroupArchiveStatus { +ALL, +ARCHIVED, +NOTARCHIVED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupChatterSettings.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupChatterSettings.cls new file mode 100644 index 0000000..0d227db --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupChatterSettings.cls @@ -0,0 +1,10 @@ +global class GroupChatterSettings { + global ConnectApi.GroupEmailFrequency emailFrequency; + global GroupChatterSettings() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupEmailFrequency.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupEmailFrequency.cls new file mode 100644 index 0000000..340abef --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupEmailFrequency.cls @@ -0,0 +1,7 @@ +global enum GroupEmailFrequency { +DAILYDIGEST, +EACHPOST, +NEVER, +USEDEFAULT, +WEEKLYDIGEST +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupInformation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupInformation.cls new file mode 100644 index 0000000..8ff57c3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupInformation.cls @@ -0,0 +1,11 @@ +global class GroupInformation { + global String text; + global String title; + global GroupInformation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupInformationInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupInformationInput.cls new file mode 100644 index 0000000..f560745 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupInformationInput.cls @@ -0,0 +1,10 @@ +global class GroupInformationInput { + global String text; + global String title; + global GroupInformationInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupMember.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupMember.cls new file mode 100644 index 0000000..27fd4a2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupMember.cls @@ -0,0 +1,14 @@ +global class GroupMember { + global String id; + global Datetime lastFeedAccessDate; + global ConnectApi.GroupMembershipType role; + global String url; + global ConnectApi.UserSummary user; + global GroupMember() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupMemberAssociationCycleDetector.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupMemberAssociationCycleDetector.cls new file mode 100644 index 0000000..64d23c7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupMemberAssociationCycleDetector.cls @@ -0,0 +1,3 @@ +global class GroupMemberAssociationCycleDetector { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupMemberPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupMemberPage.cls new file mode 100644 index 0000000..5029fb6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupMemberPage.cls @@ -0,0 +1,15 @@ +global class GroupMemberPage { + global String currentPageUrl; + global List members; + global ConnectApi.Reference myMembership; + global String nextPageUrl; + global String previousPageUrl; + global Integer totalMemberCount; + global GroupMemberPage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupMembershipRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupMembershipRequest.cls new file mode 100644 index 0000000..a8d0d44 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupMembershipRequest.cls @@ -0,0 +1,17 @@ +global class GroupMembershipRequest { + global Datetime createdDate; + global String id; + global Datetime lastUpdateDate; + global ConnectApi.Reference requestedGroup; + global String responseMessage; + global ConnectApi.GroupMembershipRequestStatus status; + global String url; + global ConnectApi.UserSummary user; + global GroupMembershipRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupMembershipRequestStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupMembershipRequestStatus.cls new file mode 100644 index 0000000..1706b0d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupMembershipRequestStatus.cls @@ -0,0 +1,5 @@ +global enum GroupMembershipRequestStatus { +ACCEPTED, +DECLINED, +PENDING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupMembershipRequests.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupMembershipRequests.cls new file mode 100644 index 0000000..8ee6a59 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupMembershipRequests.cls @@ -0,0 +1,11 @@ +global class GroupMembershipRequests { + global List requests; + global Integer total; + global GroupMembershipRequests() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupMembershipType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupMembershipType.cls new file mode 100644 index 0000000..da9d254 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupMembershipType.cls @@ -0,0 +1,7 @@ +global enum GroupMembershipType { +GROUPMANAGER, +GROUPOWNER, +NOTAMEMBER, +NOTAMEMBERPRIVATEREQUESTED, +STANDARDMEMBER +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupRecord.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupRecord.cls new file mode 100644 index 0000000..8e2256c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupRecord.cls @@ -0,0 +1,12 @@ +global class GroupRecord { + global String id; + global ConnectApi.ActorWithId record; + global String url; + global GroupRecord() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupRecordInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupRecordInput.cls new file mode 100644 index 0000000..9f9c09c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupRecordInput.cls @@ -0,0 +1,9 @@ +global class GroupRecordInput { + global String recordId; + global GroupRecordInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupRecordPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupRecordPage.cls new file mode 100644 index 0000000..802f611 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupRecordPage.cls @@ -0,0 +1,14 @@ +global class GroupRecordPage { + global String currentPageUrl; + global String nextPageUrl; + global String previousPageUrl; + global List records; + global Integer totalRecordCount; + global GroupRecordPage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupViralInvitationsStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupViralInvitationsStatus.cls new file mode 100644 index 0000000..402c04d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupViralInvitationsStatus.cls @@ -0,0 +1,9 @@ +global enum GroupViralInvitationsStatus { +ACTEDUPONUSER, +INVITED, +MAXEDOUTUSERS, +MULTIPLEERROR, +NOACTIONNEEDEDUSER, +NOTVISIBLETOEXTERNALINVITER, +UNHANDLED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupVisibilityType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupVisibilityType.cls new file mode 100644 index 0000000..2c98bb2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/GroupVisibilityType.cls @@ -0,0 +1,5 @@ +global enum GroupVisibilityType { +PRIVATEACCESS, +PUBLICACCESS, +UNLISTEDACCESS +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HCAddressInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HCAddressInput.cls new file mode 100644 index 0000000..f6dc130 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HCAddressInput.cls @@ -0,0 +1,15 @@ +global class HCAddressInput { + global String city; + global String country; + global Double latitude; + global Double longitude; + global String postalCode; + global String state; + global String street; + global HCAddressInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HashtagSegment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HashtagSegment.cls new file mode 100644 index 0000000..9205698 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HashtagSegment.cls @@ -0,0 +1,12 @@ +global class HashtagSegment { + global String tag; + global String topicUrl; + global String url; + global HashtagSegment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HashtagSegmentInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HashtagSegmentInput.cls new file mode 100644 index 0000000..738b282 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HashtagSegmentInput.cls @@ -0,0 +1,9 @@ +global class HashtagSegmentInput { + global String tag; + global HashtagSegmentInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HideSocialPostIntent.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HideSocialPostIntent.cls new file mode 100644 index 0000000..4e8349b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HideSocialPostIntent.cls @@ -0,0 +1,11 @@ +global class HideSocialPostIntent { + global Boolean isHidden; + global ConnectApi.ManagedSocialAccount managedSocialAccount; + global HideSocialPostIntent() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HoldFOCapacityInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HoldFOCapacityInputRepresentation.cls new file mode 100644 index 0000000..abdf095 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HoldFOCapacityInputRepresentation.cls @@ -0,0 +1,9 @@ +global class HoldFOCapacityInputRepresentation { + global List holdFOCapacityRequests; + global HoldFOCapacityInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HoldFOCapacityOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HoldFOCapacityOutputRepresentation.cls new file mode 100644 index 0000000..c2862c3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HoldFOCapacityOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class HoldFOCapacityOutputRepresentation { + global List holdFOCapacityResponses; + global HoldFOCapacityOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HoldFOCapacityRequestInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HoldFOCapacityRequestInputRepresentation.cls new file mode 100644 index 0000000..2510468 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HoldFOCapacityRequestInputRepresentation.cls @@ -0,0 +1,10 @@ +global class HoldFOCapacityRequestInputRepresentation { + global Boolean allOrNothing; + global List capacityRequests; + global HoldFOCapacityRequestInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HoldFOCapacityResponseOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HoldFOCapacityResponseOutputRepresentation.cls new file mode 100644 index 0000000..4144501 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HoldFOCapacityResponseOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class HoldFOCapacityResponseOutputRepresentation { + global List capacityResponses; + global HoldFOCapacityResponseOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HsrCommerceCatalog.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HsrCommerceCatalog.cls new file mode 100644 index 0000000..4284be4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HsrCommerceCatalog.cls @@ -0,0 +1,3 @@ +global class HsrCommerceCatalog { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HttpRequestMethod.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HttpRequestMethod.cls new file mode 100644 index 0000000..437b4aa --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/HttpRequestMethod.cls @@ -0,0 +1,8 @@ +global enum HttpRequestMethod { +HTTPDELETE, +HTTPGET, +HTTPHEAD, +HTTPPATCH, +HTTPPOST, +HTTPPUT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IComplaintMgmtConnectFamily.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IComplaintMgmtConnectFamily.cls new file mode 100644 index 0000000..e3109c1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IComplaintMgmtConnectFamily.cls @@ -0,0 +1,3 @@ +global class IComplaintMgmtConnectFamily { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IServiceProcessConnectFamily.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IServiceProcessConnectFamily.cls new file mode 100644 index 0000000..dafb28c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IServiceProcessConnectFamily.cls @@ -0,0 +1,3 @@ +global class IServiceProcessConnectFamily { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Icon.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Icon.cls new file mode 100644 index 0000000..50decb1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Icon.cls @@ -0,0 +1,12 @@ +global class Icon { + global Integer height; + global String url; + global Integer width; + global Icon() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IdentityVerfFormDisplayRecord.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IdentityVerfFormDisplayRecord.cls new file mode 100644 index 0000000..259d3d6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IdentityVerfFormDisplayRecord.cls @@ -0,0 +1,11 @@ +global class IdentityVerfFormDisplayRecord { + global String displayRecordId; + global String displayRecordName; + global IdentityVerfFormDisplayRecord() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IdentityVerfFormFieldInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IdentityVerfFormFieldInput.cls new file mode 100644 index 0000000..2ddb182 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IdentityVerfFormFieldInput.cls @@ -0,0 +1,11 @@ +global class IdentityVerfFormFieldInput { + global String developerName; + global Boolean isVerified; + global String value; + global IdentityVerfFormFieldInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IdentityVerfFormFieldListOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IdentityVerfFormFieldListOutput.cls new file mode 100644 index 0000000..fbbaddf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IdentityVerfFormFieldListOutput.cls @@ -0,0 +1,10 @@ +global class IdentityVerfFormFieldListOutput { + global List formVerificationFields; + global IdentityVerfFormFieldListOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IdentityVerfFormFieldOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IdentityVerfFormFieldOutput.cls new file mode 100644 index 0000000..6c5df61 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IdentityVerfFormFieldOutput.cls @@ -0,0 +1,12 @@ +global class IdentityVerfFormFieldOutput { + global String developerName; + global Boolean isVerified; + global String value; + global IdentityVerfFormFieldOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IdentityVerfFormInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IdentityVerfFormInput.cls new file mode 100644 index 0000000..2e37ba4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IdentityVerfFormInput.cls @@ -0,0 +1,11 @@ +global class IdentityVerfFormInput { + global String developerName; + global List formVerificationFieldList; + global String selectedRecordId; + global IdentityVerfFormInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IdentityVerfFormOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IdentityVerfFormOutput.cls new file mode 100644 index 0000000..0967fdb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IdentityVerfFormOutput.cls @@ -0,0 +1,16 @@ +global class IdentityVerfFormOutput { + global String developerName; + global ConnectApi.IdentityVerfFormDisplayRecord displayRecordDetails; + global ConnectApi.IdentityVerfFormFieldListOutput formVerificationFieldList; + global Boolean isVerified; + global Integer retryCount; + global String selectedRecordId; + global ConnectApi.ErrorResponseRepresentation status; + global IdentityVerfFormOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Identityverification.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Identityverification.cls new file mode 100644 index 0000000..8dc46d1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Identityverification.cls @@ -0,0 +1,3 @@ +global class Identityverification { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IndividualMemberInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IndividualMemberInput.cls new file mode 100644 index 0000000..285a04c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IndividualMemberInput.cls @@ -0,0 +1,23 @@ +global class IndividualMemberInput { + global Map additionalMemberFieldValues; + global ConnectApi.MemberContactInput associatedContactDetails; + global Boolean canReceivePartnerPromotions; + global Boolean canReceivePromotions; + global Boolean createTransactionJournals; + global ConnectApi.EnrollmentChannelResource enrollmentChannel; + global Datetime enrollmentDate; + global String memberStatus; + global Datetime membershipEndDate; + global String membershipNumber; + global String referredBy; + global String referredByMemberReferralCode; + global String relatedCorporateMembershipNumber; + global ConnectApi.StatementFrequencyResource transactionJournalStatementFrequency; + global ConnectApi.StatementMethodResource transactionJournalStatementMethod; + global IndividualMemberInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IndividualMemberOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IndividualMemberOutput.cls new file mode 100644 index 0000000..01b5c2d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IndividualMemberOutput.cls @@ -0,0 +1,14 @@ +global class IndividualMemberOutput { + global String contactId; + global String loyaltyProgramMemberId; + global String loyaltyProgramName; + global String membershipNumber; + global List transactionJournals; + global IndividualMemberOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IndustriesFundraisingOperationsFamily.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IndustriesFundraisingOperationsFamily.cls new file mode 100644 index 0000000..587657e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IndustriesFundraisingOperationsFamily.cls @@ -0,0 +1,3 @@ +global class IndustriesFundraisingOperationsFamily { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IndustriesPricingResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IndustriesPricingResponse.cls new file mode 100644 index 0000000..49a56ff --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IndustriesPricingResponse.cls @@ -0,0 +1,12 @@ +global class IndustriesPricingResponse { + global ConnectApi.PricingErrorResponse error; + global String executionId; + global Boolean success; + global IndustriesPricingResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IngestionEventInputWrapper.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IngestionEventInputWrapper.cls new file mode 100644 index 0000000..868a688 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IngestionEventInputWrapper.cls @@ -0,0 +1,9 @@ +global class IngestionEventInputWrapper { + global String requestBody; + global IngestionEventInputWrapper() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IngestionEventOutputWrapper.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IngestionEventOutputWrapper.cls new file mode 100644 index 0000000..de93565 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/IngestionEventOutputWrapper.cls @@ -0,0 +1,12 @@ +global class IngestionEventOutputWrapper { + global String errorMsg; + global String eventId; + global Integer statusCode; + global IngestionEventOutputWrapper() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InlineImageSegment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InlineImageSegment.cls new file mode 100644 index 0000000..15425ee --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InlineImageSegment.cls @@ -0,0 +1,14 @@ +global class InlineImageSegment { + global String altText; + global Integer contentSize; + global String fileExtension; + global ConnectApi.FilePreviewCollection thumbnails; + global String url; + global InlineImageSegment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InlineImageSegmentInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InlineImageSegmentInput.cls new file mode 100644 index 0000000..4e9320e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InlineImageSegmentInput.cls @@ -0,0 +1,10 @@ +global class InlineImageSegmentInput { + global String altText; + global String fileId; + global InlineImageSegmentInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InnerEnsureFundsAsyncInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InnerEnsureFundsAsyncInputRepresentation.cls new file mode 100644 index 0000000..e10ddd6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InnerEnsureFundsAsyncInputRepresentation.cls @@ -0,0 +1,10 @@ +global class InnerEnsureFundsAsyncInputRepresentation { + global String invoiceId; + global String orderSummaryId; + global InnerEnsureFundsAsyncInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Insight.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Insight.cls new file mode 100644 index 0000000..e740874 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Insight.cls @@ -0,0 +1,11 @@ +global class Insight { + global List columns; + global Double value; + global Insight() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InsightsComparisonEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InsightsComparisonEnum.cls new file mode 100644 index 0000000..f9be704 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InsightsComparisonEnum.cls @@ -0,0 +1,5 @@ +global enum InsightsComparisonEnum { +AVERAGE, +OTHER, +UNIFORMDISTRIBUTION +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InsightsResultCategory.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InsightsResultCategory.cls new file mode 100644 index 0000000..07241ee --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InsightsResultCategory.cls @@ -0,0 +1,4 @@ +global enum InsightsResultCategory { +NEGATIVE, +POSITIVE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InsightsResultTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InsightsResultTypeEnum.cls new file mode 100644 index 0000000..39550c3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InsightsResultTypeEnum.cls @@ -0,0 +1,4 @@ +global enum InsightsResultTypeEnum { +FIRSTORDER, +SECONDORDER +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InsightsTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InsightsTypeEnum.cls new file mode 100644 index 0000000..f53e794 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InsightsTypeEnum.cls @@ -0,0 +1,4 @@ +global enum InsightsTypeEnum { +DESCRIPTIVE, +DIAGNOSTIC +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InteractionCalculationProcedures.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InteractionCalculationProcedures.cls new file mode 100644 index 0000000..85efe24 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InteractionCalculationProcedures.cls @@ -0,0 +1,3 @@ +global class InteractionCalculationProcedures { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InteractionsCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InteractionsCapability.cls new file mode 100644 index 0000000..6d49622 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InteractionsCapability.cls @@ -0,0 +1,10 @@ +global class InteractionsCapability { + global Long count; + global InteractionsCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InternalTestUtilities.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InternalTestUtilities.cls new file mode 100644 index 0000000..10eac9f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InternalTestUtilities.cls @@ -0,0 +1,3 @@ +global class InternalTestUtilities { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvalidIds.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvalidIds.cls new file mode 100644 index 0000000..df556e5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvalidIds.cls @@ -0,0 +1,10 @@ +global class InvalidIds { + global List ids; + global InvalidIds() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InventoryCheckAvailabilityOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InventoryCheckAvailabilityOutputRepresentation.cls new file mode 100644 index 0000000..de59711 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InventoryCheckAvailabilityOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class InventoryCheckAvailabilityOutputRepresentation { + global List locationGroups; + global List locations; + global InventoryCheckAvailabilityOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InventoryLevelsOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InventoryLevelsOutputRepresentation.cls new file mode 100644 index 0000000..fbcb829 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InventoryLevelsOutputRepresentation.cls @@ -0,0 +1,12 @@ +global class InventoryLevelsOutputRepresentation { + global List locationGroups; + global List locations; + global List totalInventory; + global InventoryLevelsOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InventoryOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InventoryOutputRepresentation.cls new file mode 100644 index 0000000..d1b56cb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InventoryOutputRepresentation.cls @@ -0,0 +1,12 @@ +global class InventoryOutputRepresentation { + global Double availableToFulfill; + global Double availableToOrder; + global Double onHand; + global InventoryOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InventoryProductCheckAvailabilityOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InventoryProductCheckAvailabilityOutputRepresentation.cls new file mode 100644 index 0000000..e6a477c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InventoryProductCheckAvailabilityOutputRepresentation.cls @@ -0,0 +1,12 @@ +global class InventoryProductCheckAvailabilityOutputRepresentation { + global Boolean available; + global ConnectApi.InventoryOutputRepresentation inventory; + global String product2Id; + global InventoryProductCheckAvailabilityOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InventoryProductOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InventoryProductOutputRepresentation.cls new file mode 100644 index 0000000..62d2706 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InventoryProductOutputRepresentation.cls @@ -0,0 +1,13 @@ +global class InventoryProductOutputRepresentation { + global Double availableToFulfill; + global Double availableToOrder; + global Double onHand; + global String product2Id; + global InventoryProductOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Inventorycheckavailabilityinputrepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Inventorycheckavailabilityinputrepresentation.cls new file mode 100644 index 0000000..d6d63ff --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Inventorycheckavailabilityinputrepresentation.cls @@ -0,0 +1,3 @@ +global class Inventorycheckavailabilityinputrepresentation { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Invitation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Invitation.cls new file mode 100644 index 0000000..635d59c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Invitation.cls @@ -0,0 +1,12 @@ +global class Invitation { + global String email; + global ConnectApi.GroupViralInvitationsStatus status; + global String userId; + global Invitation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Invitations.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Invitations.cls new file mode 100644 index 0000000..a1bcc47 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Invitations.cls @@ -0,0 +1,10 @@ +global class Invitations { + global List invitations; + global Invitations() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InviteInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InviteInput.cls new file mode 100644 index 0000000..8d9d4b9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InviteInput.cls @@ -0,0 +1,10 @@ +global class InviteInput { + global List invitees; + global String message; + global InviteInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvocableInternalTestInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvocableInternalTestInputRepresentation.cls new file mode 100644 index 0000000..c98f82a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvocableInternalTestInputRepresentation.cls @@ -0,0 +1,10 @@ +global class InvocableInternalTestInputRepresentation { + global String endpoint; + global Integer expectedStatus; + global InvocableInternalTestInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvocableInternalTestNestedInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvocableInternalTestNestedInputRepresentation.cls new file mode 100644 index 0000000..4bdbd31 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvocableInternalTestNestedInputRepresentation.cls @@ -0,0 +1,9 @@ +global class InvocableInternalTestNestedInputRepresentation { + global List invocableInternalTestInputRepresentationList; + global InvocableInternalTestNestedInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvocableInternalTestNestedOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvocableInternalTestNestedOutputRepresentation.cls new file mode 100644 index 0000000..6a20590 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvocableInternalTestNestedOutputRepresentation.cls @@ -0,0 +1,12 @@ +global class InvocableInternalTestNestedOutputRepresentation { + global String id; + global List invocableInternalTestOutputRepresentationList; + global String name; + global InvocableInternalTestNestedOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvocableInternalTestNestedWrapper.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvocableInternalTestNestedWrapper.cls new file mode 100644 index 0000000..adc50a3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvocableInternalTestNestedWrapper.cls @@ -0,0 +1,3 @@ +global class InvocableInternalTestNestedWrapper { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvocableInternalTestOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvocableInternalTestOutputRepresentation.cls new file mode 100644 index 0000000..977c0ba --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvocableInternalTestOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class InvocableInternalTestOutputRepresentation { + global Map responseResults; + global InvocableInternalTestOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvocableInternalTestWrapper.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvocableInternalTestWrapper.cls new file mode 100644 index 0000000..824156a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvocableInternalTestWrapper.cls @@ -0,0 +1,3 @@ +global class InvocableInternalTestWrapper { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvoiceAction.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvoiceAction.cls new file mode 100644 index 0000000..bfe7fe5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvoiceAction.cls @@ -0,0 +1,4 @@ +global enum InvoiceAction { +PENDING, +POSTED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvoiceBillingTermUnitEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvoiceBillingTermUnitEnum.cls new file mode 100644 index 0000000..7ff5e62 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvoiceBillingTermUnitEnum.cls @@ -0,0 +1,5 @@ +global enum InvoiceBillingTermUnitEnum { +MONTH, +ONETIME, +YEAR +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvoiceListOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvoiceListOutputRepresentation.cls new file mode 100644 index 0000000..305141e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvoiceListOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class InvoiceListOutputRepresentation { + global List invoiceResults; + global InvoiceListOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvoiceOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvoiceOutputRepresentation.cls new file mode 100644 index 0000000..8b82949 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvoiceOutputRepresentation.cls @@ -0,0 +1,14 @@ +global class InvoiceOutputRepresentation { + global List billingSchedules; + global List invoiceErrors; + global String invoiceId; + global ConnectApi.InvoiceStatusEnum invoiceStatus; + global Boolean isSuccess; + global InvoiceOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvoiceStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvoiceStatus.cls new file mode 100644 index 0000000..09a9c94 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvoiceStatus.cls @@ -0,0 +1,6 @@ +global enum InvoiceStatus { +CANCELED, +DRAFT, +PENDING, +POSTED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvoiceStatusEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvoiceStatusEnum.cls new file mode 100644 index 0000000..492c698 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvoiceStatusEnum.cls @@ -0,0 +1,4 @@ +global enum InvoiceStatusEnum { +ERROR, +POSTED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvoiceToPayInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvoiceToPayInputRepresentation.cls new file mode 100644 index 0000000..9c6ca42 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/InvoiceToPayInputRepresentation.cls @@ -0,0 +1,9 @@ +global class InvoiceToPayInputRepresentation { + global String invoiceId; + global InvoiceToPayInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ItemQuantityInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ItemQuantityInputRepresentation.cls new file mode 100644 index 0000000..2e94dc4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ItemQuantityInputRepresentation.cls @@ -0,0 +1,10 @@ +global class ItemQuantityInputRepresentation { + global String externalItemId; + global Double quantity; + global ItemQuantityInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ItemQuantityOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ItemQuantityOutputRepresentation.cls new file mode 100644 index 0000000..7fabacc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ItemQuantityOutputRepresentation.cls @@ -0,0 +1,12 @@ +global class ItemQuantityOutputRepresentation { + global String externalItemId; + global Double quantity; + global Double quantityDistributed; + global ItemQuantityOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/JoinVideoCallResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/JoinVideoCallResult.cls new file mode 100644 index 0000000..9e940a8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/JoinVideoCallResult.cls @@ -0,0 +1,13 @@ +global class JoinVideoCallResult { + global ConnectApi.ChimeAttendeeResult attendee; + global String errorMessage; + global Boolean isSuccess; + global ConnectApi.ChimeMeetingResult meeting; + global JoinVideoCallResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/JournalStatusResource.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/JournalStatusResource.cls new file mode 100644 index 0000000..2380522 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/JournalStatusResource.cls @@ -0,0 +1,6 @@ +global enum JournalStatusResource { +CANCELLED, +ERROR, +PENDING, +PROCESSED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/JwsVerifierInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/JwsVerifierInput.cls new file mode 100644 index 0000000..f122978 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/JwsVerifierInput.cls @@ -0,0 +1,11 @@ +global class JwsVerifierInput { + global String asOfDate; + global List rawQRData; + global String type; + global JwsVerifierInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/JwsVerifierOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/JwsVerifierOutput.cls new file mode 100644 index 0000000..93c9461 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/JwsVerifierOutput.cls @@ -0,0 +1,13 @@ +global class JwsVerifierOutput { + global ConnectApi.DigitalCertificateRepresentation digitalCertificate; + global String jwsPayload; + global String processTime; + global String signature; + global JwsVerifierOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Knowledge.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Knowledge.cls new file mode 100644 index 0000000..3e9fc17 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Knowledge.cls @@ -0,0 +1,3 @@ +global class Knowledge { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/KnowledgeArticleVersion.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/KnowledgeArticleVersion.cls new file mode 100644 index 0000000..2c501e2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/KnowledgeArticleVersion.cls @@ -0,0 +1,16 @@ +global class KnowledgeArticleVersion { + global String articleType; + global String id; + global String knowledgeArticleId; + global Datetime lastPublishedDate; + global String summary; + global String title; + global String urlName; + global KnowledgeArticleVersion() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/KnowledgeArticleVersionCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/KnowledgeArticleVersionCollection.cls new file mode 100644 index 0000000..680eacf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/KnowledgeArticleVersionCollection.cls @@ -0,0 +1,10 @@ +global class KnowledgeArticleVersionCollection { + global List items; + global KnowledgeArticleVersionCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/KnowledgeMigration.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/KnowledgeMigration.cls new file mode 100644 index 0000000..8eff03e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/KnowledgeMigration.cls @@ -0,0 +1,11 @@ +global class KnowledgeMigration { + global String migrationJobId; + global String migrationStatus; + global KnowledgeMigration() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LabeledRecordField.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LabeledRecordField.cls new file mode 100644 index 0000000..6a287fc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LabeledRecordField.cls @@ -0,0 +1,10 @@ +global class LabeledRecordField { + global String label; + global String text; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Language.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Language.cls new file mode 100644 index 0000000..9bd9c62 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Language.cls @@ -0,0 +1,11 @@ +global class Language { + global String code; + global String label; + global Language() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LeadInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LeadInput.cls new file mode 100644 index 0000000..a5a469b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LeadInput.cls @@ -0,0 +1,14 @@ +global class LeadInput { + global String company; + global String email; + global List extendedFields; + global String firstName; + global String lastName; + global String phone; + global LeadInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LeaveVideoCallResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LeaveVideoCallResult.cls new file mode 100644 index 0000000..8ecceeb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LeaveVideoCallResult.cls @@ -0,0 +1,11 @@ +global class LeaveVideoCallResult { + global String errorMessage; + global Boolean isSuccess; + global LeaveVideoCallResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LightningExtensionInformation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LightningExtensionInformation.cls new file mode 100644 index 0000000..9e12659 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LightningExtensionInformation.cls @@ -0,0 +1,13 @@ +global class LightningExtensionInformation { + global String compositionComponent; + global String headerTextLabel; + global String hoverTextLabel; + global String renderComponent; + global LightningExtensionInformation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LightningScheduler.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LightningScheduler.cls new file mode 100644 index 0000000..f068b63 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LightningScheduler.cls @@ -0,0 +1,8 @@ +global class LightningScheduler { + global Object clone() { } + global static ConnectApi.ServiceAppointmentOutput createServiceAppointment(ConnectApi.CreateServiceAppointmentInput createServiceAppointmentInput) { } + global static ConnectApi.ServiceAppointmentOutput updateServiceAppointment(ConnectApi.UpdateServiceAppointmentInput updateServiceAppointmentInput) { } + global static ConnectApi.WaitlistCheckInOutput waitlistCheckIn(ConnectApi.WaitlistCheckInInput waitlistCheckInInput) { } + global static ConnectApi.WaitlistOutput waitlists(List waitlistIds, String serviceTerritoryId, Boolean isActive, Integer maxLimit, Integer offset) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LikeIntent.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LikeIntent.cls new file mode 100644 index 0000000..6c2339f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LikeIntent.cls @@ -0,0 +1,11 @@ +global class LikeIntent { + global Boolean isLiked; + global ConnectApi.ManagedSocialAccount managedSocialAccount; + global LikeIntent() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LikeIntents.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LikeIntents.cls new file mode 100644 index 0000000..810fce1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LikeIntents.cls @@ -0,0 +1,10 @@ +global class LikeIntents { + global List likes; + global LikeIntents() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LikeSocialPostIntent.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LikeSocialPostIntent.cls new file mode 100644 index 0000000..b05b7e2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LikeSocialPostIntent.cls @@ -0,0 +1,11 @@ +global class LikeSocialPostIntent { + global String socialAccountId; + global String socialPostId; + global LikeSocialPostIntent() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LikeSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LikeSummary.cls new file mode 100644 index 0000000..3ba0a24 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LikeSummary.cls @@ -0,0 +1,10 @@ +global class LikeSummary { + global String likeId; + global LikeSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LineItemResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LineItemResponse.cls new file mode 100644 index 0000000..f9376d8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LineItemResponse.cls @@ -0,0 +1,17 @@ +global class LineItemResponse { + global ConnectApi.TaxAddressesResponse addresses; + global ConnectApi.TaxAmountDetailsResponse amountDetails; + global Datetime effectiveDate; + global String lineNumber; + global String productCode; + global Double quantity; + global String taxCode; + global List taxes; + global LineItemResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkAttachment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkAttachment.cls new file mode 100644 index 0000000..d64a825 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkAttachment.cls @@ -0,0 +1,11 @@ +global class LinkAttachment { + global String title; + global String url; + global LinkAttachment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkAttachmentInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkAttachmentInput.cls new file mode 100644 index 0000000..a5c2774 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkAttachmentInput.cls @@ -0,0 +1,10 @@ +global class LinkAttachmentInput { + global String url; + global String urlName; + global LinkAttachmentInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkCapability.cls new file mode 100644 index 0000000..c3bf2fb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkCapability.cls @@ -0,0 +1,11 @@ +global class LinkCapability { + global String url; + global String urlName; + global LinkCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkCapabilityInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkCapabilityInput.cls new file mode 100644 index 0000000..efaf567 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkCapabilityInput.cls @@ -0,0 +1,10 @@ +global class LinkCapabilityInput { + global String url; + global String urlName; + global LinkCapabilityInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkMetadata.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkMetadata.cls new file mode 100644 index 0000000..2765a21 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkMetadata.cls @@ -0,0 +1,20 @@ +global class LinkMetadata { + global String description; + global String frameSource; + global Integer height; + global String originalUrl; + global String providerUrl; + global ConnectApi.LinkMetadataSource source; + global String thumbnailUrl; + global String title; + global ConnectApi.LinkMetadataType type; + global String url; + global Integer width; + global LinkMetadata() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkMetadataCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkMetadataCollection.cls new file mode 100644 index 0000000..792c625 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkMetadataCollection.cls @@ -0,0 +1,10 @@ +global class LinkMetadataCollection { + global List linkMetadataList; + global LinkMetadataCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkMetadataInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkMetadataInput.cls new file mode 100644 index 0000000..3e88e10 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkMetadataInput.cls @@ -0,0 +1,9 @@ +global class LinkMetadataInput { + global List urls; + global LinkMetadataInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkMetadataSource.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkMetadataSource.cls new file mode 100644 index 0000000..8eba318 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkMetadataSource.cls @@ -0,0 +1,4 @@ +global enum LinkMetadataSource { +NONE, +SFDC +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkMetadataType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkMetadataType.cls new file mode 100644 index 0000000..b7dc9ef --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkMetadataType.cls @@ -0,0 +1,9 @@ +global enum LinkMetadataType { +ERROR, +LINK, +NONE, +PHOTO, +RICH, +UNKNOWN, +VIDEO +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkSegment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkSegment.cls new file mode 100644 index 0000000..1935269 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkSegment.cls @@ -0,0 +1,10 @@ +global class LinkSegment { + global String url; + global LinkSegment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkSegmentInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkSegmentInput.cls new file mode 100644 index 0000000..d5191cf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LinkSegmentInput.cls @@ -0,0 +1,9 @@ +global class LinkSegmentInput { + global String url; + global LinkSegmentInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LiteralJson.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LiteralJson.cls new file mode 100644 index 0000000..530292f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LiteralJson.cls @@ -0,0 +1,10 @@ +global class LiteralJson { + global String json; + global LiteralJson() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LocationAvailabilityInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LocationAvailabilityInputRepresentation.cls new file mode 100644 index 0000000..9a331af --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LocationAvailabilityInputRepresentation.cls @@ -0,0 +1,11 @@ +global class LocationAvailabilityInputRepresentation { + global String externalReferenceId; + global Double quantity; + global String stockKeepingUnit; + global LocationAvailabilityInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LocationCapacityOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LocationCapacityOutputRepresentation.cls new file mode 100644 index 0000000..95d4c2f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LocationCapacityOutputRepresentation.cls @@ -0,0 +1,14 @@ +global class LocationCapacityOutputRepresentation { + global Integer assigned; + global Integer capacity; + global ConnectApi.ErrorResponse error; + global Integer heldCapacity; + global String locationId; + global LocationCapacityOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LocationCheckAvailabilityOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LocationCheckAvailabilityOutputRepresentation.cls new file mode 100644 index 0000000..b9758aa --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LocationCheckAvailabilityOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class LocationCheckAvailabilityOutputRepresentation { + global List inventoryProducts; + global String locationId; + global LocationCheckAvailabilityOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LocationGroupCheckAvailabilityOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LocationGroupCheckAvailabilityOutputRepresentation.cls new file mode 100644 index 0000000..15a4da3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LocationGroupCheckAvailabilityOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class LocationGroupCheckAvailabilityOutputRepresentation { + global List inventoryProducts; + global String locationGroupId; + global LocationGroupCheckAvailabilityOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LocationGroupLevelsOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LocationGroupLevelsOutputRepresentation.cls new file mode 100644 index 0000000..def37d6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LocationGroupLevelsOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class LocationGroupLevelsOutputRepresentation { + global List inventoryProducts; + global String locationGroupId; + global LocationGroupLevelsOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LocationInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LocationInputRepresentation.cls new file mode 100644 index 0000000..49887e1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LocationInputRepresentation.cls @@ -0,0 +1,11 @@ +global class LocationInputRepresentation { + global String countryCode; + global String locationIdentifier; + global String postalCode; + global LocationInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LocationLevelsOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LocationLevelsOutputRepresentation.cls new file mode 100644 index 0000000..32677be --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LocationLevelsOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class LocationLevelsOutputRepresentation { + global List inventoryProducts; + global String locationId; + global LocationLevelsOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LocationOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LocationOutputRepresentation.cls new file mode 100644 index 0000000..ee6c008 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LocationOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class LocationOutputRepresentation { + global Double distance; + global String locationIdentifier; + global LocationOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Locationcheckavailabilityinputrepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Locationcheckavailabilityinputrepresentation.cls new file mode 100644 index 0000000..55c4213 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Locationcheckavailabilityinputrepresentation.cls @@ -0,0 +1,3 @@ +global class Locationcheckavailabilityinputrepresentation { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Locationgroupcheckavailabilityinputrepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Locationgroupcheckavailabilityinputrepresentation.cls new file mode 100644 index 0000000..bc993f9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Locationgroupcheckavailabilityinputrepresentation.cls @@ -0,0 +1,3 @@ +global class Locationgroupcheckavailabilityinputrepresentation { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LoyaltyConnect.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LoyaltyConnect.cls new file mode 100644 index 0000000..653082e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LoyaltyConnect.cls @@ -0,0 +1,3 @@ +global class LoyaltyConnect { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LoyaltyManagementConnect.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LoyaltyManagementConnect.cls new file mode 100644 index 0000000..bfee405 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LoyaltyManagementConnect.cls @@ -0,0 +1,3 @@ +global class LoyaltyManagementConnect { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LoyaltyVoucherConnect.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LoyaltyVoucherConnect.cls new file mode 100644 index 0000000..f152e56 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/LoyaltyVoucherConnect.cls @@ -0,0 +1,3 @@ +global class LoyaltyVoucherConnect { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MLDomainTraining.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MLDomainTraining.cls new file mode 100644 index 0000000..a37fbd1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MLDomainTraining.cls @@ -0,0 +1,3 @@ +global class MLDomainTraining { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MaintenanceInfo.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MaintenanceInfo.cls new file mode 100644 index 0000000..3a2ec39 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MaintenanceInfo.cls @@ -0,0 +1,18 @@ +global class MaintenanceInfo { + global String description; + global String maintenanceTitle; + global ConnectApi.MaintenanceType maintenanceType; + global Datetime messageEffectiveTime; + global Datetime messageExpirationTime; + global Datetime scheduledEndDowntime; + global Datetime scheduledEndMaintenanceTime; + global Datetime scheduledStartDowntime; + global Datetime scheduledStartMaintenanceTime; + global MaintenanceInfo() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MaintenanceType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MaintenanceType.cls new file mode 100644 index 0000000..b991a39 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MaintenanceType.cls @@ -0,0 +1,6 @@ +global enum MaintenanceType { +DOWNTIME, +GENERALLYAVAILABLE, +MAINTENANCEWITHDOWNTIME, +READONLY +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContent.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContent.cls new file mode 100644 index 0000000..79fa142 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContent.cls @@ -0,0 +1,25 @@ +global class ManagedContent { + global Object clone() { } + global static ConnectApi.ManagedContentVersionOutput createManagedContentVersion(String contentSpaceId, ConnectApi.ManagedContentVersionInput contentVersion, ConnectApi.BinaryInput contentData) { } + global static ConnectApi.ManagedContentVersionOutput createManagedContentVersion(String contentSpaceId, ConnectApi.ManagedContentVersionInput contentVersion) { } + global static void deleteManagedContent(String contentSpaceId, String managedContentId) { } + global static ConnectApi.ManagedContentVersionCollection getAllContent(String channelId, Integer pageParam, Integer pageSize, String language, String managedContentType, Boolean includeMetadata, String startDate, String endDate, Boolean showAbsoluteUrl) { } + global static ConnectApi.ManagedContentVersionCollection getAllContent(String channelId, Integer pageParam, Integer pageSize, String language, String managedContentType, Boolean includeMetadata, String startDate, String endDate) { } + global static ConnectApi.ManagedContentChannelCollection getAllDeliveryChannels(Integer pageParam, Integer pageSize) { } + global static ConnectApi.ManagedContentVersionCollection getAllManagedContent(String communityId, Integer pageParam, Integer pageSize, String language, String managedContentType, Boolean showAbsoluteUrl) { } + global static ConnectApi.ManagedContentVersionCollection getAllManagedContent(String communityId, Integer pageParam, Integer pageSize, String language, String managedContentType) { } + global static ConnectApi.ManagedContentVersionCollection getContentByContentKeys(String channelId, List contentKeys, Integer pageParam, Integer pageSize, String language, String managedContentType, Boolean includeMetadata, String startDate, String endDate, Boolean showAbsoluteUrl) { } + global static ConnectApi.ManagedContentVersionCollection getContentByIds(String channelId, List managedContentIds, Integer pageParam, Integer pageSize, String language, String managedContentType, Boolean includeMetadata, String startDate, String endDate, Boolean showAbsoluteUrl) { } + global static ConnectApi.ManagedContentVersionCollection getContentByIds(String channelId, List managedContentIds, Integer pageParam, Integer pageSize, String language, String managedContentType, Boolean includeMetadata, String startDate, String endDate) { } + global static ConnectApi.ManagedContentVersionCollection getManagedContentByContentKeys(String communityId, List contentKeys, Integer pageParam, Integer pageSize, String language, String managedContentType, Boolean showAbsoluteUrl) { } + global static ConnectApi.ManagedContentVersionCollection getManagedContentByIds(String communityId, List managedContentIds, Integer pageParam, Integer pageSize, String language, String managedContentType, Boolean showAbsoluteUrl) { } + global static ConnectApi.ManagedContentVersionCollection getManagedContentByIds(String communityId, List managedContentIds, Integer pageParam, Integer pageSize, String language, String managedContentType) { } + global static ConnectApi.ManagedContentVersionCollection getManagedContentByTopics(String communityId, List topics, Integer pageParam, Integer pageSize, String language, String managedContentType, Boolean showAbsoluteUrl) { } + global static ConnectApi.ManagedContentVersionCollection getManagedContentByTopics(String communityId, List topics, Integer pageParam, Integer pageSize, String language, String managedContentType) { } + global static ConnectApi.ManagedContentVersionCollection getManagedContentByTopicsAndContentKeys(String communityId, List contentKeys, List topics, Integer pageParam, Integer pageSize, String language, String managedContentType, Boolean showAbsoluteUrl) { } + global static ConnectApi.ManagedContentVersionCollection getManagedContentByTopicsAndIds(String communityId, List managedContentIds, List topics, Integer pageParam, Integer pageSize, String language, String managedContentType, Boolean showAbsoluteUrl) { } + global static ConnectApi.ManagedContentVersionCollection getManagedContentByTopicsAndIds(String communityId, List managedContentIds, List topics, Integer pageParam, Integer pageSize, String language, String managedContentType) { } + global static ConnectApi.ManagedContentSpace getManagedContentSpace(String contentSpaceId) { } + global static ConnectApi.ManagedContentOutput updateManagedContent(String contentSpaceId, String managedContentId, ConnectApi.ManagedContentInput contentVersion) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentActionCollectionRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentActionCollectionRepresentation.cls new file mode 100644 index 0000000..e411670 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentActionCollectionRepresentation.cls @@ -0,0 +1,10 @@ +global class ManagedContentActionCollectionRepresentation { + global List actions; + global ManagedContentActionCollectionRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentActionRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentActionRepresentation.cls new file mode 100644 index 0000000..e6118a3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentActionRepresentation.cls @@ -0,0 +1,14 @@ +global class ManagedContentActionRepresentation { + global String apiName; + global String description; + global Boolean isMassAction; + global String label; + global String namespace; + global ManagedContentActionRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentAssociations.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentAssociations.cls new file mode 100644 index 0000000..4ddf701 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentAssociations.cls @@ -0,0 +1,10 @@ +global class ManagedContentAssociations { + global List topics; + global ManagedContentAssociations() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentBodyInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentBodyInput.cls new file mode 100644 index 0000000..675895a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentBodyInput.cls @@ -0,0 +1,9 @@ +global class ManagedContentBodyInput { + global Object nodeMap; + global ManagedContentBodyInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentChannel.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentChannel.cls new file mode 100644 index 0000000..7366be7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentChannel.cls @@ -0,0 +1,19 @@ +global class ManagedContentChannel { + global Long cacheControlMaxAge; + global String channelId; + global String channelName; + global ConnectApi.ConnectManagedContentChannelType channelType; + global String domain; + global String domainId; + global String domainName; + global Boolean isChannelSearchable; + global Boolean isDomainLocked; + global Long mediaCacheControlMaxAge; + global ManagedContentChannel() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentChannelCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentChannelCollection.cls new file mode 100644 index 0000000..977bcb1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentChannelCollection.cls @@ -0,0 +1,14 @@ +global class ManagedContentChannelCollection { + global List channels; + global String currentPageUrl; + global String nextPageUrl; + global String previousPageUrl; + global Integer totalChannels; + global ManagedContentChannelCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentChannelDetail.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentChannelDetail.cls new file mode 100644 index 0000000..8a82010 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentChannelDetail.cls @@ -0,0 +1,16 @@ +global class ManagedContentChannelDetail { + global String channelId; + global String channelName; + global ConnectApi.ConnectManagedContentChannelType channelType; + global String domain; + global String domainName; + global Boolean isChannelSearchable; + global Boolean isDomainLocked; + global ManagedContentChannelDetail() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentChannelSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentChannelSummary.cls new file mode 100644 index 0000000..a8613bb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentChannelSummary.cls @@ -0,0 +1,13 @@ +global class ManagedContentChannelSummary { + global String domainUrl; + global String name; + global String resourceUrl; + global ConnectApi.ManagedContentChannelTargetSummary target; + global ManagedContentChannelSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentChannelTargetSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentChannelTargetSummary.cls new file mode 100644 index 0000000..b4400b4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentChannelTargetSummary.cls @@ -0,0 +1,10 @@ +global class ManagedContentChannelTargetSummary { + global String id; + global ManagedContentChannelTargetSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentCollectionDetailRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentCollectionDetailRepresentation.cls new file mode 100644 index 0000000..106a052 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentCollectionDetailRepresentation.cls @@ -0,0 +1,19 @@ +global class ManagedContentCollectionDetailRepresentation { + global String collectionKey; + global ConnectApi.ManagedContentTypeSummary collectionType; + global String id; + global Boolean isPublished; + global List items; + global String language; + global String title; + global Integer total; + global String urlName; + global String versionNumber; + global ManagedContentCollectionDetailRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentCollectionItem.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentCollectionItem.cls new file mode 100644 index 0000000..fb1c5f6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentCollectionItem.cls @@ -0,0 +1,13 @@ +global class ManagedContentCollectionItem { + global Map body; + global ConnectApi.ManagedContentCollectionItemTypeSummary contentType; + global String id; + global String name; + global ManagedContentCollectionItem() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentCollectionItemTypeSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentCollectionItemTypeSummary.cls new file mode 100644 index 0000000..d56a0ff --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentCollectionItemTypeSummary.cls @@ -0,0 +1,11 @@ +global class ManagedContentCollectionItemTypeSummary { + global String fullyQualifiedName; + global String name; + global ManagedContentCollectionItemTypeSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentCollectionItems.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentCollectionItems.cls new file mode 100644 index 0000000..851fc2f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentCollectionItems.cls @@ -0,0 +1,19 @@ +global class ManagedContentCollectionItems { + global ConnectApi.ManagedContentChannelSummary channelInfo; + global String collectionKey; + global ConnectApi.ManagedContentTypeSummary collectionType; + global String id; + global List items; + global String language; + global Datetime publishedDate; + global String title; + global Integer total; + global String urlName; + global ManagedContentCollectionItems() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentCollectionMetadata.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentCollectionMetadata.cls new file mode 100644 index 0000000..3e1a252 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentCollectionMetadata.cls @@ -0,0 +1,19 @@ +global class ManagedContentCollectionMetadata { + global ConnectApi.ManagedContentChannelSummary channelInfo; + global String collectionKey; + global Map collectionMetadata; + global ConnectApi.ManagedContentTypeSummary collectionType; + global String id; + global String language; + global Datetime publishedDate; + global Map schema; + global String title; + global String urlName; + global ManagedContentCollectionMetadata() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentCollectionMetadataAuthoring.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentCollectionMetadataAuthoring.cls new file mode 100644 index 0000000..1962a63 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentCollectionMetadataAuthoring.cls @@ -0,0 +1,18 @@ +global class ManagedContentCollectionMetadataAuthoring { + global String collectionKey; + global Map collectionMetadata; + global ConnectApi.ManagedContentTypeSummary collectionType; + global String id; + global String language; + global Map schema; + global String spaceId; + global String title; + global String urlName; + global ManagedContentCollectionMetadataAuthoring() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentDateAndTimeNodeValue.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentDateAndTimeNodeValue.cls new file mode 100644 index 0000000..095fd20 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentDateAndTimeNodeValue.cls @@ -0,0 +1,11 @@ +global class ManagedContentDateAndTimeNodeValue { + global Datetime dateTimeValue; + global String timeZone; + global ManagedContentDateAndTimeNodeValue() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentDateNodeValue.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentDateNodeValue.cls new file mode 100644 index 0000000..bc50e62 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentDateNodeValue.cls @@ -0,0 +1,10 @@ +global class ManagedContentDateNodeValue { + global Datetime value; + global ManagedContentDateNodeValue() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentDeliveryDocument.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentDeliveryDocument.cls new file mode 100644 index 0000000..908b3a2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentDeliveryDocument.cls @@ -0,0 +1,13 @@ +global class ManagedContentDeliveryDocument { + global ConnectApi.ManagedContentChannelSummary channelInfo; + global Map contentBody; + global Map references; + global List referencesList; + global ManagedContentDeliveryDocument() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentDeliveryDocumentCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentDeliveryDocumentCollection.cls new file mode 100644 index 0000000..88eca9c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentDeliveryDocumentCollection.cls @@ -0,0 +1,16 @@ +global class ManagedContentDeliveryDocumentCollection { + global ConnectApi.ManagedContentChannelSummary channelInfo; + global List contents; + global String currentPageUrl; + global String nextPageUrl; + global String previousPageUrl; + global Map references; + global List referencesList; + global ManagedContentDeliveryDocumentCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentDeliveryDocumentSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentDeliveryDocumentSummary.cls new file mode 100644 index 0000000..c17ab39 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentDeliveryDocumentSummary.cls @@ -0,0 +1,9 @@ +global class ManagedContentDeliveryDocumentSummary { + global ManagedContentDeliveryDocumentSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentInput.cls new file mode 100644 index 0000000..9d6737c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentInput.cls @@ -0,0 +1,10 @@ +global class ManagedContentInput { + global ConnectApi.ManagedContentStatus connectManagedContentStatusEnum; + global String publishedVersionId; + global ManagedContentInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentLanguageSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentLanguageSummary.cls new file mode 100644 index 0000000..4f757f1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentLanguageSummary.cls @@ -0,0 +1,11 @@ +global class ManagedContentLanguageSummary { + global String displayLabel; + global String locale; + global ManagedContentLanguageSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentMediaNodeValue.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentMediaNodeValue.cls new file mode 100644 index 0000000..9fec172 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentMediaNodeValue.cls @@ -0,0 +1,20 @@ +global class ManagedContentMediaNodeValue { + global String altText; + global String altUrl; + global String contentKey; + global String fileName; + global ConnectApi.ConnectManagedContentMediaType mediaType; + global String mimeType; + global String resourceUrl; + global String thumbnailUrl; + global String title; + global String unauthenticatedUrl; + global String url; + global ManagedContentMediaNodeValue() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentMediaSourceNodeValue.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentMediaSourceNodeValue.cls new file mode 100644 index 0000000..fae15b9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentMediaSourceNodeValue.cls @@ -0,0 +1,17 @@ +global class ManagedContentMediaSourceNodeValue { + global String fileName; + global Boolean isExternal; + global ConnectApi.ConnectManagedContentMediaType mediaType; + global String mimeType; + global String referenceId; + global String resourceUrl; + global String unauthenticatedUrl; + global String url; + global ManagedContentMediaSourceNodeValue() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentNodeType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentNodeType.cls new file mode 100644 index 0000000..327cc10 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentNodeType.cls @@ -0,0 +1,12 @@ +global class ManagedContentNodeType { + global String label; + global String name; + global ConnectApi.ConnectManagedContentNodeType nodeType; + global ManagedContentNodeType() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentNodeValue.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentNodeValue.cls new file mode 100644 index 0000000..741adf8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentNodeValue.cls @@ -0,0 +1,9 @@ +global class ManagedContentNodeValue { + global ConnectApi.ConnectManagedContentNodeType nodeType; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentOutput.cls new file mode 100644 index 0000000..057ac92 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentOutput.cls @@ -0,0 +1,12 @@ +global class ManagedContentOutput { + global String contentKey; + global String id; + global String publishedVersionId; + global ManagedContentOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentReference.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentReference.cls new file mode 100644 index 0000000..c6e4311 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentReference.cls @@ -0,0 +1,11 @@ +global class ManagedContentReference { + global Map contentBody; + global String title; + global ManagedContentReference() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentReferenceSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentReferenceSummary.cls new file mode 100644 index 0000000..8ebf3a2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentReferenceSummary.cls @@ -0,0 +1,10 @@ +global class ManagedContentReferenceSummary { + global String title; + global ManagedContentReferenceSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentSpace.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentSpace.cls new file mode 100644 index 0000000..f86859b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentSpace.cls @@ -0,0 +1,18 @@ +global class ManagedContentSpace { + global String createdBy; + global Datetime createdDate; + global String defaultLanguage; + global String description; + global String id; + global String lastModifiedBy; + global Datetime lastModifiedDate; + global String name; + global String rootFolderId; + global ManagedContentSpace() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentSpaceCollectionRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentSpaceCollectionRepresentation.cls new file mode 100644 index 0000000..448003d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentSpaceCollectionRepresentation.cls @@ -0,0 +1,10 @@ +global class ManagedContentSpaceCollectionRepresentation { + global List spaces; + global ManagedContentSpaceCollectionRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentStatus.cls new file mode 100644 index 0000000..2526233 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentStatus.cls @@ -0,0 +1,7 @@ +global enum ManagedContentStatus { +ARCHIVED, +DRAFT, +PUBLISHED, +READYFORTRANSLATION, +STAGED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentTextNodeValue.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentTextNodeValue.cls new file mode 100644 index 0000000..76530ec --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentTextNodeValue.cls @@ -0,0 +1,10 @@ +global class ManagedContentTextNodeValue { + global String value; + global ManagedContentTextNodeValue() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentType.cls new file mode 100644 index 0000000..b3c31f0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentType.cls @@ -0,0 +1,12 @@ +global class ManagedContentType { + global String label; + global String name; + global Map nodeTypes; + global ManagedContentType() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentTypeSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentTypeSummary.cls new file mode 100644 index 0000000..a504df8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentTypeSummary.cls @@ -0,0 +1,11 @@ +global class ManagedContentTypeSummary { + global String fullyQualifiedName; + global String name; + global ManagedContentTypeSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentVersion.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentVersion.cls new file mode 100644 index 0000000..0fa2ba2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentVersion.cls @@ -0,0 +1,20 @@ +global class ManagedContentVersion { + global ConnectApi.ManagedContentAssociations associations; + global String contentKey; + global Map contentNodes; + global String contentUrlName; + global String language; + global String managedContentId; + global Datetime publishedDate; + global String title; + global String type; + global String typeLabel; + global String unauthenticatedUrl; + global ManagedContentVersion() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentVersionCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentVersionCollection.cls new file mode 100644 index 0000000..ffdf007 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentVersionCollection.cls @@ -0,0 +1,15 @@ +global class ManagedContentVersionCollection { + global String currentPageUrl; + global List items; + global Map managedContentTypes; + global String nextPageUrl; + global Integer total; + global Integer totalTypes; + global ManagedContentVersionCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentVersionInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentVersionInput.cls new file mode 100644 index 0000000..11c02b0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentVersionInput.cls @@ -0,0 +1,15 @@ +global class ManagedContentVersionInput { + global ConnectApi.ManagedContentBodyInput body; + global String externalId; + global String managedContentId; + global String spaceFolderId; + global String title; + global String type; + global String urlName; + global ManagedContentVersionInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentVersionOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentVersionOutput.cls new file mode 100644 index 0000000..bc2c5db --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedContentVersionOutput.cls @@ -0,0 +1,27 @@ +global class ManagedContentVersionOutput { + global ConnectApi.ManagedContentAssociations associations; + global String authoredManagedContentId; + global Map body; + global String contentKey; + global ConnectApi.Reference createdByReference; + global Datetime createdDate; + global String externalId; + global String id; + global ConnectApi.Reference lastUpdatedByReference; + global String managedContentId; + global String primaryLanguage; + global Datetime publishDate; + global ConnectApi.ManagedContentStatus status; + global String title; + global String type; + global String typeLabel; + global Datetime updatedDate; + global String urlName; + global ManagedContentVersionOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedSocialAccount.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedSocialAccount.cls new file mode 100644 index 0000000..836e0a6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedSocialAccount.cls @@ -0,0 +1,9 @@ +global class ManagedSocialAccount { + global ManagedSocialAccount() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedSocialAccountStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedSocialAccountStatus.cls new file mode 100644 index 0000000..b41b8c9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedSocialAccountStatus.cls @@ -0,0 +1,4 @@ +global enum ManagedSocialAccountStatus { +RUNNING, +STOPPED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedSocialAccounts.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedSocialAccounts.cls new file mode 100644 index 0000000..143c521 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedSocialAccounts.cls @@ -0,0 +1,10 @@ +global class ManagedSocialAccounts { + global List managedSocialAccounts; + global ManagedSocialAccounts() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedTopic.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedTopic.cls new file mode 100644 index 0000000..ec9937c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedTopic.cls @@ -0,0 +1,15 @@ +global class ManagedTopic { + global List children; + global String id; + global ConnectApi.ManagedTopicType managedTopicType; + global ConnectApi.Reference parent; + global ConnectApi.Topic topic; + global String url; + global ManagedTopic() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedTopicCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedTopicCollection.cls new file mode 100644 index 0000000..d9f100d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedTopicCollection.cls @@ -0,0 +1,12 @@ +global class ManagedTopicCollection { + global String currentPageUrl; + global List managedTopics; + global String nextPageUrl; + global ManagedTopicCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedTopicPositionCollectionInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedTopicPositionCollectionInput.cls new file mode 100644 index 0000000..7f41a74 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedTopicPositionCollectionInput.cls @@ -0,0 +1,9 @@ +global class ManagedTopicPositionCollectionInput { + global List managedTopicPositions; + global ManagedTopicPositionCollectionInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedTopicPositionInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedTopicPositionInput.cls new file mode 100644 index 0000000..c75100f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedTopicPositionInput.cls @@ -0,0 +1,10 @@ +global class ManagedTopicPositionInput { + global String managedTopicId; + global Integer position; + global ManagedTopicPositionInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedTopicType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedTopicType.cls new file mode 100644 index 0000000..25338b0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedTopicType.cls @@ -0,0 +1,5 @@ +global enum ManagedTopicType { +CONTENT, +FEATURED, +NAVIGATIONAL +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedTopics.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedTopics.cls new file mode 100644 index 0000000..e45686d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ManagedTopics.cls @@ -0,0 +1,18 @@ +global class ManagedTopics { + global Object clone() { } + global static ConnectApi.ManagedTopic createManagedTopic(String communityId, String recordId, ConnectApi.ManagedTopicType managedTopicType, String parentId) { } + global static ConnectApi.ManagedTopic createManagedTopic(String communityId, String recordId, ConnectApi.ManagedTopicType managedTopicType) { } + global static ConnectApi.ManagedTopic createManagedTopicByName(String communityId, String name, ConnectApi.ManagedTopicType managedTopicType, String parentId) { } + global static ConnectApi.ManagedTopic createManagedTopicByName(String communityId, String name, ConnectApi.ManagedTopicType managedTopicType) { } + global static void deleteManagedTopic(String communityId, String managedTopicId) { } + global static ConnectApi.ManagedTopic getManagedTopic(String communityId, String managedTopicId, Integer depth) { } + global static ConnectApi.ManagedTopic getManagedTopic(String communityId, String managedTopicId) { } + global static ConnectApi.ManagedTopicCollection getManagedTopics(String communityId, ConnectApi.ManagedTopicType managedTopicType, Integer pageParam, Integer pageSize) { } + global static ConnectApi.ManagedTopicCollection getManagedTopics(String communityId, ConnectApi.ManagedTopicType managedTopicType, List recordIds, Integer depth) { } + global static ConnectApi.ManagedTopicCollection getManagedTopics(String communityId, ConnectApi.ManagedTopicType managedTopicType, String recordId, Integer depth) { } + global static ConnectApi.ManagedTopicCollection getManagedTopics(String communityId, ConnectApi.ManagedTopicType managedTopicType, Integer depth) { } + global static ConnectApi.ManagedTopicCollection getManagedTopics(String communityId, ConnectApi.ManagedTopicType managedTopicType) { } + global static ConnectApi.ManagedTopicCollection getManagedTopics(String communityId) { } + global static ConnectApi.ManagedTopicCollection reorderManagedTopics(String communityId, ConnectApi.ManagedTopicPositionCollectionInput managedTopicPositionCollection) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Managedcontentdelivery.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Managedcontentdelivery.cls new file mode 100644 index 0000000..801a8e4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Managedcontentdelivery.cls @@ -0,0 +1,3 @@ +global class Managedcontentdelivery { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MappingOutputCollectionRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MappingOutputCollectionRepresentation.cls new file mode 100644 index 0000000..50dbbd6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MappingOutputCollectionRepresentation.cls @@ -0,0 +1,11 @@ +global class MappingOutputCollectionRepresentation { + global Integer count; + global List items; + global MappingOutputCollectionRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MappingOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MappingOutputRepresentation.cls new file mode 100644 index 0000000..1f94a40 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MappingOutputRepresentation.cls @@ -0,0 +1,13 @@ +global class MappingOutputRepresentation { + global String epn; + global String id; + global String providerName; + global String webstoreId; + global MappingOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MarketingIntegration.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MarketingIntegration.cls new file mode 100644 index 0000000..0b24c4b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MarketingIntegration.cls @@ -0,0 +1,7 @@ +global class MarketingIntegration { + global Object clone() { } + global static ConnectApi.Form getForm(String siteId, String formId) { } + global static ConnectApi.Form saveForm(String siteId, ConnectApi.FormInput formInput) { } + global static ConnectApi.FormSubmission submitForm(String siteId, String formId, ConnectApi.FormSubmissionInput formSubmissionInput) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MarkupBeginSegment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MarkupBeginSegment.cls new file mode 100644 index 0000000..4367d29 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MarkupBeginSegment.cls @@ -0,0 +1,13 @@ +global class MarkupBeginSegment { + global String altText; + global String htmlTag; + global ConnectApi.MarkupType markupType; + global String url; + global MarkupBeginSegment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MarkupBeginSegmentInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MarkupBeginSegmentInput.cls new file mode 100644 index 0000000..01f218e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MarkupBeginSegmentInput.cls @@ -0,0 +1,11 @@ +global class MarkupBeginSegmentInput { + global String altText; + global ConnectApi.MarkupType markupType; + global String url; + global MarkupBeginSegmentInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MarkupEndSegment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MarkupEndSegment.cls new file mode 100644 index 0000000..a63f6c2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MarkupEndSegment.cls @@ -0,0 +1,11 @@ +global class MarkupEndSegment { + global String htmlTag; + global ConnectApi.MarkupType markupType; + global MarkupEndSegment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MarkupEndSegmentInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MarkupEndSegmentInput.cls new file mode 100644 index 0000000..921cc4f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MarkupEndSegmentInput.cls @@ -0,0 +1,9 @@ +global class MarkupEndSegmentInput { + global ConnectApi.MarkupType markupType; + global MarkupEndSegmentInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MarkupType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MarkupType.cls new file mode 100644 index 0000000..6ebb9c1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MarkupType.cls @@ -0,0 +1,12 @@ +global enum MarkupType { +BOLD, +CODE, +HYPERLINK, +ITALIC, +LISTITEM, +ORDEREDLIST, +PARAGRAPH, +STRIKETHROUGH, +UNDERLINE, +UNORDEREDLIST +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MatchType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MatchType.cls new file mode 100644 index 0000000..4a2e1a5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MatchType.cls @@ -0,0 +1,5 @@ +global enum MatchType { +MULTIPLEMATCH, +NOMATCH, +SINGLEMATCH +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MediaReference.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MediaReference.cls new file mode 100644 index 0000000..8c1ae82 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MediaReference.cls @@ -0,0 +1,11 @@ +global class MediaReference { + global String mediaUrl; + global String thumbnailUrl; + global MediaReference() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MediaReferenceCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MediaReferenceCapability.cls new file mode 100644 index 0000000..3b859ce --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MediaReferenceCapability.cls @@ -0,0 +1,10 @@ +global class MediaReferenceCapability { + global List media; + global MediaReferenceCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MedicalDirectorOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MedicalDirectorOutput.cls new file mode 100644 index 0000000..d493a77 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MedicalDirectorOutput.cls @@ -0,0 +1,10 @@ +global class MedicalDirectorOutput { + global String username; + global MedicalDirectorOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberAccountInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberAccountInput.cls new file mode 100644 index 0000000..30d9c7f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberAccountInput.cls @@ -0,0 +1,13 @@ +global class MemberAccountInput { + global Map additionalAccountFieldValues; + global Boolean allowDuplicateRecords; + global String name; + global String phone; + global String website; + global MemberAccountInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberAccountOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberAccountOutput.cls new file mode 100644 index 0000000..e723cd4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberAccountOutput.cls @@ -0,0 +1,11 @@ +global class MemberAccountOutput { + global String accountId; + global String name; + global MemberAccountOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberBenefitOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberBenefitOutput.cls new file mode 100644 index 0000000..05fdcb8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberBenefitOutput.cls @@ -0,0 +1,20 @@ +global class MemberBenefitOutput { + global String benefitId; + global String benefitName; + global String benefitTypeId; + global String benefitTypeName; + global String createdRecordId; + global String createdRecordName; + global String description; + global Datetime endDate; + global Boolean isActive; + global String memberBenefitStatus; + global Datetime startDate; + global MemberBenefitOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberBenefitsOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberBenefitsOutput.cls new file mode 100644 index 0000000..f6cfcef --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberBenefitsOutput.cls @@ -0,0 +1,10 @@ +global class MemberBenefitsOutput { + global List memberBenefits; + global MemberBenefitsOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberContactInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberContactInput.cls new file mode 100644 index 0000000..6f27d5f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberContactInput.cls @@ -0,0 +1,13 @@ +global class MemberContactInput { + global Map additionalContactFieldValues; + global Boolean allowDuplicateRecords; + global String email; + global String firstName; + global String lastName; + global MemberContactInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberContactOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberContactOutput.cls new file mode 100644 index 0000000..6d86e44 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberContactOutput.cls @@ -0,0 +1,13 @@ +global class MemberContactOutput { + global String contactId; + global String email; + global String firstName; + global String lastName; + global MemberContactOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberCurrencyOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberCurrencyOutput.cls new file mode 100644 index 0000000..f81c395 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberCurrencyOutput.cls @@ -0,0 +1,29 @@ +global class MemberCurrencyOutput { + global Map additionalLoyaltyMemberCurrencyFields; + global Double escrowPointsBalance; + global Double expirablePoints; + global Datetime lastAccrualProcessedDate; + global Datetime lastEscrowProcessedDate; + global Datetime lastExpirationProcessRunDate; + global Datetime lastPointsAggregationDate; + global Datetime lastPointsResetDate; + global String loyaltyMemberCurrencyName; + global String loyaltyProgramCurrencyId; + global String loyaltyProgramCurrencyName; + global String memberCurrencyId; + global Datetime nextQualifyingPointsResetDate; + global Double pointsBalance; + global Double qualifyingPointsBalanceBeforeReset; + global Double totalEscrowPointsAccrued; + global Double totalEscrowRolloverPoints; + global Double totalPointsAccrued; + global Double totalPointsExpired; + global Double totalPointsRedeemed; + global MemberCurrencyOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberDetailsOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberDetailsOutput.cls new file mode 100644 index 0000000..838a0de --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberDetailsOutput.cls @@ -0,0 +1,33 @@ +global class MemberDetailsOutput { + global Map additionalLoyaltyProgramMemberFields; + global ConnectApi.MemberAccountOutput associatedAccount; + global ConnectApi.MemberContactOutput associatedContact; + global Boolean canReceivePartnerPromotions; + global Boolean canReceivePromotions; + global String enrollmentChannel; + global Datetime enrollmentDate; + global String groupCreatedByMember; + global String groupName; + global Datetime lastActivityDate; + global String loyaltyProgramMemberId; + global String loyaltyProgramName; + global List memberCurrencies; + global String memberStatus; + global List memberTiers; + global String memberType; + global Datetime membershipEndDate; + global Datetime membershipLastRenewalDate; + global String membershipNumber; + global String referredBy; + global String relatedCorporateMembershipNumber; + global String transactionJournalStatementFrequency; + global Datetime transactionJournalStatementLastGeneratedDate; + global String transactionJournalStatementMethod; + global MemberDetailsOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberTierOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberTierOutput.cls new file mode 100644 index 0000000..189d1e3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberTierOutput.cls @@ -0,0 +1,21 @@ +global class MemberTierOutput { + global Map additionalLoyaltyMemberTierFields; + global Boolean areTierBenefitsAssigned; + global String loyaltyMemberTierId; + global String loyaltyMemberTierName; + global String tierChangeReason; + global String tierChangeReasonType; + global Datetime tierEffectiveDate; + global Datetime tierExpirationDate; + global String tierGroupId; + global String tierGroupName; + global String tierId; + global Integer tierSequenceNumber; + global MemberTierOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberVouchersSortField.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberVouchersSortField.cls new file mode 100644 index 0000000..85289c2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberVouchersSortField.cls @@ -0,0 +1,5 @@ +global enum MemberVouchersSortField { +CREATEDDATE, +EFFECTIVEDATE, +EXPIRATIONDATE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberVouchersSortOrder.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberVouchersSortOrder.cls new file mode 100644 index 0000000..27b69a1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MemberVouchersSortOrder.cls @@ -0,0 +1,4 @@ +global enum MemberVouchersSortOrder { +ASCENDING, +DESCENDING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MentionCompletion.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MentionCompletion.cls new file mode 100644 index 0000000..113c3af --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MentionCompletion.cls @@ -0,0 +1,16 @@ +global class MentionCompletion { + global String additionalLabel; + global String description; + global String name; + global ConnectApi.OutOfOffice outOfOffice; + global String photoUrl; + global String recordId; + global ConnectApi.UserType userType; + global MentionCompletion() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MentionCompletionPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MentionCompletionPage.cls new file mode 100644 index 0000000..60bfc83 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MentionCompletionPage.cls @@ -0,0 +1,13 @@ +global class MentionCompletionPage { + global String currentPageUrl; + global List mentionCompletions; + global String nextPageUrl; + global String previousPageUrl; + global MentionCompletionPage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MentionCompletionType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MentionCompletionType.cls new file mode 100644 index 0000000..4c89af0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MentionCompletionType.cls @@ -0,0 +1,5 @@ +global enum MentionCompletionType { +ALL, +GROUP, +USER +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MentionSegment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MentionSegment.cls new file mode 100644 index 0000000..bb488eb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MentionSegment.cls @@ -0,0 +1,13 @@ +global class MentionSegment { + global Boolean accessible; + global String name; + global ConnectApi.ActorWithId record; + global ConnectApi.UserSummary user; + global MentionSegment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MentionSegmentInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MentionSegmentInput.cls new file mode 100644 index 0000000..b4e5c04 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MentionSegmentInput.cls @@ -0,0 +1,10 @@ +global class MentionSegmentInput { + global String id; + global String username; + global MentionSegmentInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MentionValidation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MentionValidation.cls new file mode 100644 index 0000000..c574d0b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MentionValidation.cls @@ -0,0 +1,11 @@ +global class MentionValidation { + global String recordId; + global ConnectApi.MentionValidationStatus validationStatus; + global MentionValidation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MentionValidationStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MentionValidationStatus.cls new file mode 100644 index 0000000..9e090f3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MentionValidationStatus.cls @@ -0,0 +1,5 @@ +global enum MentionValidationStatus { +DISALLOWED, +INACCESSIBLE, +OK +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MentionValidations.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MentionValidations.cls new file mode 100644 index 0000000..b075c1e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MentionValidations.cls @@ -0,0 +1,11 @@ +global class MentionValidations { + global Boolean hasErrors; + global List mentionValidations; + global MentionValidations() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Mentions.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Mentions.cls new file mode 100644 index 0000000..ab74437 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Mentions.cls @@ -0,0 +1,9 @@ +global class Mentions { + global Object clone() { } + global static ConnectApi.MentionCompletionPage getMentionCompletions(String communityId, String q, String contextId, ConnectApi.MentionCompletionType type, Integer pageParam, Integer pageSize) { } + global static ConnectApi.MentionCompletionPage getMentionCompletions(String communityId, String q, String contextId) { } + global static ConnectApi.MentionValidations getMentionValidations(String communityId, String parentId, List recordIds, ConnectApi.FeedItemVisibilityType visibility) { } + global static void setTestGetMentionCompletions(String communityId, String q, String contextId, ConnectApi.MentionCompletionType type, Integer pageParam, Integer pageSize, ConnectApi.MentionCompletionPage result) { } + global static void setTestGetMentionCompletions(String communityId, String q, String contextId, ConnectApi.MentionCompletionPage result) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MessageBody.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MessageBody.cls new file mode 100644 index 0000000..36fbb76 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MessageBody.cls @@ -0,0 +1,9 @@ +global class MessageBody { + global MessageBody() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MessageBodyInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MessageBodyInput.cls new file mode 100644 index 0000000..1879bac --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MessageBodyInput.cls @@ -0,0 +1,9 @@ +global class MessageBodyInput { + global List messageSegments; + global MessageBodyInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MessageSegment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MessageSegment.cls new file mode 100644 index 0000000..1aa1368 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MessageSegment.cls @@ -0,0 +1,10 @@ +global class MessageSegment { + global String text; + global ConnectApi.MessageSegmentType type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MessageSegmentInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MessageSegmentInput.cls new file mode 100644 index 0000000..37b2e81 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MessageSegmentInput.cls @@ -0,0 +1,7 @@ +global class MessageSegmentInput { + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MessageSegmentType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MessageSegmentType.cls new file mode 100644 index 0000000..2d376c0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MessageSegmentType.cls @@ -0,0 +1,15 @@ +global enum MessageSegmentType { +ENTITYLINK, +FIELDCHANGE, +FIELDCHANGENAME, +FIELDCHANGEVALUE, +HASHTAG, +INLINEIMAGE, +LINK, +MARKUPBEGIN, +MARKUPEND, +MENTION, +MORECHANGES, +RESOURCELINK, +TEXT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MetricSpanEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MetricSpanEnum.cls new file mode 100644 index 0000000..9d863a2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MetricSpanEnum.cls @@ -0,0 +1,6 @@ +global enum MetricSpanEnum { +DAY, +MONTH, +SINCELASTACTION, +WEEK +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Missions.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Missions.cls new file mode 100644 index 0000000..139190e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Missions.cls @@ -0,0 +1,9 @@ +global class Missions { + global Object clone() { } + global static ConnectApi.UserMissionActivitiesJob exportUserMissionsActivities(String communityId, String userId) { } + global static ConnectApi.UserMissionActivityCollection getUserMissionsProgress(String communityId, String userId) { } + global static ConnectApi.UserMissionActivitiesJob purgeUserMissionsActivities(String communityId, String userId) { } + global static ConnectApi.UserMissionActivitiesJob purgeUserMissionsActivities(String communityId) { } + global static ConnectApi.UserMissionActivityStatus updateUserMissionActivityCount(ConnectApi.UserMissionActivityType activityType, Integer activityCount, String communityId, String userId) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MlDomainTrainingErrorType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MlDomainTrainingErrorType.cls new file mode 100644 index 0000000..3345cb9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MlDomainTrainingErrorType.cls @@ -0,0 +1,9 @@ +global enum MlDomainTrainingErrorType { +APEXNLPPROVIDERDEFINEDFORLANGUAGE, +CONVERSATIONDEFINITIONISACTIVE, +EINSTEINNOTPROVISIONED, +LANGUAGENOTDEFINED, +LOWINTENTCOUNT, +LOWINTENTUTTERANCECOUNT, +SERVICEISUNAVAILABLE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MlDomainTrainingInfoRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MlDomainTrainingInfoRepresentation.cls new file mode 100644 index 0000000..c8b5381 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MlDomainTrainingInfoRepresentation.cls @@ -0,0 +1,12 @@ +global class MlDomainTrainingInfoRepresentation { + global Boolean isTrainable; + global Map lowIntentUtteranceCounts; + global ConnectApi.MlDomainTrainingErrorType notTrainableReason; + global MlDomainTrainingInfoRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MlDomainTrainingRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MlDomainTrainingRepresentation.cls new file mode 100644 index 0000000..43671ea --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MlDomainTrainingRepresentation.cls @@ -0,0 +1,11 @@ +global class MlDomainTrainingRepresentation { + global String errorMessage; + global Boolean isSuccess; + global MlDomainTrainingRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MobilePublisherOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MobilePublisherOutput.cls new file mode 100644 index 0000000..ce91b46 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MobilePublisherOutput.cls @@ -0,0 +1,9 @@ +global class MobilePublisherOutput { + global MobilePublisherOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ModelFeature.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ModelFeature.cls new file mode 100644 index 0000000..6486ce1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ModelFeature.cls @@ -0,0 +1,12 @@ +global class ModelFeature { + global String label; + global String name; + global String type; + global ModelFeature() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ModerationCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ModerationCapability.cls new file mode 100644 index 0000000..9785099 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ModerationCapability.cls @@ -0,0 +1,10 @@ +global class ModerationCapability { + global ConnectApi.ModerationFlags moderationFlags; + global ModerationCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ModerationFlagItemDetail.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ModerationFlagItemDetail.cls new file mode 100644 index 0000000..c03ed01 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ModerationFlagItemDetail.cls @@ -0,0 +1,15 @@ +global class ModerationFlagItemDetail { + global String createdBy; + global Datetime createdDate; + global String id; + global ConnectApi.CommunityFlagType moderationType; + global String note; + global ConnectApi.CommunityFlagVisibility visibility; + global ModerationFlagItemDetail() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ModerationFlags.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ModerationFlags.cls new file mode 100644 index 0000000..5abaf9f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ModerationFlags.cls @@ -0,0 +1,13 @@ +global class ModerationFlags { + global Integer flagCount; + global Map flagCountByReason; + global Boolean flaggedByMe; + global ConnectApi.ModerationFlagsCollection flags; + global ModerationFlags() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ModerationFlagsCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ModerationFlagsCollection.cls new file mode 100644 index 0000000..21bd5ff --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ModerationFlagsCollection.cls @@ -0,0 +1,15 @@ +global class ModerationFlagsCollection { + global String currentPageToken; + global String currentPageUrl; + global List flags; + global String nextPageToken; + global String nextPageUrl; + global Integer pageSize; + global ModerationFlagsCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ModifyShiftResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ModifyShiftResult.cls new file mode 100644 index 0000000..0dd3b38 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ModifyShiftResult.cls @@ -0,0 +1,10 @@ +global class ModifyShiftResult { + global String responseMessage; + global ModifyShiftResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MoreChangesSegment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MoreChangesSegment.cls new file mode 100644 index 0000000..7eda01f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MoreChangesSegment.cls @@ -0,0 +1,11 @@ +global class MoreChangesSegment { + global List moreChanges; + global Integer moreChangesCount; + global MoreChangesSegment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Motif.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Motif.cls new file mode 100644 index 0000000..aeabc6a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Motif.cls @@ -0,0 +1,14 @@ +global class Motif { + global String color; + global String largeIconUrl; + global String mediumIconUrl; + global String smallIconUrl; + global String svgIconUrl; + global Motif() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MultipleAsyncOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MultipleAsyncOutputRepresentation.cls new file mode 100644 index 0000000..9c80307 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MultipleAsyncOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class MultipleAsyncOutputRepresentation { + global List asyncOutputs; + global MultipleAsyncOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MultipleEnsureFundsAsyncInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MultipleEnsureFundsAsyncInputRepresentation.cls new file mode 100644 index 0000000..1276d8e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MultipleEnsureFundsAsyncInputRepresentation.cls @@ -0,0 +1,9 @@ +global class MultipleEnsureFundsAsyncInputRepresentation { + global List asyncInputs; + global MultipleEnsureFundsAsyncInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MultipleFulfillmentOrderInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MultipleFulfillmentOrderInputRepresentation.cls new file mode 100644 index 0000000..4fb08ca --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MultipleFulfillmentOrderInputRepresentation.cls @@ -0,0 +1,10 @@ +global class MultipleFulfillmentOrderInputRepresentation { + global Boolean allOrNothing; + global List fulfillmentOrders; + global MultipleFulfillmentOrderInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MultipleFulfillmentOrderInvoicesInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MultipleFulfillmentOrderInvoicesInputRepresentation.cls new file mode 100644 index 0000000..f33b3f3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MultipleFulfillmentOrderInvoicesInputRepresentation.cls @@ -0,0 +1,9 @@ +global class MultipleFulfillmentOrderInvoicesInputRepresentation { + global List fulfillmentOrderIds; + global MultipleFulfillmentOrderInvoicesInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MultipleFulfillmentOrderInvoicesOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MultipleFulfillmentOrderInvoicesOutputRepresentation.cls new file mode 100644 index 0000000..58b6964 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MultipleFulfillmentOrderInvoicesOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class MultipleFulfillmentOrderInvoicesOutputRepresentation { + global List invoiceIds; + global MultipleFulfillmentOrderInvoicesOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MultipleFulfillmentOrderOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MultipleFulfillmentOrderOutputRepresentation.cls new file mode 100644 index 0000000..0238442 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MultipleFulfillmentOrderOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class MultipleFulfillmentOrderOutputRepresentation { + global List fulfillmentOrders; + global MultipleFulfillmentOrderOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MuteCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MuteCapability.cls new file mode 100644 index 0000000..28fa9b1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MuteCapability.cls @@ -0,0 +1,10 @@ +global class MuteCapability { + global Boolean isMutedByMe; + global MuteCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MuteCapabilityInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MuteCapabilityInput.cls new file mode 100644 index 0000000..d00e601 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MuteCapabilityInput.cls @@ -0,0 +1,9 @@ +global class MuteCapabilityInput { + global Boolean isMutedByMe; + global MuteCapabilityInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MuteSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MuteSummary.cls new file mode 100644 index 0000000..64fd25d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/MuteSummary.cls @@ -0,0 +1,9 @@ +global class MuteSummary { + global MuteSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NBAActionParameter.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NBAActionParameter.cls new file mode 100644 index 0000000..b5a59ac --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NBAActionParameter.cls @@ -0,0 +1,12 @@ +global class NBAActionParameter { + global String name; + global String type; + global String value; + global NBAActionParameter() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NBAActionType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NBAActionType.cls new file mode 100644 index 0000000..6d19822 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NBAActionType.cls @@ -0,0 +1,3 @@ +global enum NBAActionType { +FLOW +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NBAFlowAction.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NBAFlowAction.cls new file mode 100644 index 0000000..b3179be --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NBAFlowAction.cls @@ -0,0 +1,13 @@ +global class NBAFlowAction { + global String flowLabel; + global ConnectApi.NBAFlowType flowType; + global String id; + global String name; + global NBAFlowAction() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NBAFlowType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NBAFlowType.cls new file mode 100644 index 0000000..a5ed8db --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NBAFlowType.cls @@ -0,0 +1,4 @@ +global enum NBAFlowType { +AUTOLAUNCHEDFLOW, +FLOW +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NBANativeRecommendation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NBANativeRecommendation.cls new file mode 100644 index 0000000..74eb104 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NBANativeRecommendation.cls @@ -0,0 +1,12 @@ +global class NBANativeRecommendation { + global String id; + global String name; + global String url; + global NBANativeRecommendation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NBARecommendation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NBARecommendation.cls new file mode 100644 index 0000000..acf5af9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NBARecommendation.cls @@ -0,0 +1,19 @@ +global class NBARecommendation { + global String acceptanceLabel; + global String aiModel; + global String description; + global String externalId; + global String imageUrl; + global String recommendationMode; + global Double recommendationScore; + global String rejectionLabel; + global ConnectApi.AbstractNBATarget target; + global ConnectApi.AbstractNBAAction targetAction; + global NBARecommendation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NBARecommendations.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NBARecommendations.cls new file mode 100644 index 0000000..fdbcb7b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NBARecommendations.cls @@ -0,0 +1,13 @@ +global class NBARecommendations { + global String executionId; + global String onBehalfOfId; + global List recommendations; + global ConnectApi.StrategyTrace trace; + global NBARecommendations() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NBAStrategyInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NBAStrategyInput.cls new file mode 100644 index 0000000..4a04d25 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NBAStrategyInput.cls @@ -0,0 +1,12 @@ +global class NBAStrategyInput { + global String contextRecordId; + global Boolean debugTrace; + global Integer maxResults; + global Map strategyContext; + global NBAStrategyInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NBATargetType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NBATargetType.cls new file mode 100644 index 0000000..9a1f837 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NBATargetType.cls @@ -0,0 +1,3 @@ +global enum NBATargetType { +RECOMMENDATION +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredential.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredential.cls new file mode 100644 index 0000000..d057938 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredential.cls @@ -0,0 +1,20 @@ +global class NamedCredential { + global ConnectApi.NamedCredentialCalloutOptions calloutOptions; + global String calloutUrl; + global List customHeaders; + global String developerName; + global List externalCredentials; + global String id; + global String masterLabel; + global ConnectApi.NetworkConnection networkConnection; + global List parameters; + global ConnectApi.NamedCredentialType type; + global String url; + global NamedCredential() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredentialCalloutOptions.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredentialCalloutOptions.cls new file mode 100644 index 0000000..5cd3e01 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredentialCalloutOptions.cls @@ -0,0 +1,12 @@ +global class NamedCredentialCalloutOptions { + global Boolean allowMergeFieldsInBody; + global Boolean allowMergeFieldsInHeader; + global Boolean generateAuthorizationHeader; + global NamedCredentialCalloutOptions() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredentialCalloutOptionsInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredentialCalloutOptionsInput.cls new file mode 100644 index 0000000..c90d2fa --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredentialCalloutOptionsInput.cls @@ -0,0 +1,11 @@ +global class NamedCredentialCalloutOptionsInput { + global Boolean allowMergeFieldsInBody; + global Boolean allowMergeFieldsInHeader; + global Boolean generateAuthorizationHeader; + global NamedCredentialCalloutOptionsInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredentialInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredentialInput.cls new file mode 100644 index 0000000..f4ea43b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredentialInput.cls @@ -0,0 +1,17 @@ +global class NamedCredentialInput { + global ConnectApi.NamedCredentialCalloutOptionsInput calloutOptions; + global String calloutUrl; + global List customHeaders; + global String developerName; + global List externalCredentials; + global String masterLabel; + global ConnectApi.NetworkConnectionInput networkConnection; + global List parameters; + global ConnectApi.NamedCredentialType type; + global NamedCredentialInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredentialList.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredentialList.cls new file mode 100644 index 0000000..84f26c8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredentialList.cls @@ -0,0 +1,10 @@ +global class NamedCredentialList { + global List namedCredentials; + global NamedCredentialList() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredentialParameter.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredentialParameter.cls new file mode 100644 index 0000000..72522e0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredentialParameter.cls @@ -0,0 +1,13 @@ +global class NamedCredentialParameter { + global String id; + global String parameterName; + global ConnectApi.NamedCredentialParameterType parameterType; + global String parameterValue; + global NamedCredentialParameter() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredentialParameterInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredentialParameterInput.cls new file mode 100644 index 0000000..22accd7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredentialParameterInput.cls @@ -0,0 +1,13 @@ +global class NamedCredentialParameterInput { + global String id; + global String parameterDescription; + global String parameterName; + global ConnectApi.NamedCredentialParameterType parameterType; + global String parameterValue; + global NamedCredentialParameterInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredentialParameterType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredentialParameterType.cls new file mode 100644 index 0000000..4962182 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredentialParameterType.cls @@ -0,0 +1,4 @@ +global enum NamedCredentialParameterType { +ALLOWEDMANAGEDPACKAGENAMESPACES, +CLIENTCERTIFICATE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredentialType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredentialType.cls new file mode 100644 index 0000000..b421c81 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredentialType.cls @@ -0,0 +1,4 @@ +global enum NamedCredentialType { +PRIVATEENDPOINT, +SECUREDENDPOINT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredentials.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredentials.cls new file mode 100644 index 0000000..2b3c698 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NamedCredentials.cls @@ -0,0 +1,20 @@ +global class NamedCredentials { + global Object clone() { } + global static ConnectApi.Credential createCredential(ConnectApi.CredentialInput requestBody, ConnectApi.CreateCredentialAction action) { } + global static ConnectApi.Credential createCredential(ConnectApi.CredentialInput requestBody) { } + global static ConnectApi.ExternalCredential createExternalCredential(ConnectApi.ExternalCredentialInput requestBody) { } + global static ConnectApi.NamedCredential createNamedCredential(ConnectApi.NamedCredentialInput requestBody) { } + global static void deleteCredential(String externalCredential, String principalName, ConnectApi.CredentialPrincipalType principalType) { } + global static void deleteExternalCredential(String developerName) { } + global static void deleteNamedCredential(String developerName) { } + global static ConnectApi.Credential getCredential(String externalCredential, String principalName, ConnectApi.CredentialPrincipalType principalType) { } + global static ConnectApi.ExternalCredential getExternalCredential(String developerName) { } + global static ConnectApi.ExternalCredentialList getExternalCredentials() { } + global static ConnectApi.NamedCredential getNamedCredential(String developerName) { } + global static ConnectApi.NamedCredentialList getNamedCredentials() { } + global static ConnectApi.OAuthCredentialAuthUrl getOAuthCredentialAuthUrl(ConnectApi.OAuthCredentialAuthUrlInput requestBody) { } + global static ConnectApi.Credential updateCredential(ConnectApi.CredentialInput requestBody) { } + global static ConnectApi.ExternalCredential updateExternalCredential(String developerName, ConnectApi.ExternalCredentialInput requestBody) { } + global static ConnectApi.NamedCredential updateNamedCredential(String developerName, ConnectApi.NamedCredentialInput requestBody) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NavigationMenu.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NavigationMenu.cls new file mode 100644 index 0000000..fea31fc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NavigationMenu.cls @@ -0,0 +1,6 @@ +global class NavigationMenu { + global Object clone() { } + global static ConnectApi.NavigationMenuItemCollection getCommunityNavigationMenu(String communityId, String navigationLinkSetId, String navigationLinkSetDeveloperName, ConnectApi.PublishStatus publishStatus, Boolean includeImageUrl, Boolean addHomeMenuItem, List menuItemTypesToSkip, String effectiveAccountId) { } + global static ConnectApi.NavigationMenuItemCollection getCommunityNavigationMenu(String communityId, String navigationLinkSetId, String navigationLinkSetDeveloperName, ConnectApi.PublishStatus publishStatus, Boolean includeImageUrl, Boolean addHomeMenuItem, List menuItemTypesToSkip) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NavigationMenuItem.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NavigationMenuItem.cls new file mode 100644 index 0000000..21fa78f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NavigationMenuItem.cls @@ -0,0 +1,15 @@ +global class NavigationMenuItem { + global ConnectApi.NavigationMenuItemActionType actionType; + global String actionValue; + global String imageUrl; + global String label; + global List subMenu; + global ConnectApi.NavigationMenuItemOpenTarget target; + global NavigationMenuItem() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NavigationMenuItemActionType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NavigationMenuItemActionType.cls new file mode 100644 index 0000000..73b1ba4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NavigationMenuItemActionType.cls @@ -0,0 +1,6 @@ +global enum NavigationMenuItemActionType { +EVENT, +EXTERNALLINK, +INTERNALLINK, +MODAL +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NavigationMenuItemCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NavigationMenuItemCollection.cls new file mode 100644 index 0000000..afcfb89 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NavigationMenuItemCollection.cls @@ -0,0 +1,10 @@ +global class NavigationMenuItemCollection { + global List menuItems; + global NavigationMenuItemCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NavigationMenuItemOpenTarget.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NavigationMenuItemOpenTarget.cls new file mode 100644 index 0000000..dac2e71 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NavigationMenuItemOpenTarget.cls @@ -0,0 +1,4 @@ +global enum NavigationMenuItemOpenTarget { +CURRENTWINDOW, +NEWWINDOW +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NavigationMenuItemType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NavigationMenuItemType.cls new file mode 100644 index 0000000..59213e2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NavigationMenuItemType.cls @@ -0,0 +1,12 @@ +global enum NavigationMenuItemType { +DATASOURCEDRIVEN, +EVENT, +EXTERNALLINK, +GLOBALACTION, +INTERNALLINK, +MENULABEL, +MODAL, +NAVIGATIONALTOPIC, +SALESFORCEOBJECT, +SYSTEMLINK +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NetworkConnection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NetworkConnection.cls new file mode 100644 index 0000000..0dd04a9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NetworkConnection.cls @@ -0,0 +1,13 @@ +global class NetworkConnection { + global String developerName; + global String id; + global String masterLabel; + global String namespacePrefix; + global NetworkConnection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NetworkConnectionInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NetworkConnectionInput.cls new file mode 100644 index 0000000..3b22674 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NetworkConnectionInput.cls @@ -0,0 +1,10 @@ +global class NetworkConnectionInput { + global String developerName; + global String namespace; + global NetworkConnectionInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NewFileAttachmentInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NewFileAttachmentInput.cls new file mode 100644 index 0000000..c1c93ff --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NewFileAttachmentInput.cls @@ -0,0 +1,10 @@ +global class NewFileAttachmentInput { + global String description; + global String title; + global NewFileAttachmentInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NewUserAudienceCriteria.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NewUserAudienceCriteria.cls new file mode 100644 index 0000000..8f07f3f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NewUserAudienceCriteria.cls @@ -0,0 +1,10 @@ +global class NewUserAudienceCriteria { + global Double maxDaysInCommunity; + global NewUserAudienceCriteria() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NewUserAudienceCriteriaInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NewUserAudienceCriteriaInput.cls new file mode 100644 index 0000000..d8b2caa --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NewUserAudienceCriteriaInput.cls @@ -0,0 +1,9 @@ +global class NewUserAudienceCriteriaInput { + global Double value; + global NewUserAudienceCriteriaInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NextBestAction.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NextBestAction.cls new file mode 100644 index 0000000..c58cba7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NextBestAction.cls @@ -0,0 +1,12 @@ +global class NextBestAction { + global Object clone() { } + global static void deleteRecommendationReaction(String reactionId) { } + global static ConnectApi.NBARecommendations executeStrategy(String strategyName, Integer maxResults, String contextRecordId, Boolean debugTrace) { } + global static ConnectApi.NBARecommendations executeStrategy(String strategyName, Integer maxResults, String contextRecordId) { } + global static ConnectApi.NBARecommendations executeStrategy(String strategyName, ConnectApi.NBAStrategyInput strategyInput) { } + global static ConnectApi.Recommendation getRecommendation(String recommendationId) { } + global static ConnectApi.RecommendationReaction getRecommendationReaction(String reactionId) { } + global static ConnectApi.RecommendationReactions getRecommendationReactions(String onBehalfOfId, String createdById, String targetId, String contextRecordId, Integer pageParam, Integer pageSize) { } + global static ConnectApi.RecommendationReaction setRecommendationReaction(ConnectApi.RecommendationReactionInput reaction) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NftSettings.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NftSettings.cls new file mode 100644 index 0000000..56087fd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NftSettings.cls @@ -0,0 +1,3 @@ +global class NftSettings { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NftSettingsOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NftSettingsOutput.cls new file mode 100644 index 0000000..16b77e3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NftSettingsOutput.cls @@ -0,0 +1,14 @@ +global class NftSettingsOutput { + global Boolean isMainnet; + global Boolean isMultisigEnabled; + global Integer minContractAdminSignatures; + global Integer minFinanceAdminSignatures; + global String productVariationPriceField; + global NftSettingsOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NonEntityRecommendation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NonEntityRecommendation.cls new file mode 100644 index 0000000..bafcaff --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NonEntityRecommendation.cls @@ -0,0 +1,11 @@ +global class NonEntityRecommendation { + global String displayLabel; + global ConnectApi.Motif motif; + global NonEntityRecommendation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NotFoundException.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NotFoundException.cls new file mode 100644 index 0000000..ebee4d7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NotFoundException.cls @@ -0,0 +1,5 @@ +global class NotFoundException extends Exception { + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NotifyAccessResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NotifyAccessResult.cls new file mode 100644 index 0000000..b033c06 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/NotifyAccessResult.cls @@ -0,0 +1,16 @@ +global class NotifyAccessResult { + global String accessKey; + global String endpoint; + global String externalUserId; + global Boolean isModeratorOnCall; + global String keyId; + global String region; + global String sessionToken; + global NotifyAccessResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OAuthCredentialAuthUrl.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OAuthCredentialAuthUrl.cls new file mode 100644 index 0000000..d1f26c6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OAuthCredentialAuthUrl.cls @@ -0,0 +1,13 @@ +global class OAuthCredentialAuthUrl { + global String authenticationUrl; + global String externalCredential; + global String principalName; + global ConnectApi.CredentialPrincipalType principalType; + global OAuthCredentialAuthUrl() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OAuthCredentialAuthUrlInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OAuthCredentialAuthUrlInput.cls new file mode 100644 index 0000000..ff13444 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OAuthCredentialAuthUrlInput.cls @@ -0,0 +1,12 @@ +global class OAuthCredentialAuthUrlInput { + global String externalCredential; + global String principalName; + global ConnectApi.CredentialPrincipalType principalType; + global String returnUrl; + global OAuthCredentialAuthUrlInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIBaseOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIBaseOutputRepresentation.cls new file mode 100644 index 0000000..d5e4e28 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIBaseOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class OCIBaseOutputRepresentation { + global List errors; + global Boolean success; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCICancelReservationInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCICancelReservationInputRepresentation.cls new file mode 100644 index 0000000..ecc2602 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCICancelReservationInputRepresentation.cls @@ -0,0 +1,9 @@ +global class OCICancelReservationInputRepresentation { + global String reservsationId; + global OCICancelReservationInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCICancelReservationOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCICancelReservationOutputRepresentation.cls new file mode 100644 index 0000000..c9785ec --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCICancelReservationOutputRepresentation.cls @@ -0,0 +1,9 @@ +global class OCICancelReservationOutputRepresentation { + global OCICancelReservationOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCICreateReservationErrorOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCICreateReservationErrorOutputRepresentation.cls new file mode 100644 index 0000000..fbd193f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCICreateReservationErrorOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class OCICreateReservationErrorOutputRepresentation { + global String errorCode; + global String message; + global OCICreateReservationErrorOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCICreateReservationInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCICreateReservationInputRepresentation.cls new file mode 100644 index 0000000..7a44a73 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCICreateReservationInputRepresentation.cls @@ -0,0 +1,15 @@ +global class OCICreateReservationInputRepresentation { + global String actionRequestId; + global Boolean allowPartialReservations; + global List createAllOrNothingRecords; + global List createRecords; + global Integer expirationSeconds; + global String externalRefId; + global String reservationTime; + global OCICreateReservationInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCICreateReservationOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCICreateReservationOutputRepresentation.cls new file mode 100644 index 0000000..f5636b8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCICreateReservationOutputRepresentation.cls @@ -0,0 +1,14 @@ +global class OCICreateReservationOutputRepresentation { + global List details; + global List errors; + global String expirationTime; + global String reservationTime; + global Boolean success; + global OCICreateReservationOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCICreateReservationSingleInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCICreateReservationSingleInputRepresentation.cls new file mode 100644 index 0000000..e81439e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCICreateReservationSingleInputRepresentation.cls @@ -0,0 +1,12 @@ +global class OCICreateReservationSingleInputRepresentation { + global String locationGroupIdentifier; + global String locationIdentifier; + global Double quantity; + global String stockKeepingUnit; + global OCICreateReservationSingleInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCICreateReservationSingleOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCICreateReservationSingleOutputRepresentation.cls new file mode 100644 index 0000000..929e330 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCICreateReservationSingleOutputRepresentation.cls @@ -0,0 +1,14 @@ +global class OCICreateReservationSingleOutputRepresentation { + global String errorCode; + global String locationGroupIdentifier; + global String locationIdentifier; + global Double quantity; + global String stockKeepingUnit; + global OCICreateReservationSingleOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIFulfillReservationErrorOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIFulfillReservationErrorOutputRepresentation.cls new file mode 100644 index 0000000..1d10d2c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIFulfillReservationErrorOutputRepresentation.cls @@ -0,0 +1,12 @@ +global class OCIFulfillReservationErrorOutputRepresentation { + global ConnectApi.OCIFulfillReservationSingleOutputRepresentation details; + global String errorCode; + global String message; + global OCIFulfillReservationErrorOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIFulfillReservationInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIFulfillReservationInputRepresentation.cls new file mode 100644 index 0000000..0428d4e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIFulfillReservationInputRepresentation.cls @@ -0,0 +1,9 @@ +global class OCIFulfillReservationInputRepresentation { + global List fulfillmentRecords; + global OCIFulfillReservationInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIFulfillReservationOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIFulfillReservationOutputRepresentation.cls new file mode 100644 index 0000000..93a54bc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIFulfillReservationOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class OCIFulfillReservationOutputRepresentation { + global List errors; + global Boolean success; + global OCIFulfillReservationOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIFulfillReservationSingleInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIFulfillReservationSingleInputRepresentation.cls new file mode 100644 index 0000000..385dac7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIFulfillReservationSingleInputRepresentation.cls @@ -0,0 +1,13 @@ +global class OCIFulfillReservationSingleInputRepresentation { + global String actionRequestId; + global String externalRefId; + global String locationIdentifier; + global Double quantity; + global String stockKeepingUnit; + global OCIFulfillReservationSingleInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIFulfillReservationSingleOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIFulfillReservationSingleOutputRepresentation.cls new file mode 100644 index 0000000..b8ed161 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIFulfillReservationSingleOutputRepresentation.cls @@ -0,0 +1,14 @@ +global class OCIFulfillReservationSingleOutputRepresentation { + global String actionRequestId; + global String externalRefId; + global String locationIdentifier; + global Double quantity; + global String stockKeepingUnit; + global OCIFulfillReservationSingleOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIFutureInventoryOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIFutureInventoryOutputRepresentation.cls new file mode 100644 index 0000000..5877bc8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIFutureInventoryOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class OCIFutureInventoryOutputRepresentation { + global Datetime expectedDate; + global Double quantity; + global OCIFutureInventoryOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIGetInventoryAvailabilityInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIGetInventoryAvailabilityInputRepresentation.cls new file mode 100644 index 0000000..ef9a6ea --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIGetInventoryAvailabilityInputRepresentation.cls @@ -0,0 +1,14 @@ +global class OCIGetInventoryAvailabilityInputRepresentation { + global String locationGroupIdentifier; + global List locationGroupIdentifiers; + global List locationIdentifiers; + global String stockKeepingUnit; + global List stockKeepingUnits; + global Boolean useCache; + global OCIGetInventoryAvailabilityInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIGetInventoryAvailabilityOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIGetInventoryAvailabilityOutputRepresentation.cls new file mode 100644 index 0000000..8d3ad89 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIGetInventoryAvailabilityOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class OCIGetInventoryAvailabilityOutputRepresentation { + global List locationGroups; + global List locations; + global OCIGetInventoryAvailabilityOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIInventoryRecordOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIInventoryRecordOutputRepresentation.cls new file mode 100644 index 0000000..1d76781 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIInventoryRecordOutputRepresentation.cls @@ -0,0 +1,17 @@ +global class OCIInventoryRecordOutputRepresentation { + global Double availableToFulfill; + global Double availableToOrder; + global Datetime effectiveDate; + global List futures; + global Double onHand; + global Double reserved; + global Double safetyStockCount; + global String stockKeepingUnit; + global OCIInventoryRecordOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCILocationAvailabilityOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCILocationAvailabilityOutputRepresentation.cls new file mode 100644 index 0000000..ad6b9b4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCILocationAvailabilityOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class OCILocationAvailabilityOutputRepresentation { + global List inventoryRecords; + global String locationIdentifier; + global OCILocationAvailabilityOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCILocationGroupAvailabilityOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCILocationGroupAvailabilityOutputRepresentation.cls new file mode 100644 index 0000000..5d923ea --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCILocationGroupAvailabilityOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class OCILocationGroupAvailabilityOutputRepresentation { + global List inventoryRecords; + global String locationGroupIdentifier; + global OCILocationGroupAvailabilityOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIPublishLocationStructureOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIPublishLocationStructureOutputRepresentation.cls new file mode 100644 index 0000000..5cbc7cd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIPublishLocationStructureOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class OCIPublishLocationStructureOutputRepresentation { + global String uploadId; + global OCIPublishLocationStructureOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIPublishLocationStructureStatusOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIPublishLocationStructureStatusOutputRepresentation.cls new file mode 100644 index 0000000..9b6028f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIPublishLocationStructureStatusOutputRepresentation.cls @@ -0,0 +1,18 @@ +global class OCIPublishLocationStructureStatusOutputRepresentation { + global String endTimeUTC; + global Integer recordsProcessedCount; + global Integer recordsReadCount; + global Integer recordsSkippedCount; + global String startTimeUTC; + global String status; + global String uploadId; + global List validationErrors; + global String validationStatus; + global OCIPublishLocationStructureStatusOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIReleaseReservationErrorOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIReleaseReservationErrorOutputRepresentation.cls new file mode 100644 index 0000000..0d2a14b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIReleaseReservationErrorOutputRepresentation.cls @@ -0,0 +1,12 @@ +global class OCIReleaseReservationErrorOutputRepresentation { + global ConnectApi.OCIReleaseReservationSingleOutputRepresentation details; + global String errorCode; + global String message; + global OCIReleaseReservationErrorOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIReleaseReservationInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIReleaseReservationInputRepresentation.cls new file mode 100644 index 0000000..7c73f7f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIReleaseReservationInputRepresentation.cls @@ -0,0 +1,9 @@ +global class OCIReleaseReservationInputRepresentation { + global List releaseRecords; + global OCIReleaseReservationInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIReleaseReservationOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIReleaseReservationOutputRepresentation.cls new file mode 100644 index 0000000..4b2b24b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIReleaseReservationOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class OCIReleaseReservationOutputRepresentation { + global List errors; + global Boolean success; + global OCIReleaseReservationOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIReleaseReservationSingleInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIReleaseReservationSingleInputRepresentation.cls new file mode 100644 index 0000000..01fdb59 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIReleaseReservationSingleInputRepresentation.cls @@ -0,0 +1,14 @@ +global class OCIReleaseReservationSingleInputRepresentation { + global String actionRequestId; + global String externalRefId; + global String locationGroupIdentifier; + global String locationIdentifier; + global Double quantity; + global String stockKeepingUnit; + global OCIReleaseReservationSingleInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIReleaseReservationSingleOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIReleaseReservationSingleOutputRepresentation.cls new file mode 100644 index 0000000..5f219d8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIReleaseReservationSingleOutputRepresentation.cls @@ -0,0 +1,15 @@ +global class OCIReleaseReservationSingleOutputRepresentation { + global String actionRequestId; + global String externalRefId; + global String locationGroupIdentifier; + global String locationIdentifier; + global Double quantity; + global String stockKeepingUnit; + global OCIReleaseReservationSingleOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCITransferReservationErrorOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCITransferReservationErrorOutputRepresentation.cls new file mode 100644 index 0000000..c1e4f58 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCITransferReservationErrorOutputRepresentation.cls @@ -0,0 +1,12 @@ +global class OCITransferReservationErrorOutputRepresentation { + global ConnectApi.OCITransferReservationSingleOutputRepresentation details; + global String errorCode; + global String message; + global OCITransferReservationErrorOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCITransferReservationInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCITransferReservationInputRepresentation.cls new file mode 100644 index 0000000..6aeb390 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCITransferReservationInputRepresentation.cls @@ -0,0 +1,10 @@ +global class OCITransferReservationInputRepresentation { + global String allOrNothingTransferId; + global List transferRecords; + global OCITransferReservationInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCITransferReservationOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCITransferReservationOutputRepresentation.cls new file mode 100644 index 0000000..d64d16a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCITransferReservationOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class OCITransferReservationOutputRepresentation { + global List errors; + global Boolean success; + global OCITransferReservationOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCITransferReservationSingleInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCITransferReservationSingleInputRepresentation.cls new file mode 100644 index 0000000..0f694ee --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCITransferReservationSingleInputRepresentation.cls @@ -0,0 +1,17 @@ +global class OCITransferReservationSingleInputRepresentation { + global String actionRequestId; + global String externalRefId; + global String fromLocationGroupIdentifier; + global String fromLocationIdentifier; + global Boolean ignoreAvailabilityCheck; + global Double quantity; + global String stockKeepingUnit; + global String toLocationGroupIdentifier; + global String toLocationIdentifier; + global OCITransferReservationSingleInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCITransferReservationSingleOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCITransferReservationSingleOutputRepresentation.cls new file mode 100644 index 0000000..c6d3335 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCITransferReservationSingleOutputRepresentation.cls @@ -0,0 +1,18 @@ +global class OCITransferReservationSingleOutputRepresentation { + global String actionRequestId; + global String externalRefId; + global String fromLocationGroupIdentifier; + global String fromLocationIdentifier; + global Boolean ignoreAvailabilityCheck; + global Double quantity; + global String stockKeepingUnit; + global String toLocationGroupIdentifier; + global String toLocationIdentifier; + global OCITransferReservationSingleOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIUploadInventoryAvailabilityOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIUploadInventoryAvailabilityOutputRepresentation.cls new file mode 100644 index 0000000..49a7fd2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIUploadInventoryAvailabilityOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class OCIUploadInventoryAvailabilityOutputRepresentation { + global String uploadId; + global OCIUploadInventoryAvailabilityOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIUploadInventoryAvailabilityStatusOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIUploadInventoryAvailabilityStatusOutputRepresentation.cls new file mode 100644 index 0000000..dafacb9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OCIUploadInventoryAvailabilityStatusOutputRepresentation.cls @@ -0,0 +1,18 @@ +global class OCIUploadInventoryAvailabilityStatusOutputRepresentation { + global String endTimeUTC; + global Integer recordsProcessedCount; + global Integer recordsReadCount; + global Integer recordsSkippedCount; + global String startTimeUTC; + global String status; + global String uploadId; + global List validationErrors; + global String validationStatus; + global OCIUploadInventoryAvailabilityStatusOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OauthProviderInfo.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OauthProviderInfo.cls new file mode 100644 index 0000000..457ce8f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OauthProviderInfo.cls @@ -0,0 +1,11 @@ +global class OauthProviderInfo { + global String authorizationUrl; + global String name; + global OauthProviderInfo() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OcrResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OcrResult.cls new file mode 100644 index 0000000..21eb85e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OcrResult.cls @@ -0,0 +1,14 @@ +global class OcrResult { + global String keyEntity; + global String keyText; + global ConnectApi.OcrResultNormalizedText normalizedText; + global Double probability; + global String value; + global OcrResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OcrResultCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OcrResultCollection.cls new file mode 100644 index 0000000..e3789e8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OcrResultCollection.cls @@ -0,0 +1,10 @@ +global class OcrResultCollection { + global List ocrResultList; + global OcrResultCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OcrResultNormalizedText.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OcrResultNormalizedText.cls new file mode 100644 index 0000000..b5d9b61 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OcrResultNormalizedText.cls @@ -0,0 +1,14 @@ +global class OcrResultNormalizedText { + global String city; + global String country; + global String state; + global String street; + global String zipCode; + global OcrResultNormalizedText() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OmnichannelInventoryService.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OmnichannelInventoryService.cls new file mode 100644 index 0000000..961af85 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OmnichannelInventoryService.cls @@ -0,0 +1,3 @@ +global class OmnichannelInventoryService { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OperationType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OperationType.cls new file mode 100644 index 0000000..6d28811 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OperationType.cls @@ -0,0 +1,4 @@ +global enum OperationType { +ADD, +REMOVE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Orchestration.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Orchestration.cls new file mode 100644 index 0000000..6ba3361 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Orchestration.cls @@ -0,0 +1,5 @@ +global class Orchestration { + global Object clone() { } + global static ConnectApi.OrchestrationInstanceCollection getOrchestrationInstanceCollection(String relatedRecordId) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrchestrationInstance.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrchestrationInstance.cls new file mode 100644 index 0000000..ab11033 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrchestrationInstance.cls @@ -0,0 +1,16 @@ +global class OrchestrationInstance { + global String flowDefinitionDeveloperName; + global String flowDefinitionId; + global String flowDefinitionName; + global String id; + global String interviewId; + global List stageInstances; + global ConnectApi.OrchestrationInstanceStatus status; + global OrchestrationInstance() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrchestrationInstanceCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrchestrationInstanceCollection.cls new file mode 100644 index 0000000..2128d63 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrchestrationInstanceCollection.cls @@ -0,0 +1,10 @@ +global class OrchestrationInstanceCollection { + global List instances; + global OrchestrationInstanceCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrchestrationInstanceStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrchestrationInstanceStatus.cls new file mode 100644 index 0000000..06dc9f3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrchestrationInstanceStatus.cls @@ -0,0 +1,5 @@ +global enum OrchestrationInstanceStatus { +COMPLETED, +INPROGRESS, +NOTSTARTED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrchestrationStageInstance.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrchestrationStageInstance.cls new file mode 100644 index 0000000..8f32d7a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrchestrationStageInstance.cls @@ -0,0 +1,14 @@ +global class OrchestrationStageInstance { + global String id; + global String label; + global String name; + global ConnectApi.OrchestrationInstanceStatus status; + global List stepInstances; + global OrchestrationStageInstance() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrchestrationStepInstance.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrchestrationStepInstance.cls new file mode 100644 index 0000000..2d6d7e7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrchestrationStepInstance.cls @@ -0,0 +1,15 @@ +global class OrchestrationStepInstance { + global String id; + global String label; + global String name; + global ConnectApi.OrchestrationInstanceStatus status; + global ConnectApi.OrchestrationStepType stepType; + global List workItems; + global OrchestrationStepInstance() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrchestrationStepType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrchestrationStepType.cls new file mode 100644 index 0000000..abf0ab8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrchestrationStepType.cls @@ -0,0 +1,8 @@ +global enum OrchestrationStepType { +ASYNCHRONOUSBACKGROUNDSTEP, +BACKGROUNDSTEP, +INTERACTIVESTEP, +MANAGEDCONTENTROLEINTERACTIVESTEP, +MANAGEDCONTENTVARIANTSETLOCKBACKGROUNDSTEP, +MANAGEDCONTENTVARIANTSETREADYBACKGROUNDSTEP +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrchestrationWorkItem.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrchestrationWorkItem.cls new file mode 100644 index 0000000..9e73dd0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrchestrationWorkItem.cls @@ -0,0 +1,18 @@ +global class OrchestrationWorkItem { + global String assigneeId; + global String description; + global String id; + global String label; + global String relatedRecordId; + global String screenFlowDeveloperName; + global String screenFlowId; + global String screenFlowInputs; + global ConnectApi.OrchestrationWorkItemStatus status; + global OrchestrationWorkItem() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrchestrationWorkItemStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrchestrationWorkItemStatus.cls new file mode 100644 index 0000000..d32f54f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrchestrationWorkItemStatus.cls @@ -0,0 +1,4 @@ +global enum OrchestrationWorkItemStatus { +ASSIGNED, +COMPLETED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderDeliveryGroupSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderDeliveryGroupSummary.cls new file mode 100644 index 0000000..8eb21ed --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderDeliveryGroupSummary.cls @@ -0,0 +1,10 @@ +global class OrderDeliveryGroupSummary { + global Map fields; + global OrderDeliveryGroupSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderDeliveryGroupSummaryCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderDeliveryGroupSummaryCollection.cls new file mode 100644 index 0000000..7840f03 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderDeliveryGroupSummaryCollection.cls @@ -0,0 +1,16 @@ +global class OrderDeliveryGroupSummaryCollection { + global String currentPageToken; + global String currentPageUrl; + global String nextPageToken; + global String nextPageUrl; + global List orderDeliveryGroups; + global String previousPageToken; + global String previousPageUrl; + global OrderDeliveryGroupSummaryCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderDeliveryGroupSummaryLookupOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderDeliveryGroupSummaryLookupOutput.cls new file mode 100644 index 0000000..ba6b30a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderDeliveryGroupSummaryLookupOutput.cls @@ -0,0 +1,14 @@ +global class OrderDeliveryGroupSummaryLookupOutput { + global String currencyIsoCode; + global ConnectApi.OrderDeliveryMethodLookupOutput deliveryMethod; + global Map fields; + global String id; + global List lineItems; + global OrderDeliveryGroupSummaryLookupOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderDeliveryGroupSummarySort.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderDeliveryGroupSummarySort.cls new file mode 100644 index 0000000..703d49d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderDeliveryGroupSummarySort.cls @@ -0,0 +1,4 @@ +global enum OrderDeliveryGroupSummarySort { +IDASC, +IDDESC +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderDeliveryMethodLookupOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderDeliveryMethodLookupOutput.cls new file mode 100644 index 0000000..cd3e42f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderDeliveryMethodLookupOutput.cls @@ -0,0 +1,11 @@ +global class OrderDeliveryMethodLookupOutput { + global Map fields; + global String id; + global OrderDeliveryMethodLookupOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummary.cls new file mode 100644 index 0000000..b2f90e7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummary.cls @@ -0,0 +1,15 @@ +global class OrderItemSummary { + global ConnectApi.OrderItemSummaryAdjustmentAggregates adjustmentAggregates; + global String currencyIsoCode; + global Map fields; + global String orderItemSummaryId; + global String orderSummaryId; + global ConnectApi.OrderItemSummaryProduct product; + global OrderItemSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryAdjustmentAggregates.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryAdjustmentAggregates.cls new file mode 100644 index 0000000..9aa369e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryAdjustmentAggregates.cls @@ -0,0 +1,13 @@ +global class OrderItemSummaryAdjustmentAggregates { + global Boolean available; + global ConnectApi.OrderSummaryAdjustmentAggregatesStatus status; + global String totalLinePromotionAmount; + global String totalPromotionDistAmount; + global OrderItemSummaryAdjustmentAggregates() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryAdjustmentCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryAdjustmentCollection.cls new file mode 100644 index 0000000..a2cec8c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryAdjustmentCollection.cls @@ -0,0 +1,10 @@ +global class OrderItemSummaryAdjustmentCollection { + global Map orderItemSummaries; + global OrderItemSummaryAdjustmentCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryAdjustmentCollectionInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryAdjustmentCollectionInput.cls new file mode 100644 index 0000000..1321c1c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryAdjustmentCollectionInput.cls @@ -0,0 +1,9 @@ +global class OrderItemSummaryAdjustmentCollectionInput { + global List orderItemSummaries; + global OrderItemSummaryAdjustmentCollectionInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryAdjustmentInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryAdjustmentInput.cls new file mode 100644 index 0000000..a97bfc5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryAdjustmentInput.cls @@ -0,0 +1,9 @@ +global class OrderItemSummaryAdjustmentInput { + global String orderItemSummaryId; + global OrderItemSummaryAdjustmentInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryAdjustmentList.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryAdjustmentList.cls new file mode 100644 index 0000000..0252b24 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryAdjustmentList.cls @@ -0,0 +1,10 @@ +global class OrderItemSummaryAdjustmentList { + global List adjustments; + global OrderItemSummaryAdjustmentList() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryCollection.cls new file mode 100644 index 0000000..ab11102 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryCollection.cls @@ -0,0 +1,16 @@ +global class OrderItemSummaryCollection { + global String currentPageToken; + global String currentPageUrl; + global List items; + global String nextPageToken; + global String nextPageUrl; + global String previousPageToken; + global String previousPageUrl; + global OrderItemSummaryCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryInputRepresentation.cls new file mode 100644 index 0000000..8a4c9cf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryInputRepresentation.cls @@ -0,0 +1,10 @@ +global class OrderItemSummaryInputRepresentation { + global String orderItemSummaryId; + global Double quantity; + global OrderItemSummaryInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryLookupOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryLookupOutput.cls new file mode 100644 index 0000000..1a9f798 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryLookupOutput.cls @@ -0,0 +1,15 @@ +global class OrderItemSummaryLookupOutput { + global ConnectApi.OrderItemSummaryAdjustmentAggregates adjustmentAggregates; + global List adjustments; + global String currencyIsoCode; + global Map fields; + global String id; + global ConnectApi.OrderSummaryProductLookupOutput product; + global OrderItemSummaryLookupOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryOutputRepresentation.cls new file mode 100644 index 0000000..02d71ea --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryOutputRepresentation.cls @@ -0,0 +1,12 @@ +global class OrderItemSummaryOutputRepresentation { + global List errors; + global String orderItemSummaryId; + global Double quantity; + global OrderItemSummaryOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryProduct.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryProduct.cls new file mode 100644 index 0000000..9fb6d66 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummaryProduct.cls @@ -0,0 +1,16 @@ +global class OrderItemSummaryProduct { + global Boolean canViewProduct; + global String errorCode; + global String errorMessage; + global Map fields; + global ConnectApi.ProductMedia media; + global ConnectApi.ProductAttributeSetSummary productAttributes; + global String productId; + global OrderItemSummaryProduct() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummarySort.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummarySort.cls new file mode 100644 index 0000000..89a9f6d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderItemSummarySort.cls @@ -0,0 +1,4 @@ +global enum OrderItemSummarySort { +IDASC, +IDDESC +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderPaymentSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderPaymentSummary.cls new file mode 100644 index 0000000..2166636 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderPaymentSummary.cls @@ -0,0 +1,3 @@ +global class OrderPaymentSummary { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderQuantitiesOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderQuantitiesOutputRepresentation.cls new file mode 100644 index 0000000..e3fd4ad --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderQuantitiesOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class OrderQuantitiesOutputRepresentation { + global String externalOrderId; + global List itemQuantities; + global OrderQuantitiesOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderShipment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderShipment.cls new file mode 100644 index 0000000..8ed29d6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderShipment.cls @@ -0,0 +1,15 @@ +global class OrderShipment { + global Datetime expectedDeliveryDate; + global Map fields; + global String orderSummaryId; + global String shipmentId; + global String shipmentNumber; + global String status; + global OrderShipment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderShipmentCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderShipmentCollection.cls new file mode 100644 index 0000000..17ff51c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderShipmentCollection.cls @@ -0,0 +1,18 @@ +global class OrderShipmentCollection { + global Integer count; + global String currentPageToken; + global String currentPageUrl; + global String nextPageToken; + global String nextPageUrl; + global String previousPageToken; + global String previousPageUrl; + global List shipments; + global ConnectApi.OrderShipmentSort sortOrder; + global OrderShipmentCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderShipmentItem.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderShipmentItem.cls new file mode 100644 index 0000000..5ed2a09 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderShipmentItem.cls @@ -0,0 +1,16 @@ +global class OrderShipmentItem { + global Map fields; + global String orderItemSummaryId; + global ConnectApi.OrderItemSummaryProduct product; + global String productId; + global Double quantity; + global String shipmentId; + global String shipmentItemId; + global OrderShipmentItem() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderShipmentItemCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderShipmentItemCollection.cls new file mode 100644 index 0000000..6cddf5b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderShipmentItemCollection.cls @@ -0,0 +1,18 @@ +global class OrderShipmentItemCollection { + global Integer count; + global String currentPageToken; + global String currentPageUrl; + global List items; + global String nextPageToken; + global String nextPageUrl; + global String previousPageToken; + global String previousPageUrl; + global ConnectApi.OrderShipmentItemSort sortOrder; + global OrderShipmentItemCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderShipmentItemSort.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderShipmentItemSort.cls new file mode 100644 index 0000000..c573a90 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderShipmentItemSort.cls @@ -0,0 +1,4 @@ +global enum OrderShipmentItemSort { +IDASC, +IDDESC +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderShipmentSort.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderShipmentSort.cls new file mode 100644 index 0000000..8abafb8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderShipmentSort.cls @@ -0,0 +1,6 @@ +global enum OrderShipmentSort { +EXPECTEDDELIVERYDATEASC, +EXPECTEDDELIVERYDATEDESC, +SHIPMENTNUMBERASC, +SHIPMENTNUMBERDESC +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummary.cls new file mode 100644 index 0000000..029f768 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummary.cls @@ -0,0 +1,3 @@ +global class OrderSummary { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryAdjustment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryAdjustment.cls new file mode 100644 index 0000000..8b566c6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryAdjustment.cls @@ -0,0 +1,15 @@ +global class OrderSummaryAdjustment { + global String amount; + global String basisReferenceDisplayName; + global String currencyIsoCode; + global String displayName; + global ConnectApi.OrderSummaryAdjustmentTargetType targetType; + global String type; + global OrderSummaryAdjustment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryAdjustmentAggregates.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryAdjustmentAggregates.cls new file mode 100644 index 0000000..c000d65 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryAdjustmentAggregates.cls @@ -0,0 +1,17 @@ +global class OrderSummaryAdjustmentAggregates { + global Boolean available; + global ConnectApi.OrderSummaryAdjustmentAggregatesStatus status; + global String totalDeliveryPromotionDistAmount; + global String totalDeliveryPromotionLineAmount; + global String totalDeliveryPromotionTotalAmount; + global String totalProductPromotionDistAmount; + global String totalProductPromotionLineAmount; + global String totalProductPromotionTotalAmount; + global OrderSummaryAdjustmentAggregates() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryAdjustmentAggregatesAsyncInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryAdjustmentAggregatesAsyncInput.cls new file mode 100644 index 0000000..52f1ce9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryAdjustmentAggregatesAsyncInput.cls @@ -0,0 +1,9 @@ +global class OrderSummaryAdjustmentAggregatesAsyncInput { + global List orderSummaryIds; + global OrderSummaryAdjustmentAggregatesAsyncInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryAdjustmentAggregatesAsyncOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryAdjustmentAggregatesAsyncOutput.cls new file mode 100644 index 0000000..8884ad7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryAdjustmentAggregatesAsyncOutput.cls @@ -0,0 +1,10 @@ +global class OrderSummaryAdjustmentAggregatesAsyncOutput { + global String statusURL; + global OrderSummaryAdjustmentAggregatesAsyncOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryAdjustmentAggregatesStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryAdjustmentAggregatesStatus.cls new file mode 100644 index 0000000..4c25280 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryAdjustmentAggregatesStatus.cls @@ -0,0 +1,6 @@ +global enum OrderSummaryAdjustmentAggregatesStatus { +FAILED, +INPROGRESS, +NOTINITIATED, +SUBMITTED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryAdjustmentCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryAdjustmentCollection.cls new file mode 100644 index 0000000..a25c1d8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryAdjustmentCollection.cls @@ -0,0 +1,10 @@ +global class OrderSummaryAdjustmentCollection { + global List adjustments; + global OrderSummaryAdjustmentCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryAdjustmentTargetType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryAdjustmentTargetType.cls new file mode 100644 index 0000000..a6e8705 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryAdjustmentTargetType.cls @@ -0,0 +1,4 @@ +global enum OrderSummaryAdjustmentTargetType { +HEADER, +SPLITLINE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryCollectionRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryCollectionRepresentation.cls new file mode 100644 index 0000000..0ab76a0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryCollectionRepresentation.cls @@ -0,0 +1,18 @@ +global class OrderSummaryCollectionRepresentation { + global Integer count; + global String currentPageToken; + global String currentPageUrl; + global String nextPageToken; + global String nextPageUrl; + global List orderSummaries; + global String previousPageToken; + global String previousPageUrl; + global ConnectApi.OrderSummarySortOrder sortOrder; + global OrderSummaryCollectionRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryCreation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryCreation.cls new file mode 100644 index 0000000..daa6726 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryCreation.cls @@ -0,0 +1,5 @@ +global class OrderSummaryCreation { + global Object clone() { } + global static ConnectApi.OrderSummaryOutputRepresentation createOrderSummary(ConnectApi.OrderSummaryInputRepresentation orderSummaryInput) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryInputRepresentation.cls new file mode 100644 index 0000000..7022fc7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryInputRepresentation.cls @@ -0,0 +1,15 @@ +global class OrderSummaryInputRepresentation { + global String businessModel; + global String externalReferenceIdentifier; + global String name; + global String orderId; + global String orderLifeCycleType; + global String sourceProcess; + global String status; + global OrderSummaryInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryLookupInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryLookupInput.cls new file mode 100644 index 0000000..3ef8caf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryLookupInput.cls @@ -0,0 +1,10 @@ +global class OrderSummaryLookupInput { + global String orderSummaryIdOrRefNumber; + global ConnectApi.OrderSummaryVerificationInput verification; + global OrderSummaryLookupInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryLookupOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryLookupOutput.cls new file mode 100644 index 0000000..eb79955 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryLookupOutput.cls @@ -0,0 +1,16 @@ +global class OrderSummaryLookupOutput { + global ConnectApi.OrderSummaryAdjustmentAggregates adjustmentAggregates; + global String currencyIsoCode; + global List deliveryGroups; + global Map fields; + global String id; + global String orderNumber; + global String status; + global OrderSummaryLookupOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryOutputRepresentation.cls new file mode 100644 index 0000000..98afdc7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class OrderSummaryOutputRepresentation { + global String orderSummaryId; + global OrderSummaryOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryProductAttribute.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryProductAttribute.cls new file mode 100644 index 0000000..a5eca67 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryProductAttribute.cls @@ -0,0 +1,12 @@ +global class OrderSummaryProductAttribute { + global String label; + global Integer sequence; + global String value; + global OrderSummaryProductAttribute() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryProductLookupOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryProductLookupOutput.cls new file mode 100644 index 0000000..1d199cb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryProductLookupOutput.cls @@ -0,0 +1,16 @@ +global class OrderSummaryProductLookupOutput { + global Boolean canViewProduct; + global String errorCode; + global String errorMessage; + global Map fields; + global String id; + global ConnectApi.ProductMedia media; + global Map variationAttributes; + global OrderSummaryProductLookupOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryRepresentation.cls new file mode 100644 index 0000000..0de3d8e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryRepresentation.cls @@ -0,0 +1,19 @@ +global class OrderSummaryRepresentation { + global ConnectApi.OrderSummaryAdjustmentAggregates adjustmentAggregates; + global Datetime createdDate; + global String currencyIsoCode; + global Map fields; + global String orderNumber; + global String orderSummaryId; + global Datetime orderedDate; + global String ownerId; + global String status; + global String totalAmount; + global OrderSummaryRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummarySortOrder.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummarySortOrder.cls new file mode 100644 index 0000000..7a39c87 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummarySortOrder.cls @@ -0,0 +1,6 @@ +global enum OrderSummarySortOrder { +CREATEDDATEASC, +CREATEDDATEDESC, +ORDEREDDATEASC, +ORDEREDDATEDESC +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryVerificationInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryVerificationInput.cls new file mode 100644 index 0000000..0ee201e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderSummaryVerificationInput.cls @@ -0,0 +1,11 @@ +global class OrderSummaryVerificationInput { + global String email; + global String lastName; + global String phoneNumber; + global OrderSummaryVerificationInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderToCartFailedProduct.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderToCartFailedProduct.cls new file mode 100644 index 0000000..20a3675 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderToCartFailedProduct.cls @@ -0,0 +1,14 @@ +global class OrderToCartFailedProduct { + global String errorCode; + global String errorMessage; + global String productId; + global String productName; + global String productSKU; + global OrderToCartFailedProduct() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderToCartInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderToCartInput.cls new file mode 100644 index 0000000..1a84275 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderToCartInput.cls @@ -0,0 +1,9 @@ +global class OrderToCartInput { + global String cartStateOrId; + global OrderToCartInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderToCartResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderToCartResult.cls new file mode 100644 index 0000000..f75436d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrderToCartResult.cls @@ -0,0 +1,13 @@ +global class OrderToCartResult { + global String cartId; + global Integer totalFailedProductCount; + global Integer totalSucceededProductCount; + global List unaddedProducts; + global OrderToCartResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Organization.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Organization.cls new file mode 100644 index 0000000..f27cce0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Organization.cls @@ -0,0 +1,5 @@ +global class Organization { + global Object clone() { } + global static ConnectApi.OrganizationSettings getSettings() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrganizationSettings.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrganizationSettings.cls new file mode 100644 index 0000000..f82ed44 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OrganizationSettings.cls @@ -0,0 +1,15 @@ +global class OrganizationSettings { + global Integer accessTimeout; + global ConnectApi.Features features; + global List maintenanceInfo; + global String name; + global String orgId; + global ConnectApi.UserSettings userSettings; + global OrganizationSettings() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OriginCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OriginCapability.cls new file mode 100644 index 0000000..81cad85 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OriginCapability.cls @@ -0,0 +1,11 @@ +global class OriginCapability { + global ConnectApi.UserSummary actor; + global ConnectApi.Reference originRecord; + global OriginCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OriginalDenialMedicalDirectorOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OriginalDenialMedicalDirectorOutput.cls new file mode 100644 index 0000000..7be8835 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OriginalDenialMedicalDirectorOutput.cls @@ -0,0 +1,10 @@ +global class OriginalDenialMedicalDirectorOutput { + global String username; + global OriginalDenialMedicalDirectorOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OutOfOffice.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OutOfOffice.cls new file mode 100644 index 0000000..ddcc564 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/OutOfOffice.cls @@ -0,0 +1,10 @@ +global class OutOfOffice { + global String message; + global OutOfOffice() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PardotBusinessUnitContext.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PardotBusinessUnitContext.cls new file mode 100644 index 0000000..3df89f4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PardotBusinessUnitContext.cls @@ -0,0 +1,3 @@ +global class PardotBusinessUnitContext { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PardotBusinessUnitContextItem.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PardotBusinessUnitContextItem.cls new file mode 100644 index 0000000..7799cdd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PardotBusinessUnitContextItem.cls @@ -0,0 +1,12 @@ +global class PardotBusinessUnitContextItem { + global String id; + global Boolean isCurrent; + global String name; + global PardotBusinessUnitContextItem() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PardotBusinessUnitContextOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PardotBusinessUnitContextOutput.cls new file mode 100644 index 0000000..2384077 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PardotBusinessUnitContextOutput.cls @@ -0,0 +1,12 @@ +global class PardotBusinessUnitContextOutput { + global List businessUnits; + global Boolean isSuccess; + global Integer totalBusinessUnits; + global PardotBusinessUnitContextOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ParticipantRecentInteractionsResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ParticipantRecentInteractionsResult.cls new file mode 100644 index 0000000..9c09f20 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ParticipantRecentInteractionsResult.cls @@ -0,0 +1,10 @@ +global class ParticipantRecentInteractionsResult { + global List serviceResources; + global ParticipantRecentInteractionsResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PayLoadOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PayLoadOutputRepresentation.cls new file mode 100644 index 0000000..7cf96fe --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PayLoadOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class PayLoadOutputRepresentation { + global String authorNoteId; + global String codeSetBundleId; + global PayLoadOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentAuthAdjustmentResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentAuthAdjustmentResponse.cls new file mode 100644 index 0000000..2027e88 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentAuthAdjustmentResponse.cls @@ -0,0 +1,17 @@ +global class PaymentAuthAdjustmentResponse { + global String accountId; + global Double amount; + global String currencyIsoCode; + global Datetime effectiveDate; + global String id; + global String paymentAuthAdjustmentNumber; + global Datetime requestDate; + global String status; + global PaymentAuthAdjustmentResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentAuthorizationResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentAuthorizationResponse.cls new file mode 100644 index 0000000..78d43c0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentAuthorizationResponse.cls @@ -0,0 +1,18 @@ +global class PaymentAuthorizationResponse { + global String accountId; + global Double amount; + global String currencyIsoCode; + global Datetime effectiveDate; + global Datetime expirationDate; + global String id; + global String paymentAuthorizationNumber; + global Datetime requestDate; + global String status; + global PaymentAuthorizationResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentGroupRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentGroupRequest.cls new file mode 100644 index 0000000..b4c5875 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentGroupRequest.cls @@ -0,0 +1,12 @@ +global class PaymentGroupRequest { + global Boolean createPaymentGroup; + global String currencyIsoCode; + global String id; + global String sourceObjectId; + global PaymentGroupRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentGroupResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentGroupResponse.cls new file mode 100644 index 0000000..89183bb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentGroupResponse.cls @@ -0,0 +1,12 @@ +global class PaymentGroupResponse { + global String currencyIsoCode; + global String id; + global String sourceObjectId; + global PaymentGroupResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentLineApplyRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentLineApplyRequest.cls new file mode 100644 index 0000000..89a5087 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentLineApplyRequest.cls @@ -0,0 +1,13 @@ +global class PaymentLineApplyRequest { + global Double amount; + global String appliedToId; + global String associatedAccountId; + global String comments; + global Datetime effectiveDate; + global PaymentLineApplyRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentLineApplyResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentLineApplyResponse.cls new file mode 100644 index 0000000..fe5ee86 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentLineApplyResponse.cls @@ -0,0 +1,11 @@ +global class PaymentLineApplyResponse { + global Datetime appliedDate; + global String id; + global PaymentLineApplyResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentLineUnapplyRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentLineUnapplyRequest.cls new file mode 100644 index 0000000..f81b63f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentLineUnapplyRequest.cls @@ -0,0 +1,10 @@ +global class PaymentLineUnapplyRequest { + global String comments; + global Datetime effectiveDate; + global PaymentLineUnapplyRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentLineUnapplyResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentLineUnapplyResponse.cls new file mode 100644 index 0000000..d36fc30 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentLineUnapplyResponse.cls @@ -0,0 +1,11 @@ +global class PaymentLineUnapplyResponse { + global String id; + global Datetime unappliedDate; + global PaymentLineUnapplyResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentMethodDetails.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentMethodDetails.cls new file mode 100644 index 0000000..4581e0b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentMethodDetails.cls @@ -0,0 +1,11 @@ +global class PaymentMethodDetails { + global ConnectApi.AlternativePaymentMethodOutput alternativePaymentMethod; + global ConnectApi.CardPaymentMethodOutput cardPaymentMethod; + global PaymentMethodDetails() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentMethodResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentMethodResponse.cls new file mode 100644 index 0000000..ee557da --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentMethodResponse.cls @@ -0,0 +1,13 @@ +global class PaymentMethodResponse { + global String accountId; + global String id; + global ConnectApi.PaymentMethodDetails paymentMethodDetails; + global String status; + global PaymentMethodResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentMethodTokenizationGatewayResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentMethodTokenizationGatewayResponse.cls new file mode 100644 index 0000000..58d1109 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentMethodTokenizationGatewayResponse.cls @@ -0,0 +1,10 @@ +global class PaymentMethodTokenizationGatewayResponse { + global String gatewayToken; + global PaymentMethodTokenizationGatewayResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentMethodTokenizationRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentMethodTokenizationRequest.cls new file mode 100644 index 0000000..698b9d6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentMethodTokenizationRequest.cls @@ -0,0 +1,11 @@ +global class PaymentMethodTokenizationRequest { + global ConnectApi.AddressRequest address; + global ConnectApi.CardPaymentMethodRequest cardPaymentMethod; + global String paymentGatewayId; + global PaymentMethodTokenizationRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentMethodTokenizationResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentMethodTokenizationResponse.cls new file mode 100644 index 0000000..b423f35 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentMethodTokenizationResponse.cls @@ -0,0 +1,13 @@ +global class PaymentMethodTokenizationResponse { + global ConnectApi.ErrorResponse error; + global ConnectApi.PaymentMethodTokenizationGatewayResponse gatewayResponse; + global List paymentGatewayLogs; + global ConnectApi.PaymentMethodResponse paymentMethod; + global PaymentMethodTokenizationResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentResponse.cls new file mode 100644 index 0000000..87eb4a8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentResponse.cls @@ -0,0 +1,17 @@ +global class PaymentResponse { + global String accountId; + global Double amount; + global String currencyIsoCode; + global Datetime effectiveDate; + global String id; + global String paymentNumber; + global Datetime requestDate; + global String status; + global PaymentResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Payments.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Payments.cls new file mode 100644 index 0000000..34fe3cc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Payments.cls @@ -0,0 +1,11 @@ +global class Payments { + global static ConnectApi.AuthorizationResponse authorize(ConnectApi.AuthorizationRequest authorizePayment) { } + global static ConnectApi.CaptureResponse capture(ConnectApi.CaptureRequest AuthCaptureInput, String authorizationId) { } + global Object clone() { } + global static ConnectApi.PostAuthorizationResponse postAuth(ConnectApi.PostAuthRequest postAuthorizePayment) { } + global static ConnectApi.ReferencedRefundResponse refund(ConnectApi.ReferencedRefundRequest ReferencedRefundInput, String paymentId) { } + global static ConnectApi.AuthorizationReversalResponse reverseAuthorization(ConnectApi.AuthorizationReversalRequest AuthReversalInput, String authorizationId) { } + global static ConnectApi.SaleResponse sale(ConnectApi.SaleRequest sale) { } + global static ConnectApi.PaymentMethodTokenizationResponse tokenizePaymentMethod(ConnectApi.PaymentMethodTokenizationRequest tokenizePaymentMethodInput) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentsBilling.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentsBilling.cls new file mode 100644 index 0000000..fb4e3de --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentsBilling.cls @@ -0,0 +1,8 @@ +global class PaymentsBilling { + global static ConnectApi.PaymentLineApplyResponse applyPaymentLine(ConnectApi.PaymentLineApplyRequest PaymentLineApplyInput, String paymentId) { } + global static ConnectApi.RefundLineApplyResponse applyRefundLine(ConnectApi.RefundLineApplyRequest RefundLineApplyInput, String refundId) { } + global Object clone() { } + global static ConnectApi.PaymentLineUnapplyResponse unapplyPaymentLine(ConnectApi.PaymentLineUnapplyRequest PaymentLineUnapplyInput, String paymentId, String paymentLineId) { } + global static ConnectApi.PaymentLineUnapplyResponse unapplyPaymentLine(ConnectApi.PaymentLineUnapplyRequest PaymentLineUnapplyInput, String paymentLineId) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentsIngestFamilyWrapper.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentsIngestFamilyWrapper.cls new file mode 100644 index 0000000..7e65419 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PaymentsIngestFamilyWrapper.cls @@ -0,0 +1,3 @@ +global class PaymentsIngestFamilyWrapper { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PercentRecordField.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PercentRecordField.cls new file mode 100644 index 0000000..ae89fb3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PercentRecordField.cls @@ -0,0 +1,10 @@ +global class PercentRecordField { + global Double value; + global PercentRecordField() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PeriodBoundaryEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PeriodBoundaryEnum.cls new file mode 100644 index 0000000..0c7bd1a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PeriodBoundaryEnum.cls @@ -0,0 +1,6 @@ +global enum PeriodBoundaryEnum { +ALIGNTOCALENDAR, +ANNIVERSARY, +DAYOFPERIOD, +LASTDAYOFPERIOD +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PeriodTypesEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PeriodTypesEnum.cls new file mode 100644 index 0000000..710ac55 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PeriodTypesEnum.cls @@ -0,0 +1,6 @@ +global enum PeriodTypesEnum { +MONTH, +QUARTER, +WEEK, +YEAR +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Personalization.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Personalization.cls new file mode 100644 index 0000000..b21326b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Personalization.cls @@ -0,0 +1,17 @@ +global class Personalization { + global Object clone() { } + global static ConnectApi.Audience createAudience(String communityId, ConnectApi.AudienceInput audience) { } + global static ConnectApi.TargetCollection createTargets(String communityId, ConnectApi.TargetCollectionInput target) { } + global static void deleteAudience(String communityId, String audienceId) { } + global static void deleteTarget(String communityId, String targetId) { } + global static ConnectApi.Audience getAudience(String communityId, String audienceId, Boolean includeAudienceCriteria) { } + global static List getAudienceBatch(String communityId, List audienceIds) { } + global static ConnectApi.AudienceCollection getAudiences(String communityId, String ipAddress, String domain, String userId, ConnectApi.PublishStatus publishStatus, Boolean includeAudienceCriteria, List targetTypes, String recordId) { } + global static ConnectApi.AudienceCollection getAudiences(String communityId, String ipAddress, String domain, String userId, ConnectApi.PublishStatus publishStatus, Boolean includeAudienceCriteria, List targetTypes) { } + global static ConnectApi.Target getTarget(String communityId, String targetId) { } + global static List getTargetBatch(String communityId, List targetIds) { } + global static ConnectApi.TargetCollection getTargets(String communityId, String ipAddress, String domain, String userId, ConnectApi.PublishStatus publishStatus, String recordId, List targetTypes, Boolean includeAudience, Boolean includeAllMatchingTargetsWithinGroup, List groupNames) { } + global static ConnectApi.Audience updateAudience(String communityId, String audienceId, ConnectApi.AudienceInput audience) { } + global static ConnectApi.TargetCollection updateTargets(String communityId, ConnectApi.TargetCollectionUpdateInput target) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PhoneNumber.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PhoneNumber.cls new file mode 100644 index 0000000..4cbee49 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PhoneNumber.cls @@ -0,0 +1,13 @@ +global class PhoneNumber { + global String label; + global String phoneNumber; + global String phoneType; + global String type; + global PhoneNumber() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Photo.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Photo.cls new file mode 100644 index 0000000..1abda89 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Photo.cls @@ -0,0 +1,16 @@ +global class Photo { + global String fullEmailPhotoUrl; + global String largePhotoUrl; + global String mediumPhotoUrl; + global String photoVersionId; + global String smallPhotoUrl; + global String standardEmailPhotoUrl; + global String url; + global Photo() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PhotoInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PhotoInput.cls new file mode 100644 index 0000000..5b468eb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PhotoInput.cls @@ -0,0 +1,13 @@ +global class PhotoInput { + global Integer cropSize; + global Integer cropX; + global Integer cropY; + global String fileId; + global Integer versionNumber; + global PhotoInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PickTicket.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PickTicket.cls new file mode 100644 index 0000000..188942e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PickTicket.cls @@ -0,0 +1,3 @@ +global class PickTicket { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PicklistRecordField.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PicklistRecordField.cls new file mode 100644 index 0000000..285d690 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PicklistRecordField.cls @@ -0,0 +1,9 @@ +global class PicklistRecordField { + global PicklistRecordField() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PinCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PinCapability.cls new file mode 100644 index 0000000..c4369ee --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PinCapability.cls @@ -0,0 +1,11 @@ +global class PinCapability { + global Boolean isPinnableByMe; + global Boolean isPinned; + global PinCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PinCapabilityInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PinCapabilityInput.cls new file mode 100644 index 0000000..b51e9ce --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PinCapabilityInput.cls @@ -0,0 +1,10 @@ +global class PinCapabilityInput { + global String entityId; + global Boolean isPinned; + global PinCapabilityInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PinnedFeedElements.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PinnedFeedElements.cls new file mode 100644 index 0000000..92dfb40 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PinnedFeedElements.cls @@ -0,0 +1,10 @@ +global class PinnedFeedElements { + global List elements; + global PinnedFeedElements() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PlaceQuoteErrorResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PlaceQuoteErrorResponse.cls new file mode 100644 index 0000000..a8705cd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PlaceQuoteErrorResponse.cls @@ -0,0 +1,12 @@ +global class PlaceQuoteErrorResponse { + global String errorCode; + global String message; + global String referenceId; + global PlaceQuoteErrorResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PlatformAction.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PlatformAction.cls new file mode 100644 index 0000000..ea09db2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PlatformAction.cls @@ -0,0 +1,23 @@ +global class PlatformAction { + global String actionUrl; + global String apiName; + global String confirmationMessage; + global ConnectApi.UserSummary executingUser; + global Boolean groupDefault; + global String iconUrl; + global String id; + global String label; + global Datetime modifiedDate; + global ConnectApi.Reference platformActionGroup; + global ConnectApi.PlatformActionStatus status; + global String subtype; + global ConnectApi.PlatformActionType type; + global String url; + global PlatformAction() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PlatformActionGroup.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PlatformActionGroup.cls new file mode 100644 index 0000000..50a9cdb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PlatformActionGroup.cls @@ -0,0 +1,14 @@ +global class PlatformActionGroup { + global ConnectApi.PlatformActionGroupCategory category; + global String id; + global Datetime modifiedDate; + global List platformActions; + global String url; + global PlatformActionGroup() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PlatformActionGroupCategory.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PlatformActionGroupCategory.cls new file mode 100644 index 0000000..0627a92 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PlatformActionGroupCategory.cls @@ -0,0 +1,4 @@ +global enum PlatformActionGroupCategory { +OVERFLOW, +PRIMARY +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PlatformActionStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PlatformActionStatus.cls new file mode 100644 index 0000000..ecc61ec --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PlatformActionStatus.cls @@ -0,0 +1,6 @@ +global enum PlatformActionStatus { +FAILEDSTATUS, +NEWSTATUS, +PENDINGSTATUS, +SUCCESSFULSTATUS +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PlatformActionType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PlatformActionType.cls new file mode 100644 index 0000000..cdf94c6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PlatformActionType.cls @@ -0,0 +1,7 @@ +global enum PlatformActionType { +ACTIONLINK, +CUSTOMBUTTON, +PRODUCTIVITYACTION, +QUICKACTION, +STANDARDBUTTON +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PointsChangeOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PointsChangeOutputRepresentation.cls new file mode 100644 index 0000000..354be89 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PointsChangeOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class PointsChangeOutputRepresentation { + global Double changeInPoints; + global String loyaltyMemberCurrency; + global PointsChangeOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PollAttachmentInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PollAttachmentInput.cls new file mode 100644 index 0000000..7c9fb7f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PollAttachmentInput.cls @@ -0,0 +1,9 @@ +global class PollAttachmentInput { + global List pollChoices; + global PollAttachmentInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PollCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PollCapability.cls new file mode 100644 index 0000000..31b4676 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PollCapability.cls @@ -0,0 +1,12 @@ +global class PollCapability { + global List choices; + global String myChoiceId; + global Integer totalVoteCount; + global PollCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PollCapabilityInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PollCapabilityInput.cls new file mode 100644 index 0000000..37f2335 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PollCapabilityInput.cls @@ -0,0 +1,10 @@ +global class PollCapabilityInput { + global List choices; + global String myChoiceId; + global PollCapabilityInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PostAuthApiPaymentMethodRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PostAuthApiPaymentMethodRequest.cls new file mode 100644 index 0000000..76b9cb2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PostAuthApiPaymentMethodRequest.cls @@ -0,0 +1,10 @@ +global class PostAuthApiPaymentMethodRequest { + global ConnectApi.AlternativePaymentMethod alternativePaymentMethod; + global ConnectApi.CardPaymentMethodRequest cardPaymentMethod; + global PostAuthApiPaymentMethodRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PostAuthGatewayResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PostAuthGatewayResponse.cls new file mode 100644 index 0000000..5305edf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PostAuthGatewayResponse.cls @@ -0,0 +1,11 @@ +global class PostAuthGatewayResponse { + global String gatewayAuthorizationCode; + global ConnectApi.PaymentMethodDetails paymentMethodDetails; + global PostAuthGatewayResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PostAuthRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PostAuthRequest.cls new file mode 100644 index 0000000..814c599 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PostAuthRequest.cls @@ -0,0 +1,16 @@ +global class PostAuthRequest { + global String accountId; + global Double amount; + global String comments; + global String currencyIsoCode; + global Datetime effectiveDate; + global String paymentGatewayId; + global ConnectApi.PaymentGroupRequest paymentGroup; + global ConnectApi.PostAuthApiPaymentMethodRequest paymentMethod; + global PostAuthRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PostAuthorizationResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PostAuthorizationResponse.cls new file mode 100644 index 0000000..f44ceab --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PostAuthorizationResponse.cls @@ -0,0 +1,15 @@ +global class PostAuthorizationResponse { + global ConnectApi.ErrorResponse error; + global ConnectApi.PostAuthGatewayResponse gatewayResponse; + global ConnectApi.PaymentAuthorizationResponse paymentAuthorization; + global List paymentGatewayLogs; + global ConnectApi.PaymentGroupResponse paymentGroup; + global ConnectApi.PaymentMethodResponse paymentMethod; + global PostAuthorizationResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PredictHistoryIntervalEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PredictHistoryIntervalEnum.cls new file mode 100644 index 0000000..0bec568 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PredictHistoryIntervalEnum.cls @@ -0,0 +1,4 @@ +global enum PredictHistoryIntervalEnum { +NONE, +WEEKLY +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Prediction.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Prediction.cls new file mode 100644 index 0000000..07fc9e9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Prediction.cls @@ -0,0 +1,14 @@ +global class Prediction { + global Double historyRefPointScore; + global List insights; + global List missingColumns; + global List outOfBoundsColumns; + global Double score; + global Prediction() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PredictionField.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PredictionField.cls new file mode 100644 index 0000000..c26a685 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PredictionField.cls @@ -0,0 +1,23 @@ +global class PredictionField { + global String definitionState; + global String entity; + global String field; + global List fieldClassificationSettings; + global String globalFilters; + global List includedFields; + global Boolean isActive; + global Boolean isEnabled; + global String modelDefinitionId; + global String modelId; + global String predictionDefinitionId; + global String predictionFieldId; + global String primaryDataDefinitionId; + global String trainingFilters; + global PredictionField() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PredictionObject.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PredictionObject.cls new file mode 100644 index 0000000..f74c1a7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PredictionObject.cls @@ -0,0 +1,13 @@ +global class PredictionObject { + global Map model; + global ConnectApi.Prediction prediction; + global String status; + global List suggestions; + global PredictionObject() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PredictionRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PredictionRequest.cls new file mode 100644 index 0000000..faa895c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PredictionRequest.cls @@ -0,0 +1,33 @@ +global class PredictionRequest { + global Boolean async; + global List columnNames; + global Boolean enableFeaturePersistence; + global Boolean enableInsightPersistence; + global Boolean enableScorePersistence; + global Boolean enableSuggestionPersistence; + global Boolean enrichModelClassification; + global Boolean enrichModelFeatures; + global Boolean enrichPredictionDefinition; + global Map featureColumnMap; + global List featureExtractionParameters; + global String featureExtractorDevName; + global String featureExtractorId; + global String historyReferencePoint; + global String inputType; + global Map insightColumnMap; + global Map insightsSettings; + global String predictionDefinition; + global List rawData; + global List records; + global String scorePersistenceColumn; + global String secondaryRecordIdPersistenceField; + global Map suggestionColumnMap; + global String usecaseDefinition; + global String usecaseDevName; + global PredictionRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PredictionResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PredictionResponse.cls new file mode 100644 index 0000000..9008c0f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PredictionResponse.cls @@ -0,0 +1,31 @@ +global class PredictionResponse { + global String batchDatasource; + global Double classificationThreshold; + global String classificationType; + global String executionModeWarning; + global String featureExtractor; + global String featureExtractorIdentifier; + global String featureExtractorType; + global String featureInputType; + global String inputType; + global Map insightsSettings; + global List modelFeatures; + global String outcomeGoal; + global String predictionDefinition; + global String predictionDefinitionLabel; + global String predictionPersistenceErrorMessage; + global String predictionPlatform; + global String predictionPurpose; + global List predictions; + global List primaryResponseObjRecordIds; + global String requestId; + global List secondaryResponseObjRecordIds; + global ConnectApi.Status status; + global PredictionResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PreviewBenefitSessionInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PreviewBenefitSessionInputRepresentation.cls new file mode 100644 index 0000000..38e7cc8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PreviewBenefitSessionInputRepresentation.cls @@ -0,0 +1,17 @@ +global class PreviewBenefitSessionInputRepresentation { + global String benefitScheduleName; + global Datetime firstSessionEndDate; + global Datetime firstSessionStartDate; + global String mode; + global Integer noOfSessions; + global Integer scheduleDays; + global Datetime scheduleEndDate; + global String scheduleFrequency; + global Integer totalRecurrencesCount; + global PreviewBenefitSessionInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PreviewBenefitSessionsOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PreviewBenefitSessionsOutputRepresentation.cls new file mode 100644 index 0000000..fe6a651 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PreviewBenefitSessionsOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class PreviewBenefitSessionsOutputRepresentation { + global List sessions; + global PreviewBenefitSessionsOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PreviewCancelOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PreviewCancelOutputRepresentation.cls new file mode 100644 index 0000000..988ad28 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PreviewCancelOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class PreviewCancelOutputRepresentation { + global ConnectApi.ChangeItemOutputRepresentation changeBalances; + global String orderSummaryId; + global PreviewCancelOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PreviewReturnOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PreviewReturnOutputRepresentation.cls new file mode 100644 index 0000000..3468f38 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PreviewReturnOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class PreviewReturnOutputRepresentation { + global ConnectApi.ChangeItemOutputRepresentation changeBalances; + global String orderSummaryId; + global PreviewReturnOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PriceAdjustmentSchedule.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PriceAdjustmentSchedule.cls new file mode 100644 index 0000000..eb7f71d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PriceAdjustmentSchedule.cls @@ -0,0 +1,11 @@ +global class PriceAdjustmentSchedule { + global String id; + global List priceAdjustmentTiers; + global PriceAdjustmentSchedule() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PriceAdjustmentTier.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PriceAdjustmentTier.cls new file mode 100644 index 0000000..e2c9dc5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PriceAdjustmentTier.cls @@ -0,0 +1,15 @@ +global class PriceAdjustmentTier { + global ConnectApi.PriceAdjustmentTierType adjustmentType; + global String adjustmentValue; + global String id; + global String lowerBound; + global String tierUnitPrice; + global String upperBound; + global PriceAdjustmentTier() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PriceAdjustmentTierType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PriceAdjustmentTierType.cls new file mode 100644 index 0000000..1df40c4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PriceAdjustmentTierType.cls @@ -0,0 +1,4 @@ +global enum PriceAdjustmentTierType { +AMOUNTBASEDADJUSTMENT, +PERCENTAGEBASEDADJUSTMENT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingAttributeNameValueTupleOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingAttributeNameValueTupleOutputRepresentation.cls new file mode 100644 index 0000000..22a15b2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingAttributeNameValueTupleOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class PricingAttributeNameValueTupleOutputRepresentation { + global String attributeName; + global Object attributeValue; + global PricingAttributeNameValueTupleOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingErrorResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingErrorResponse.cls new file mode 100644 index 0000000..8e3acca --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingErrorResponse.cls @@ -0,0 +1,11 @@ +global class PricingErrorResponse { + global String errorCode; + global String message; + global PricingErrorResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingInput.cls new file mode 100644 index 0000000..5e634f8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingInput.cls @@ -0,0 +1,9 @@ +global class PricingInput { + global List pricingLineItems; + global PricingInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingLineItemInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingLineItemInput.cls new file mode 100644 index 0000000..fa0a46c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingLineItemInput.cls @@ -0,0 +1,9 @@ +global class PricingLineItemInput { + global String productId; + global PricingLineItemInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingListOfWaterFallOutputResponseRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingListOfWaterFallOutputResponseRepresentation.cls new file mode 100644 index 0000000..2224fcd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingListOfWaterFallOutputResponseRepresentation.cls @@ -0,0 +1,11 @@ +global class PricingListOfWaterFallOutputResponseRepresentation { + global String uid; + global List waterFall; + global PricingListOfWaterFallOutputResponseRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingRecipeLookUpTableResponseRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingRecipeLookUpTableResponseRepresentation.cls new file mode 100644 index 0000000..3f0900d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingRecipeLookUpTableResponseRepresentation.cls @@ -0,0 +1,12 @@ +global class PricingRecipeLookUpTableResponseRepresentation { + global String id; + global Boolean isInternal; + global String pricingComponentType; + global PricingRecipeLookUpTableResponseRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingRecipeOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingRecipeOutputRepresentation.cls new file mode 100644 index 0000000..f1d15ff --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingRecipeOutputRepresentation.cls @@ -0,0 +1,19 @@ +global class PricingRecipeOutputRepresentation { + global Boolean active; + global String createdBy; + global Datetime createdOn; + global List decisionTables; + global String id; + global String name; + global String procedureCreatedBy; + global Datetime procedureCreatedOn; + global String procedureId; + global String procedureName; + global PricingRecipeOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingRecipePostOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingRecipePostOutputRepresentation.cls new file mode 100644 index 0000000..a766d02 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingRecipePostOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class PricingRecipePostOutputRepresentation { + global ConnectApi.PricingErrorResponse error; + global Boolean isSuccess; + global PricingRecipePostOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingRecipeResponseRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingRecipeResponseRepresentation.cls new file mode 100644 index 0000000..241f1cc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingRecipeResponseRepresentation.cls @@ -0,0 +1,11 @@ +global class PricingRecipeResponseRepresentation { + global List recipes; + global Boolean success; + global PricingRecipeResponseRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingResourceFamily.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingResourceFamily.cls new file mode 100644 index 0000000..71349d9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingResourceFamily.cls @@ -0,0 +1,3 @@ +global class PricingResourceFamily { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingResult.cls new file mode 100644 index 0000000..d3a259c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingResult.cls @@ -0,0 +1,13 @@ +global class PricingResult { + global String currencyIsoCode; + global ConnectApi.ErrorResponse error; + global List pricingLineItemResults; + global Boolean success; + global PricingResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingResultLineItem.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingResultLineItem.cls new file mode 100644 index 0000000..fa64d8f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingResultLineItem.cls @@ -0,0 +1,15 @@ +global class PricingResultLineItem { + global ConnectApi.ErrorResponse error; + global String listPrice; + global String pricebookEntryId; + global String productId; + global Boolean success; + global String unitPrice; + global PricingResultLineItem() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingTermUnit.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingTermUnit.cls new file mode 100644 index 0000000..a8f70ca --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingTermUnit.cls @@ -0,0 +1,4 @@ +global enum PricingTermUnit { +ANNUAL, +MONTHS +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingWaterFallMetaDataResponseRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingWaterFallMetaDataResponseRepresentation.cls new file mode 100644 index 0000000..4071723 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingWaterFallMetaDataResponseRepresentation.cls @@ -0,0 +1,12 @@ +global class PricingWaterFallMetaDataResponseRepresentation { + global Boolean aggregation; + global Boolean discount; + global String displayName; + global PricingWaterFallMetaDataResponseRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingWaterFallResponseRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingWaterFallResponseRepresentation.cls new file mode 100644 index 0000000..da81e42 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PricingWaterFallResponseRepresentation.cls @@ -0,0 +1,20 @@ +global class PricingWaterFallResponseRepresentation { + global List customOutputs; + global String discount; + global String discountType; + global String element; + global Double listAmount; + global ConnectApi.PricingWaterFallMetaDataResponseRepresentation metaData; + global Double netAmount; + global Integer stepNumber; + global Double totalListAmount; + global Double totalNetAmount; + global String uuid; + global PricingWaterFallResponseRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProcessDefinitionInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProcessDefinitionInput.cls new file mode 100644 index 0000000..6287b7f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProcessDefinitionInput.cls @@ -0,0 +1,10 @@ +global class ProcessDefinitionInput { + global String layoutType; + global List processDetail; + global ProcessDefinitionInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProcessDefinitionOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProcessDefinitionOutputRepresentation.cls new file mode 100644 index 0000000..ab44416 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProcessDefinitionOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class ProcessDefinitionOutputRepresentation { + global String layoutType; + global List processDetail; + global ProcessDefinitionOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProcessDetailInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProcessDetailInput.cls new file mode 100644 index 0000000..2d1f2b5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProcessDetailInput.cls @@ -0,0 +1,24 @@ +global class ProcessDetailInput { + global String apexClassName; + global String dataSourceType; + global String developerName; + global String displayRecordFieldName; + global Boolean isRetryAllowedAfterLimit; + global String label; + global String linkedVerificationProcessDetailName; + global Integer optionalVerifierCount; + global Integer retryLimit; + global String searchObjectName; + global String searchResultFilter; + global String searchResultSortOrder; + global String searchResultUniqueIdField; + global Integer searchSequenceNo; + global String searchType; + global List verificationProcessFieldList; + global ProcessDetailInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProcessDetailOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProcessDetailOutputRepresentation.cls new file mode 100644 index 0000000..93bc8e7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProcessDetailOutputRepresentation.cls @@ -0,0 +1,25 @@ +global class ProcessDetailOutputRepresentation { + global String apexClassName; + global String dataSourceType; + global String developerName; + global String displayRecordFieldName; + global Boolean isRetryAllowedAfterLimit; + global String label; + global String linkedVerificationProcessDetailName; + global Integer optionalVerifierCount; + global Integer retryLimit; + global String searchObjectName; + global String searchResultFilter; + global String searchResultSortOrder; + global String searchResultUniqueIdField; + global Integer searchSequenceNo; + global String searchType; + global ConnectApi.VerificationProcessFieldListOutputRepresentation verificationProcessFieldList; + global ProcessDetailOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProcessRuleConditionFilterCriteriaOperator.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProcessRuleConditionFilterCriteriaOperator.cls new file mode 100644 index 0000000..634b639 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProcessRuleConditionFilterCriteriaOperator.cls @@ -0,0 +1,4 @@ +global enum ProcessRuleConditionFilterCriteriaOperator { +NONQUALIFYING, +QUALIFYING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProcessRuleStepType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProcessRuleStepType.cls new file mode 100644 index 0000000..4c3dc42 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProcessRuleStepType.cls @@ -0,0 +1,6 @@ +global enum ProcessRuleStepType { +ACTION, +CONDITION, +CONDITIONGROUP, +DEFAULTPATH +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductAttributeInfo.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductAttributeInfo.cls new file mode 100644 index 0000000..70977d4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductAttributeInfo.cls @@ -0,0 +1,16 @@ +global class ProductAttributeInfo { + global List allowableValues; + global String apiName; + global List availableValues; + global String fieldEnumOrId; + global String label; + global String objectName; + global Integer sequence; + global ProductAttributeInfo() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductAttributeSelectionInfo.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductAttributeSelectionInfo.cls new file mode 100644 index 0000000..d2f5f34 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductAttributeSelectionInfo.cls @@ -0,0 +1,13 @@ +global class ProductAttributeSelectionInfo { + global String apiName; + global String label; + global Integer sequence; + global String value; + global ProductAttributeSelectionInfo() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductAttributeSet.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductAttributeSet.cls new file mode 100644 index 0000000..dd8ed13 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductAttributeSet.cls @@ -0,0 +1,12 @@ +global class ProductAttributeSet { + global Map attributes; + global String developerName; + global String id; + global ProductAttributeSet() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductAttributeSetInfo.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductAttributeSetInfo.cls new file mode 100644 index 0000000..40f46c5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductAttributeSetInfo.cls @@ -0,0 +1,15 @@ +global class ProductAttributeSetInfo { + global Map attributeInfo; + global String description; + global String developerName; + global String id; + global String masterLabel; + global Integer sequence; + global ProductAttributeSetInfo() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductAttributeSetSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductAttributeSetSummary.cls new file mode 100644 index 0000000..f0ea99e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductAttributeSetSummary.cls @@ -0,0 +1,12 @@ +global class ProductAttributeSetSummary { + global String apiName; + global List attributes; + global String label; + global ProductAttributeSetSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductAttributeSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductAttributeSummary.cls new file mode 100644 index 0000000..cb3c617 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductAttributeSummary.cls @@ -0,0 +1,13 @@ +global class ProductAttributeSummary { + global String apiName; + global String label; + global Integer sequence; + global String value; + global ProductAttributeSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductAttributesToProductEntry.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductAttributesToProductEntry.cls new file mode 100644 index 0000000..649db36 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductAttributesToProductEntry.cls @@ -0,0 +1,12 @@ +global class ProductAttributesToProductEntry { + global String canonicalKey; + global String productId; + global List selectedAttributes; + global ProductAttributesToProductEntry() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductCategoryData.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductCategoryData.cls new file mode 100644 index 0000000..343d6b2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductCategoryData.cls @@ -0,0 +1,12 @@ +global class ProductCategoryData { + global String description; + global String id; + global String name; + global ProductCategoryData() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductCategoryDetail.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductCategoryDetail.cls new file mode 100644 index 0000000..5aa3036 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductCategoryDetail.cls @@ -0,0 +1,14 @@ +global class ProductCategoryDetail { + global ConnectApi.ProductCategoryMedia bannerImage; + global Map fields; + global String id; + global List mediaGroups; + global ConnectApi.ProductCategoryMedia tileImage; + global ProductCategoryDetail() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductCategoryDetailCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductCategoryDetailCollection.cls new file mode 100644 index 0000000..9ba9ba1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductCategoryDetailCollection.cls @@ -0,0 +1,10 @@ +global class ProductCategoryDetailCollection { + global List productCategories; + global ProductCategoryDetailCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductCategoryMedia.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductCategoryMedia.cls new file mode 100644 index 0000000..5aaadf3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductCategoryMedia.cls @@ -0,0 +1,17 @@ +global class ProductCategoryMedia { + global String alternateText; + global String contentVersionId; + global String id; + global ConnectApi.ProductMediaType mediaType; + global Integer sortOrder; + global String thumbnailUrl; + global String title; + global String url; + global ProductCategoryMedia() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductCategoryMediaGroup.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductCategoryMediaGroup.cls new file mode 100644 index 0000000..4894145 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductCategoryMediaGroup.cls @@ -0,0 +1,14 @@ +global class ProductCategoryMediaGroup { + global String developerName; + global String id; + global List mediaItems; + global String name; + global ConnectApi.ProductMediaUsageType usageType; + global ProductCategoryMediaGroup() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductCategoryPath.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductCategoryPath.cls new file mode 100644 index 0000000..d9c1ba1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductCategoryPath.cls @@ -0,0 +1,10 @@ +global class ProductCategoryPath { + global List path; + global ProductCategoryPath() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductCheckAvailabilityInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductCheckAvailabilityInputRepresentation.cls new file mode 100644 index 0000000..fd089e9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductCheckAvailabilityInputRepresentation.cls @@ -0,0 +1,10 @@ +global class ProductCheckAvailabilityInputRepresentation { + global String product2Id; + global Double quantity; + global ProductCheckAvailabilityInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductChild.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductChild.cls new file mode 100644 index 0000000..55aeae4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductChild.cls @@ -0,0 +1,11 @@ +global class ProductChild { + global String defaultQuantity; + global ConnectApi.ProductDetail productInfo; + global ProductChild() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductChildCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductChildCollection.cls new file mode 100644 index 0000000..3b853ce --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductChildCollection.cls @@ -0,0 +1,18 @@ +global class ProductChildCollection { + global Integer count; + global String currentPageToken; + global String currentPageUrl; + global List items; + global String nextPageToken; + global String nextPageUrl; + global String previousPageToken; + global String previousPageUrl; + global Integer total; + global ProductChildCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductClass.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductClass.cls new file mode 100644 index 0000000..9276bf5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductClass.cls @@ -0,0 +1,7 @@ +global enum ProductClass { +BUNDLE, +SET, +SIMPLE, +VARIATION, +VARIATIONPARENT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductDetail.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductDetail.cls new file mode 100644 index 0000000..ebaaacb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductDetail.cls @@ -0,0 +1,22 @@ +global class ProductDetail { + global Map attributeSetInfo; + global ConnectApi.ProductMedia defaultImage; + global ConnectApi.ProductEntitlement entitlement; + global Map fields; + global String id; + global List mediaGroups; + global ConnectApi.ProductCategoryPath primaryProductCategoryPath; + global ConnectApi.ProductClass productClass; + global List productSellingModels; + global ConnectApi.PurchaseQuantityRule purchaseQuantityRule; + global ConnectApi.ProductAttributeSet variationAttributeSet; + global ConnectApi.ProductVariationInfo variationInfo; + global String variationParentId; + global ProductDetail() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductDetailsOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductDetailsOutputRepresentation.cls new file mode 100644 index 0000000..9eaf6da --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductDetailsOutputRepresentation.cls @@ -0,0 +1,21 @@ +global class ProductDetailsOutputRepresentation { + global List attributes; + global String currencyIsoCode; + global String description; + global Map fields; + global List imageGroups; + global Double listPrice; + global String name; + global String productId; + global ConnectApi.ProductQuantityRuleOutputRepresentation productQuantityRule; + global String stockKeepingUnit; + global Double unitPrice; + global List variants; + global ProductDetailsOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductEntitlement.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductEntitlement.cls new file mode 100644 index 0000000..fcee8e9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductEntitlement.cls @@ -0,0 +1,10 @@ +global class ProductEntitlement { + global Boolean canViewPrice; + global ProductEntitlement() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductFileFormat.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductFileFormat.cls new file mode 100644 index 0000000..916f4be --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductFileFormat.cls @@ -0,0 +1,5 @@ +global enum ProductFileFormat { +DOCUMENT, +PDF, +SPREADSHEET +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductImageGroupOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductImageGroupOutputRepresentation.cls new file mode 100644 index 0000000..904479f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductImageGroupOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class ProductImageGroupOutputRepresentation { + global List images; + global String viewType; + global ProductImageGroupOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductImageOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductImageOutputRepresentation.cls new file mode 100644 index 0000000..0970899 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductImageOutputRepresentation.cls @@ -0,0 +1,14 @@ +global class ProductImageOutputRepresentation { + global String alternateText; + global String mediaType; + global String thumbnailUrl; + global String title; + global String url; + global ProductImageOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductImageViewType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductImageViewType.cls new file mode 100644 index 0000000..c66901b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductImageViewType.cls @@ -0,0 +1,6 @@ +global enum ProductImageViewType { +LARGE, +MEDIUM, +SMALL, +SWATCH +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductInventory.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductInventory.cls new file mode 100644 index 0000000..392b0de --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductInventory.cls @@ -0,0 +1,14 @@ +global class ProductInventory { + global String availableToFulfill; + global String availableToOrder; + global String onHand; + global String reserved; + global String safetyStockCount; + global ProductInventory() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductInventoryPricing.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductInventoryPricing.cls new file mode 100644 index 0000000..faa828d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductInventoryPricing.cls @@ -0,0 +1,13 @@ +global class ProductInventoryPricing { + global String id; + global ConnectApi.ProductInventory productInventory; + global ConnectApi.ProductPrice productPrice; + global String stockKeepingUnit; + global ProductInventoryPricing() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductMedia.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductMedia.cls new file mode 100644 index 0000000..13f8b59 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductMedia.cls @@ -0,0 +1,17 @@ +global class ProductMedia { + global String alternateText; + global String contentVersionId; + global String id; + global ConnectApi.ProductMediaType mediaType; + global Integer sortOrder; + global String thumbnailUrl; + global String title; + global String url; + global ProductMedia() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductMediaGroup.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductMediaGroup.cls new file mode 100644 index 0000000..191eff5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductMediaGroup.cls @@ -0,0 +1,14 @@ +global class ProductMediaGroup { + global String developerName; + global String id; + global List mediaItems; + global String name; + global ConnectApi.ProductMediaUsageType usageType; + global ProductMediaGroup() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductMediaType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductMediaType.cls new file mode 100644 index 0000000..f1d5b49 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductMediaType.cls @@ -0,0 +1,5 @@ +global enum ProductMediaType { +DOCUMENT, +IMAGE, +VIDEO +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductMediaUsageType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductMediaUsageType.cls new file mode 100644 index 0000000..f246ccf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductMediaUsageType.cls @@ -0,0 +1,7 @@ +global enum ProductMediaUsageType { +ATTACHMENT, +BANNER, +LISTING, +STANDARD, +TILE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductOverview.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductOverview.cls new file mode 100644 index 0000000..2d59e6b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductOverview.cls @@ -0,0 +1,16 @@ +global class ProductOverview { + global ConnectApi.ProductMedia defaultImage; + global ConnectApi.ErrorResponse error; + global Map fields; + global String id; + global ConnectApi.PricingResultLineItem prices; + global String sku; + global Boolean success; + global ProductOverview() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductOverviewCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductOverviewCollection.cls new file mode 100644 index 0000000..2639154 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductOverviewCollection.cls @@ -0,0 +1,11 @@ +global class ProductOverviewCollection { + global List products; + global Integer total; + global ProductOverviewCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductPrice.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductPrice.cls new file mode 100644 index 0000000..2a3a1e0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductPrice.cls @@ -0,0 +1,15 @@ +global class ProductPrice { + global String currencyIsoCode; + global String listPrice; + global ConnectApi.PriceAdjustmentSchedule priceAdjustment; + global String pricebookEntryId; + global List productPriceEntries; + global String unitPrice; + global ProductPrice() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductPriceEntry.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductPriceEntry.cls new file mode 100644 index 0000000..93f3d1d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductPriceEntry.cls @@ -0,0 +1,16 @@ +global class ProductPriceEntry { + global ConnectApi.ErrorResponse error; + global String listPrice; + global ConnectApi.PriceAdjustmentSchedule priceAdjustment; + global String pricebookEntryId; + global String productSellingModelId; + global Boolean success; + global String unitPrice; + global ProductPriceEntry() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductQuantityRuleOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductQuantityRuleOutputRepresentation.cls new file mode 100644 index 0000000..c265d41 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductQuantityRuleOutputRepresentation.cls @@ -0,0 +1,12 @@ +global class ProductQuantityRuleOutputRepresentation { + global String increment; + global String maximum; + global String minimum; + global ProductQuantityRuleOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductSchemaType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductSchemaType.cls new file mode 100644 index 0000000..24db113 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductSchemaType.cls @@ -0,0 +1,5 @@ +global enum ProductSchemaType { +ATTRIBUTE, +CUSTOM, +STANDARD +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductScope.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductScope.cls new file mode 100644 index 0000000..ae89636 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductScope.cls @@ -0,0 +1,4 @@ +global enum ProductScope { +DETAIL, +SUMMARY +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductSearchGroupingInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductSearchGroupingInput.cls new file mode 100644 index 0000000..bcf9c01 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductSearchGroupingInput.cls @@ -0,0 +1,10 @@ +global class ProductSearchGroupingInput { + global ConnectApi.CommerceSearchGroupingOption groupingOption; + global ConnectApi.CommerceSearchTopProductType topProductType; + global ProductSearchGroupingInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductSearchInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductSearchInput.cls new file mode 100644 index 0000000..5bde2bc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductSearchInput.cls @@ -0,0 +1,18 @@ +global class ProductSearchInput { + global String categoryId; + global List fields; + global ConnectApi.ProductSearchGroupingInput grouping; + global Boolean includePrices; + global Boolean includeQuantityRule; + global Integer page; + global Integer pageSize; + global List refinements; + global String searchTerm; + global String sortRuleId; + global ProductSearchInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductSearchResults.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductSearchResults.cls new file mode 100644 index 0000000..83b01c4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductSearchResults.cls @@ -0,0 +1,14 @@ +global class ProductSearchResults { + global ConnectApi.SearchCategory categories; + global String correlationId; + global List facets; + global String locale; + global ConnectApi.ProductSummaryPage productsPage; + global ProductSearchResults() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductSearchSuggestionsResults.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductSearchSuggestionsResults.cls new file mode 100644 index 0000000..fc05762 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductSearchSuggestionsResults.cls @@ -0,0 +1,10 @@ +global class ProductSearchSuggestionsResults { + global List recentSearchSuggestions; + global ProductSearchSuggestionsResults() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductSellingModel.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductSellingModel.cls new file mode 100644 index 0000000..6801d02 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductSellingModel.cls @@ -0,0 +1,14 @@ +global class ProductSellingModel { + global String id; + global String name; + global Integer pricingTerm; + global ConnectApi.PricingTermUnit pricingTermUnit; + global ConnectApi.SellingModelType sellingModelType; + global ProductSellingModel() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductSummary.cls new file mode 100644 index 0000000..5948187 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductSummary.cls @@ -0,0 +1,17 @@ +global class ProductSummary { + global ConnectApi.ProductMedia defaultImage; + global Map fields; + global String id; + global String name; + global ConnectApi.PricingResultLineItem prices; + global ConnectApi.ProductClass productClass; + global ConnectApi.PurchaseQuantityRule purchaseQuantityRule; + global ConnectApi.ProductAttributeSetSummary variationAttributeSet; + global ProductSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductSummaryPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductSummaryPage.cls new file mode 100644 index 0000000..aa7b3db --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductSummaryPage.cls @@ -0,0 +1,13 @@ +global class ProductSummaryPage { + global String currencyIsoCode; + global Integer pageSize; + global List products; + global Long total; + global ProductSummaryPage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductTransferStatusEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductTransferStatusEnum.cls new file mode 100644 index 0000000..7efe820 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductTransferStatusEnum.cls @@ -0,0 +1,4 @@ +global enum ProductTransferStatusEnum { +COMPLETED, +FAILED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductVariantOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductVariantOutputRepresentation.cls new file mode 100644 index 0000000..02d34ba --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductVariantOutputRepresentation.cls @@ -0,0 +1,15 @@ +global class ProductVariantOutputRepresentation { + global Double listPrice; + global Double price; + global String productId; + global String stockKeepingUnit; + global Double unitPrice; + global Map variationValues; + global ProductVariantOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductVariationAttributeOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductVariationAttributeOutputRepresentation.cls new file mode 100644 index 0000000..d824ef4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductVariationAttributeOutputRepresentation.cls @@ -0,0 +1,12 @@ +global class ProductVariationAttributeOutputRepresentation { + global String apiName; + global String label; + global List variationAttributeValues; + global ProductVariationAttributeOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductVariationAttributeValueOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductVariationAttributeValueOutputRepresentation.cls new file mode 100644 index 0000000..e298886 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductVariationAttributeValueOutputRepresentation.cls @@ -0,0 +1,12 @@ +global class ProductVariationAttributeValueOutputRepresentation { + global String name; + global Boolean orderable; + global String value; + global ProductVariationAttributeValueOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductVariationInfo.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductVariationInfo.cls new file mode 100644 index 0000000..0d75d14 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProductVariationInfo.cls @@ -0,0 +1,11 @@ +global class ProductVariationInfo { + global List attributesToProductMappings; + global Map variationAttributeInfo; + global ProductVariationInfo() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProgramApplicationFileInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProgramApplicationFileInputRepresentation.cls new file mode 100644 index 0000000..6c3972a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProgramApplicationFileInputRepresentation.cls @@ -0,0 +1,9 @@ +global class ProgramApplicationFileInputRepresentation { + global String contentDocumentId; + global ProgramApplicationFileInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProgramApplicationItemInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProgramApplicationItemInputRepresentation.cls new file mode 100644 index 0000000..6cf240b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProgramApplicationItemInputRepresentation.cls @@ -0,0 +1,10 @@ +global class ProgramApplicationItemInputRepresentation { + global String programProductId; + global String status; + global ProgramApplicationItemInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProgramApplicationOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProgramApplicationOutputRepresentation.cls new file mode 100644 index 0000000..77ee5b1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProgramApplicationOutputRepresentation.cls @@ -0,0 +1,12 @@ +global class ProgramApplicationOutputRepresentation { + global String applicationId; + global String message; + global Boolean success; + global ProgramApplicationOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProgramEnrollmentsDTO.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProgramEnrollmentsDTO.cls new file mode 100644 index 0000000..519ba19 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProgramEnrollmentsDTO.cls @@ -0,0 +1,13 @@ +global class ProgramEnrollmentsDTO { + global Datetime applicationDate; + global Datetime endDate; + global String id; + global Datetime startDate; + global String status; + global ProgramEnrollmentsDTO() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProgramEnrollmentsInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProgramEnrollmentsInputRepresentation.cls new file mode 100644 index 0000000..9a6dbbf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProgramEnrollmentsInputRepresentation.cls @@ -0,0 +1,9 @@ +global class ProgramEnrollmentsInputRepresentation { + global List enrollees; + global ProgramEnrollmentsInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProgramEnrollmentsOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProgramEnrollmentsOutputRepresentation.cls new file mode 100644 index 0000000..0e15ab0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProgramEnrollmentsOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class ProgramEnrollmentsOutputRepresentation { + global String message; + global Boolean success; + global ProgramEnrollmentsOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProgramManagement.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProgramManagement.cls new file mode 100644 index 0000000..4d5d290 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProgramManagement.cls @@ -0,0 +1,3 @@ +global class ProgramManagement { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProgramRebateTypes.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProgramRebateTypes.cls new file mode 100644 index 0000000..9e3fe00 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProgramRebateTypes.cls @@ -0,0 +1,12 @@ +global class ProgramRebateTypes { + global List appliedRebateTypes; + global List eligibleRebateTypes; + global String referenceObjectId; + global ProgramRebateTypes() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Programapplicationinputrepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Programapplicationinputrepresentation.cls new file mode 100644 index 0000000..2a70b9c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Programapplicationinputrepresentation.cls @@ -0,0 +1,3 @@ +global class Programapplicationinputrepresentation { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProjectedRebateAmountCalc.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProjectedRebateAmountCalc.cls new file mode 100644 index 0000000..c4da0d9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProjectedRebateAmountCalc.cls @@ -0,0 +1,14 @@ +global class ProjectedRebateAmountCalc { + global List detailedProjectedRebateAmountCalc; + global String error; + global String programRebateTypeId; + global String referenceRecordId; + global Double totalProjectedRebateAmount; + global ProjectedRebateAmountCalc() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionAdjustmentTargetType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionAdjustmentTargetType.cls new file mode 100644 index 0000000..aca381c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionAdjustmentTargetType.cls @@ -0,0 +1,4 @@ +global enum PromotionAdjustmentTargetType { +CART, +ITEM +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionBonusProduct.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionBonusProduct.cls new file mode 100644 index 0000000..875d7ab --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionBonusProduct.cls @@ -0,0 +1,13 @@ +global class PromotionBonusProduct { + global String adjustmentBasisReference; + global String bonusProductId; + global String causeId; + global List qualifyingItems; + global PromotionBonusProduct() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionCart.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionCart.cls new file mode 100644 index 0000000..621fc56 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionCart.cls @@ -0,0 +1,17 @@ +global class PromotionCart { + global List bonusProducts; + global List cartAdjustmentGroups; + global List cartItems; + global String currencyIsoCode; + global String id; + global String totalAdjustmentBaseAmount; + global String totalNetAmount; + global String totalProductBaseAmount; + global PromotionCart() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionCartAdjustmentGroup.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionCartAdjustmentGroup.cls new file mode 100644 index 0000000..1d53e43 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionCartAdjustmentGroup.cls @@ -0,0 +1,18 @@ +global class PromotionCartAdjustmentGroup { + global String adjustmentBasisReference; + global String adjustmentDescription; + global ConnectApi.AdjustmentType adjustmentType; + global String adjustmentValue; + global String baseAmount; + global String cartId; + global String id; + global String priceAdjustmentCauseId; + global Integer priority; + global PromotionCartAdjustmentGroup() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionCartDeliveryGroupInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionCartDeliveryGroupInput.cls new file mode 100644 index 0000000..47ba28a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionCartDeliveryGroupInput.cls @@ -0,0 +1,10 @@ +global class PromotionCartDeliveryGroupInput { + global String cartDeliveryGroupId; + global String deliveryMethodId; + global PromotionCartDeliveryGroupInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionCartInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionCartInput.cls new file mode 100644 index 0000000..b8684ba --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionCartInput.cls @@ -0,0 +1,11 @@ +global class PromotionCartInput { + global List cartItems; + global String currencyIsoCode; + global String id; + global PromotionCartInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionCartItem.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionCartItem.cls new file mode 100644 index 0000000..e90b138 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionCartItem.cls @@ -0,0 +1,25 @@ +global class PromotionCartItem { + global String cartDeliveryGroupId; + global String cartId; + global List cartItemPriceAdjustments; + global String id; + global String itemDescription; + global String itemName; + global String listPrice; + global String product2Id; + global String quantity; + global String salesPrice; + global String sku; + global String totalAdjustmentBaseAmount; + global String totalLineBaseAmount; + global String totalListBaseAmount; + global String totalNetAmount; + global ConnectApi.CartItemType type; + global PromotionCartItem() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionCartItemInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionCartItemInput.cls new file mode 100644 index 0000000..5034ea0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionCartItemInput.cls @@ -0,0 +1,21 @@ +global class PromotionCartItemInput { + global String cartDeliveryGroupId; + global String cartId; + global String id; + global String itemDescription; + global String itemName; + global String listPrice; + global String product2Id; + global String quantity; + global String salesPrice; + global String sku; + global String totalLineBaseAmount; + global String totalListBaseAmount; + global ConnectApi.CartItemType type; + global PromotionCartItemInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionCartItemKey.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionCartItemKey.cls new file mode 100644 index 0000000..274f4c0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionCartItemKey.cls @@ -0,0 +1,11 @@ +global class PromotionCartItemKey { + global String cartItemId; + global String cartItemQuantityIdentifier; + global PromotionCartItemKey() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionCartItemPriceAdjustment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionCartItemPriceAdjustment.cls new file mode 100644 index 0000000..f201715 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionCartItemPriceAdjustment.cls @@ -0,0 +1,21 @@ +global class PromotionCartItemPriceAdjustment { + global ConnectApi.AdjustmentAmountScope adjustmentAmountScope; + global String adjustmentBasisReference; + global String adjustmentDescription; + global ConnectApi.PromotionAdjustmentTargetType adjustmentTargetType; + global ConnectApi.AdjustmentType adjustmentType; + global String adjustmentValue; + global String baseAmount; + global String cartAdjustmentGroupId; + global String cartItemId; + global String id; + global String priceAdjustmentCauseId; + global Integer priority; + global PromotionCartItemPriceAdjustment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionCoupon.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionCoupon.cls new file mode 100644 index 0000000..7a5d3ae --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionCoupon.cls @@ -0,0 +1,13 @@ +global class PromotionCoupon { + global String couponCode; + global String couponErrorCode; + global String id; + global Boolean isValidCoupon; + global PromotionCoupon() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionEvaluateInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionEvaluateInput.cls new file mode 100644 index 0000000..7ab47e1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionEvaluateInput.cls @@ -0,0 +1,17 @@ +global class PromotionEvaluateInput { + global ConnectApi.PromotionCartInput cart; + global List cartDeliveryGroups; + global List couponCodes; + global String effectiveAccountId; + global Boolean isItemizeHeaderAdjustments; + global List parentProducts; + global List productCategories; + global List segments; + global String webStoreId; + global PromotionEvaluateInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionEvaluation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionEvaluation.cls new file mode 100644 index 0000000..486f8a8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionEvaluation.cls @@ -0,0 +1,11 @@ +global class PromotionEvaluation { + global ConnectApi.PromotionCart cart; + global List coupons; + global PromotionEvaluation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionParentProductsInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionParentProductsInput.cls new file mode 100644 index 0000000..25ea0e8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionParentProductsInput.cls @@ -0,0 +1,10 @@ +global class PromotionParentProductsInput { + global String childProductId; + global String parentProductId; + global PromotionParentProductsInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionProductCategoriesInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionProductCategoriesInput.cls new file mode 100644 index 0000000..4a37e5e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PromotionProductCategoriesInput.cls @@ -0,0 +1,10 @@ +global class PromotionProductCategoriesInput { + global String categoryId; + global String productId; + global PromotionProductCategoriesInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProviderOutputCollectionRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProviderOutputCollectionRepresentation.cls new file mode 100644 index 0000000..208310e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProviderOutputCollectionRepresentation.cls @@ -0,0 +1,11 @@ +global class ProviderOutputCollectionRepresentation { + global Integer count; + global List items; + global ProviderOutputCollectionRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProviderOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProviderOutputRepresentation.cls new file mode 100644 index 0000000..fcbd697 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProviderOutputRepresentation.cls @@ -0,0 +1,14 @@ +global class ProviderOutputRepresentation { + global ConnectApi.ApexClassOutputRepresentation apexClass; + global List effectiveMappings; + global String epn; + global String name; + global String type; + global ProviderOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProvidersError.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProvidersError.cls new file mode 100644 index 0000000..26f5809 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProvidersError.cls @@ -0,0 +1,11 @@ +global class ProvidersError { + global String code; + global List messages; + global ProvidersError() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProvidersInputResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProvidersInputResult.cls new file mode 100644 index 0000000..eec7b74 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProvidersInputResult.cls @@ -0,0 +1,11 @@ +global class ProvidersInputResult { + global List detail; + global ConnectApi.ProvidersError error; + global ProvidersInputResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProvidersInputResultDetail.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProvidersInputResultDetail.cls new file mode 100644 index 0000000..f0ad50d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ProvidersInputResultDetail.cls @@ -0,0 +1,11 @@ +global class ProvidersInputResultDetail { + global ConnectApi.ProvidersError error; + global String providerId; + global ProvidersInputResultDetail() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PublishSchedule.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PublishSchedule.cls new file mode 100644 index 0000000..3502267 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PublishSchedule.cls @@ -0,0 +1,9 @@ +global enum PublishSchedule { +FOUR, +NOREFRESH, +ONE, +SIX, +TWELVE, +TWENTYFOUR, +TWO +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PublishStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PublishStatus.cls new file mode 100644 index 0000000..50b5868 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PublishStatus.cls @@ -0,0 +1,4 @@ +global enum PublishStatus { +DRAFT, +LIVE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PurchaseQuantityRule.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PurchaseQuantityRule.cls new file mode 100644 index 0000000..4485b12 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/PurchaseQuantityRule.cls @@ -0,0 +1,12 @@ +global class PurchaseQuantityRule { + global String increment; + global String maximum; + global String minimum; + global PurchaseQuantityRule() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QuantityWithSkuInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QuantityWithSkuInputRepresentation.cls new file mode 100644 index 0000000..8e381df --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QuantityWithSkuInputRepresentation.cls @@ -0,0 +1,10 @@ +global class QuantityWithSkuInputRepresentation { + global Double quantity; + global String stockKeepingUnit; + global QuantityWithSkuInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QueryLanguage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QueryLanguage.cls new file mode 100644 index 0000000..7077d0c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QueryLanguage.cls @@ -0,0 +1,4 @@ +global enum QueryLanguage { +SAQL, +SQL +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QuestionAndAnswers.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QuestionAndAnswers.cls new file mode 100644 index 0000000..bd7b774 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QuestionAndAnswers.cls @@ -0,0 +1,7 @@ +global class QuestionAndAnswers { + global Object clone() { } + global static ConnectApi.QuestionAndAnswersSuggestions getSuggestions(String communityId, String q, String subjectId, Boolean includeArticles, Integer maxResults) { } + global static void setTestGetSuggestions(String communityId, String q, String subjectId, Boolean includeArticles, Integer maxResults, ConnectApi.QuestionAndAnswersSuggestions result) { } + global static ConnectApi.QuestionAndAnswersCapability updateQuestionAndAnswers(String communityId, String feedElementId, ConnectApi.QuestionAndAnswersCapabilityInput questionAndAnswersCapability) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QuestionAndAnswersCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QuestionAndAnswersCapability.cls new file mode 100644 index 0000000..65db6d5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QuestionAndAnswersCapability.cls @@ -0,0 +1,15 @@ +global class QuestionAndAnswersCapability { + global ConnectApi.Comment bestAnswer; + global ConnectApi.UserSummary bestAnswerSelectedBy; + global Boolean canCurrentUserSelectOrRemoveBestAnswer; + global ConnectApi.CandidateAnswersStatus candidateAnswers; + global ConnectApi.Reference escalatedCase; + global String questionTitle; + global QuestionAndAnswersCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QuestionAndAnswersCapabilityInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QuestionAndAnswersCapabilityInput.cls new file mode 100644 index 0000000..10e8c9b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QuestionAndAnswersCapabilityInput.cls @@ -0,0 +1,10 @@ +global class QuestionAndAnswersCapabilityInput { + global String bestAnswerId; + global String questionTitle; + global QuestionAndAnswersCapabilityInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QuestionAndAnswersSuggestions.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QuestionAndAnswersSuggestions.cls new file mode 100644 index 0000000..24551bc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QuestionAndAnswersSuggestions.cls @@ -0,0 +1,11 @@ +global class QuestionAndAnswersSuggestions { + global List articles; + global List questions; + global QuestionAndAnswersSuggestions() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QuestionAttachment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QuestionAttachment.cls new file mode 100644 index 0000000..654cf80 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QuestionAttachment.cls @@ -0,0 +1,13 @@ +global class QuestionAttachment { + global ConnectApi.Comment bestAnswer; + global ConnectApi.UserSummary bestAnswerSelectedBy; + global Boolean canCurrentUserSelectOrRemoveBestAnswer; + global String questionTitle; + global QuestionAttachment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QuestionAttachmentInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QuestionAttachmentInput.cls new file mode 100644 index 0000000..50289e7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QuestionAttachmentInput.cls @@ -0,0 +1,9 @@ +global class QuestionAttachmentInput { + global String questionTitle; + global QuestionAttachmentInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QuestionContextType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QuestionContextType.cls new file mode 100644 index 0000000..74cb494 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QuestionContextType.cls @@ -0,0 +1,3 @@ +global enum QuestionContextType { +CASE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QuickTextContext.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QuickTextContext.cls new file mode 100644 index 0000000..f455946 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/QuickTextContext.cls @@ -0,0 +1,4 @@ +global enum QuickTextContext { +PREVIEW, +RUNTIME +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RankAverageDistanceInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RankAverageDistanceInputRepresentation.cls new file mode 100644 index 0000000..af966be --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RankAverageDistanceInputRepresentation.cls @@ -0,0 +1,13 @@ +global class RankAverageDistanceInputRepresentation { + global String deliveryCountryCode; + global String deliveryPostalCode; + global String distanceUnit; + global String sortResult; + global List targetLocations; + global RankAverageDistanceInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RankAverageDistanceOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RankAverageDistanceOutputRepresentation.cls new file mode 100644 index 0000000..c389d75 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RankAverageDistanceOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class RankAverageDistanceOutputRepresentation { + global String distanceUnit; + global List results; + global RankAverageDistanceOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RateLimitException.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RateLimitException.cls new file mode 100644 index 0000000..a7194be --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RateLimitException.cls @@ -0,0 +1,6 @@ +global class RateLimitException extends Exception { + global Object clone() { } + global String getErrorCode() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RawDataInputWrap.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RawDataInputWrap.cls new file mode 100644 index 0000000..a9b569b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RawDataInputWrap.cls @@ -0,0 +1,9 @@ +global class RawDataInputWrap { + global List rawDataInputWrap; + global RawDataInputWrap() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReadBy.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReadBy.cls new file mode 100644 index 0000000..63fb979 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReadBy.cls @@ -0,0 +1,11 @@ +global class ReadBy { + global Datetime lastReadDateByUser; + global ConnectApi.UserSummary user; + global ReadBy() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReadByCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReadByCapability.cls new file mode 100644 index 0000000..67a4550 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReadByCapability.cls @@ -0,0 +1,12 @@ +global class ReadByCapability { + global Boolean isReadByMe; + global Datetime lastReadDateByMe; + global ConnectApi.ReadByPage page; + global ReadByCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReadByCapabilityInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReadByCapabilityInput.cls new file mode 100644 index 0000000..36eac00 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReadByCapabilityInput.cls @@ -0,0 +1,10 @@ +global class ReadByCapabilityInput { + global Boolean isReadByMe; + global Datetime lastReadDateByMe; + global ReadByCapabilityInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReadByPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReadByPage.cls new file mode 100644 index 0000000..2cab410 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReadByPage.cls @@ -0,0 +1,17 @@ +global class ReadByPage { + global String currentPageToken; + global String currentPageUrl; + global List items; + global String nextPageToken; + global String nextPageUrl; + global String previousPageToken; + global String previousPageUrl; + global Integer total; + global ReadByPage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecipeSortOrderEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecipeSortOrderEnum.cls new file mode 100644 index 0000000..ec19b8a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecipeSortOrderEnum.cls @@ -0,0 +1,4 @@ +global enum RecipeSortOrderEnum { +ASCENDING, +DESCENDING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecipientEngagementContextInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecipientEngagementContextInput.cls new file mode 100644 index 0000000..2ecfca5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecipientEngagementContextInput.cls @@ -0,0 +1,10 @@ +global class RecipientEngagementContextInput { + global Map recipientEngagementContext; + global String recipientId; + global RecipientEngagementContextInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Recommendation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Recommendation.cls new file mode 100644 index 0000000..6e21709 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Recommendation.cls @@ -0,0 +1,18 @@ +global class Recommendation { + global String acceptanceLabel; + global String actionReference; + global String description; + global String externalId; + global String id; + global ConnectApi.FileAsset image; + global String name; + global String rejectionLabel; + global String url; + global Recommendation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationActionType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationActionType.cls new file mode 100644 index 0000000..e2508e8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationActionType.cls @@ -0,0 +1,5 @@ +global enum RecommendationActionType { +FOLLOW, +JOIN, +VIEW +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationAudience.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationAudience.cls new file mode 100644 index 0000000..67875bf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationAudience.cls @@ -0,0 +1,17 @@ +global class RecommendationAudience { + global ConnectApi.AudienceCriteria criteria; + global String id; + global Integer memberCount; + global ConnectApi.UserReferencePage members; + global ConnectApi.User modifiedBy; + global Datetime modifiedDate; + global String name; + global String url; + global RecommendationAudience() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationAudienceCriteriaType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationAudienceCriteriaType.cls new file mode 100644 index 0000000..5a7086f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationAudienceCriteriaType.cls @@ -0,0 +1,4 @@ +global enum RecommendationAudienceCriteriaType { +CUSTOMLIST, +MAXDAYSINCOMMUNITY +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationAudienceInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationAudienceInput.cls new file mode 100644 index 0000000..bc818a6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationAudienceInput.cls @@ -0,0 +1,12 @@ +global class RecommendationAudienceInput { + global ConnectApi.AudienceCriteriaInput criteria; + global ConnectApi.RecommendationAudienceMemberOperationType memberOperationType; + global List members; + global String name; + global RecommendationAudienceInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationAudienceMemberOperationType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationAudienceMemberOperationType.cls new file mode 100644 index 0000000..c60ab36 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationAudienceMemberOperationType.cls @@ -0,0 +1,4 @@ +global enum RecommendationAudienceMemberOperationType { +ADD, +REMOVE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationAudiencePage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationAudiencePage.cls new file mode 100644 index 0000000..2dd1dfb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationAudiencePage.cls @@ -0,0 +1,14 @@ +global class RecommendationAudiencePage { + global Integer audienceCount; + global String currentPageUrl; + global String nextPageUrl; + global String previousPageUrl; + global List recommendationAudiences; + global RecommendationAudiencePage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationChannel.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationChannel.cls new file mode 100644 index 0000000..41c70a5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationChannel.cls @@ -0,0 +1,8 @@ +global enum RecommendationChannel { +CUSTOMCHANNEL1, +CUSTOMCHANNEL2, +CUSTOMCHANNEL3, +CUSTOMCHANNEL4, +CUSTOMCHANNEL5, +DEFAULTCHANNEL +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationCollection.cls new file mode 100644 index 0000000..677d7c3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationCollection.cls @@ -0,0 +1,10 @@ +global class RecommendationCollection { + global List recommendations; + global RecommendationCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationDefinition.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationDefinition.cls new file mode 100644 index 0000000..66f3b98 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationDefinition.cls @@ -0,0 +1,17 @@ +global class RecommendationDefinition { + global String actionUrl; + global String actionUrlName; + global String explanation; + global String id; + global String name; + global ConnectApi.Photo photo; + global String title; + global String url; + global RecommendationDefinition() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationDefinitionInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationDefinitionInput.cls new file mode 100644 index 0000000..cd8c928 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationDefinitionInput.cls @@ -0,0 +1,13 @@ +global class RecommendationDefinitionInput { + global String actionUrl; + global String actionUrlName; + global String explanation; + global String name; + global String title; + global RecommendationDefinitionInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationDefinitionPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationDefinitionPage.cls new file mode 100644 index 0000000..397cad7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationDefinitionPage.cls @@ -0,0 +1,11 @@ +global class RecommendationDefinitionPage { + global List recommendationDefinitions; + global String url; + global RecommendationDefinitionPage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationExplanation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationExplanation.cls new file mode 100644 index 0000000..2457cf7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationExplanation.cls @@ -0,0 +1,10 @@ +global class RecommendationExplanation { + global String detailsUrl; + global RecommendationExplanation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationExplanationType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationExplanationType.cls new file mode 100644 index 0000000..38e2830 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationExplanationType.cls @@ -0,0 +1,29 @@ +global enum RecommendationExplanationType { +ARTICLEHASRELATEDCONTENT, +ARTICLEVIEWEDTOGETHER, +ARTICLEVIEWEDTOGETHERWITHVIEWERS, +CUSTOM, +FILEPOPULAR, +FILEVIEWEDTOGETHER, +FOLLOWEDTOGETHERWITHFOLLOWEES, +GROUPMEMBERSFOLLOWED, +GROUPNEW, +GROUPPOPULAR, +ITEMVIEWEDTOGETHER, +POPULARAPP, +RECORDOWNED, +RECORDPARENTOFFOLLOWED, +RECORDVIEWED, +TOPICFOLLOWEDTOGETHER, +TOPICFOLLOWEDTOGETHERWITHFOLLOWEES, +TOPICPOPULARFOLLOWED, +TOPICPOPULARLIKED, +USERDIRECTREPORT, +USERFOLLOWEDTOGETHER, +USERFOLLOWSSAMEUSERS, +USERMANAGER, +USERNEW, +USERPEER, +USERPOPULAR, +USERVIEWINGSAMERECORDS +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationList.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationList.cls new file mode 100644 index 0000000..133185b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationList.cls @@ -0,0 +1,10 @@ +global class RecommendationList { + global List recommendations; + global RecommendationList() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationMode.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationMode.cls new file mode 100644 index 0000000..b0f69eb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationMode.cls @@ -0,0 +1,4 @@ +global enum RecommendationMode { +INTELLIGENT, +LEARNING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationReaction.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationReaction.cls new file mode 100644 index 0000000..e0db33e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationReaction.cls @@ -0,0 +1,23 @@ +global class RecommendationReaction { + global String aiModel; + global ConnectApi.Reference contextRecord; + global ConnectApi.Reference createdBy; + global Datetime createdDate; + global String externalId; + global String id; + global ConnectApi.Reference onBehalfOf; + global ConnectApi.RecommendationReactionType reactionType; + global ConnectApi.RecommendationMode recommendationMode; + global Double recommendationScore; + global ConnectApi.RecordSnapshot strategy; + global ConnectApi.RecordSnapshot targetAction; + global ConnectApi.Reference targetRecord; + global String url; + global RecommendationReaction() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationReactionInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationReactionInput.cls new file mode 100644 index 0000000..1a12885 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationReactionInput.cls @@ -0,0 +1,20 @@ +global class RecommendationReactionInput { + global String aiModel; + global String contextRecordId; + global String executionId; + global String externalId; + global String onBehalfOfId; + global ConnectApi.RecommendationReactionType reactionType; + global ConnectApi.RecommendationMode recommendationMode; + global Double recommendationScore; + global String strategyName; + global String targetActionId; + global String targetActionName; + global String targetId; + global RecommendationReactionInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationReactionType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationReactionType.cls new file mode 100644 index 0000000..e5edd54 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationReactionType.cls @@ -0,0 +1,4 @@ +global enum RecommendationReactionType { +ACCEPTED, +REJECTED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationReactions.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationReactions.cls new file mode 100644 index 0000000..195c3f5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationReactions.cls @@ -0,0 +1,12 @@ +global class RecommendationReactions { + global String currentPageUrl; + global String nextPageUrl; + global List reactions; + global RecommendationReactions() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationType.cls new file mode 100644 index 0000000..39b7249 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationType.cls @@ -0,0 +1,10 @@ +global enum RecommendationType { +APPS, +ARTICLES, +CUSTOM, +FILES, +GROUPS, +RECORDS, +TOPICS, +USERS +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Recommendations.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Recommendations.cls new file mode 100644 index 0000000..4d7ddf5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Recommendations.cls @@ -0,0 +1,51 @@ +global class Recommendations { + global Object clone() { } + global static ConnectApi.RecommendationAudience createRecommendationAudience(String communityId, ConnectApi.RecommendationAudienceInput recommendationAudience) { } + global static ConnectApi.RecommendationAudience createRecommendationAudience(String communityId, String name) { } + global static ConnectApi.RecommendationDefinition createRecommendationDefinition(String communityId, String name, String title, String actionUrl, String actionUrlName, String explanation) { } + global static ConnectApi.RecommendationDefinition createRecommendationDefinition(String communityId, ConnectApi.RecommendationDefinitionInput recommendationDefinition) { } + global static ConnectApi.ScheduledRecommendation createScheduledRecommendation(String communityId, String recommendationDefinitionId, Integer rank, Boolean enabled, String recommendationAudienceId, ConnectApi.RecommendationChannel channel) { } + global static ConnectApi.ScheduledRecommendation createScheduledRecommendation(String communityId, String recommendationDefinitionId, Integer rank, Boolean enabled, String recommendationAudienceId) { } + global static ConnectApi.ScheduledRecommendation createScheduledRecommendation(String communityId, ConnectApi.ScheduledRecommendationInput scheduledRecommendation) { } + global static void deleteRecommendationAudience(String communityId, String recommendationAudienceId) { } + global static void deleteRecommendationDefinition(String communityId, String recommendationDefinitionId) { } + global static void deleteRecommendationDefinitionPhoto(String communityId, String recommendationDefinitionId) { } + global static void deleteScheduledRecommendation(String communityId, String scheduledRecommendationId, Boolean deleteDefinitionIfLast) { } + global static ConnectApi.RecommendationAudience getRecommendationAudience(String communityId, String recommendationAudienceId) { } + global static ConnectApi.UserReferencePage getRecommendationAudienceMembership(String communityId, String recommendationAudienceId, Integer pageParam, Integer pageSize) { } + global static ConnectApi.UserReferencePage getRecommendationAudienceMembership(String communityId, String recommendationAudienceId) { } + global static ConnectApi.RecommendationAudiencePage getRecommendationAudiences(String communityId, Integer pageParam, Integer pageSize) { } + global static ConnectApi.RecommendationAudiencePage getRecommendationAudiences(String communityId) { } + global static ConnectApi.RecommendationDefinition getRecommendationDefinition(String communityId, String recommendationDefinitionId) { } + global static ConnectApi.Photo getRecommendationDefinitionPhoto(String communityId, String recommendationDefinitionId) { } + global static ConnectApi.RecommendationDefinitionPage getRecommendationDefinitions(String communityId) { } + global static ConnectApi.RecommendationCollection getRecommendationForUser(String communityId, String userId, ConnectApi.RecommendationActionType action, String objectId) { } + global static ConnectApi.RecommendationCollection getRecommendationsForUser(String communityId, String userId, ConnectApi.RecommendationActionType action, String objectCategory, ConnectApi.RecommendationActionType contextAction, String contextObjectId, ConnectApi.RecommendationChannel channel, Integer maxResults) { } + global static ConnectApi.RecommendationCollection getRecommendationsForUser(String communityId, String userId, ConnectApi.RecommendationActionType action, ConnectApi.RecommendationActionType contextAction, String contextObjectId, ConnectApi.RecommendationChannel channel, Integer maxResults) { } + global static ConnectApi.RecommendationCollection getRecommendationsForUser(String communityId, String userId, ConnectApi.RecommendationActionType action, String objectCategory, ConnectApi.RecommendationActionType contextAction, String contextObjectId, Integer maxResults) { } + global static ConnectApi.RecommendationCollection getRecommendationsForUser(String communityId, String userId, ConnectApi.RecommendationActionType action, ConnectApi.RecommendationActionType contextAction, String contextObjectId, Integer maxResults) { } + global static ConnectApi.RecommendationCollection getRecommendationsForUser(String communityId, String userId, ConnectApi.RecommendationActionType contextAction, String contextObjectId, ConnectApi.RecommendationChannel channel, Integer maxResults) { } + global static ConnectApi.RecommendationCollection getRecommendationsForUser(String communityId, String userId, ConnectApi.RecommendationActionType contextAction, String contextObjectId, Integer maxResults) { } + global static ConnectApi.ScheduledRecommendation getScheduledRecommendation(String communityId, String scheduledRecommendationId) { } + global static ConnectApi.ScheduledRecommendationPage getScheduledRecommendations(String communityId, ConnectApi.RecommendationChannel channel) { } + global static ConnectApi.ScheduledRecommendationPage getScheduledRecommendations(String communityId) { } + global static void rejectRecommendationForUser(String communityId, String userId, ConnectApi.RecommendationActionType action, ConnectApi.RecommendedObjectType objectEnum) { } + global static void rejectRecommendationForUser(String communityId, String userId, ConnectApi.RecommendationActionType action, String objectId) { } + global static void setTestGetRecommendationForUser(String communityId, String userId, ConnectApi.RecommendationActionType action, String objectId, ConnectApi.RecommendationCollection result) { } + global static void setTestGetRecommendationsForUser(String communityId, String userId, ConnectApi.RecommendationActionType action, String objectCategory, ConnectApi.RecommendationActionType contextAction, String contextObjectId, ConnectApi.RecommendationChannel channel, Integer maxResults, ConnectApi.RecommendationCollection result) { } + global static void setTestGetRecommendationsForUser(String communityId, String userId, ConnectApi.RecommendationActionType action, ConnectApi.RecommendationActionType contextAction, String contextObjectId, ConnectApi.RecommendationChannel channel, Integer maxResults, ConnectApi.RecommendationCollection result) { } + global static void setTestGetRecommendationsForUser(String communityId, String userId, ConnectApi.RecommendationActionType action, String objectCategory, ConnectApi.RecommendationActionType contextAction, String contextObjectId, Integer maxResults, ConnectApi.RecommendationCollection result) { } + global static void setTestGetRecommendationsForUser(String communityId, String userId, ConnectApi.RecommendationActionType action, ConnectApi.RecommendationActionType contextAction, String contextObjectId, Integer maxResults, ConnectApi.RecommendationCollection result) { } + global static void setTestGetRecommendationsForUser(String communityId, String userId, ConnectApi.RecommendationActionType contextAction, String contextObjectId, ConnectApi.RecommendationChannel channel, Integer maxResults, ConnectApi.RecommendationCollection result) { } + global static void setTestGetRecommendationsForUser(String communityId, String userId, ConnectApi.RecommendationActionType contextAction, String contextObjectId, Integer maxResults, ConnectApi.RecommendationCollection result) { } + global static ConnectApi.RecommendationAudience updateRecommendationAudience(String communityId, String recommendationAudienceId, ConnectApi.RecommendationAudienceInput recommendationAudience) { } + global static ConnectApi.RecommendationDefinition updateRecommendationDefinition(String communityId, String recommendationDefinitionId, String name, String title, String actionUrl, String actionUrlName, String explanation) { } + global static ConnectApi.RecommendationDefinition updateRecommendationDefinition(String communityId, String recommendationDefinitionId, ConnectApi.RecommendationDefinitionInput recommendationDefinition) { } + global static ConnectApi.Photo updateRecommendationDefinitionPhoto(String communityId, String recommendationDefinitionId, String fileId, Integer versionNumber) { } + global static ConnectApi.Photo updateRecommendationDefinitionPhoto(String communityId, String recommendationDefinitionId, ConnectApi.BinaryInput fileUpload) { } + global static ConnectApi.Photo updateRecommendationDefinitionPhotoWithAttributes(String communityId, String recommendationDefinitionId, ConnectApi.PhotoInput photo, ConnectApi.BinaryInput fileUpload) { } + global static ConnectApi.Photo updateRecommendationDefinitionPhotoWithAttributes(String communityId, String recommendationDefinitionId, ConnectApi.PhotoInput photo) { } + global static ConnectApi.ScheduledRecommendation updateScheduledRecommendation(String communityId, String scheduledRecommendationId, Integer rank, Boolean enabled, String recommendationAudienceId) { } + global static ConnectApi.ScheduledRecommendation updateScheduledRecommendation(String communityId, String scheduledRecommendationId, ConnectApi.ScheduledRecommendationInput scheduledRecommendation) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationsCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationsCapability.cls new file mode 100644 index 0000000..dddb448 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendationsCapability.cls @@ -0,0 +1,10 @@ +global class RecommendationsCapability { + global List items; + global RecommendationsCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendedObject.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendedObject.cls new file mode 100644 index 0000000..6c87bc0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendedObject.cls @@ -0,0 +1,11 @@ +global class RecommendedObject { + global String idOrEnum; + global ConnectApi.Motif motif; + global RecommendedObject() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendedObjectType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendedObjectType.cls new file mode 100644 index 0000000..547f8c7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecommendedObjectType.cls @@ -0,0 +1,3 @@ +global enum RecommendedObjectType { +TODAY +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAccessDetailRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAccessDetailRepresentation.cls new file mode 100644 index 0000000..351acdc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAccessDetailRepresentation.cls @@ -0,0 +1,12 @@ +global class RecordAccessDetailRepresentation { + global String recordId; + global List sharingReasons; + global String userId; + global RecordAccessDetailRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertActionCollectionMapRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertActionCollectionMapRepresentation.cls new file mode 100644 index 0000000..0108a8e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertActionCollectionMapRepresentation.cls @@ -0,0 +1,11 @@ +global class RecordAlertActionCollectionMapRepresentation { + global Boolean hasErrors; + global Map results; + global RecordAlertActionCollectionMapRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertActionInfoCollectionRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertActionInfoCollectionRepresentation.cls new file mode 100644 index 0000000..db740d4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertActionInfoCollectionRepresentation.cls @@ -0,0 +1,10 @@ +global class RecordAlertActionInfoCollectionRepresentation { + global List actionInfoCollection; + global RecordAlertActionInfoCollectionRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertActionInfoRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertActionInfoRepresentation.cls new file mode 100644 index 0000000..7967e58 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertActionInfoRepresentation.cls @@ -0,0 +1,11 @@ +global class RecordAlertActionInfoRepresentation { + global String actionName; + global List parameters; + global RecordAlertActionInfoRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertActionInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertActionInputRepresentation.cls new file mode 100644 index 0000000..cd565bb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertActionInputRepresentation.cls @@ -0,0 +1,11 @@ +global class RecordAlertActionInputRepresentation { + global String actionName; + global List actionParameters; + global String recordAlertId; + global RecordAlertActionInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertActionOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertActionOutputRepresentation.cls new file mode 100644 index 0000000..83fbe3a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertActionOutputRepresentation.cls @@ -0,0 +1,12 @@ +global class RecordAlertActionOutputRepresentation { + global ConnectApi.RecordAlertRepresentation recordAlert; + global List recordAlertErrors; + global String status; + global RecordAlertActionOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertActionParameterInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertActionParameterInput.cls new file mode 100644 index 0000000..4e1114e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertActionParameterInput.cls @@ -0,0 +1,10 @@ +global class RecordAlertActionParameterInput { + global String name; + global String value; + global RecordAlertActionParameterInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertActionSingleOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertActionSingleOutputRepresentation.cls new file mode 100644 index 0000000..46659fe --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertActionSingleOutputRepresentation.cls @@ -0,0 +1,14 @@ +global class RecordAlertActionSingleOutputRepresentation { + global String actionName; + global List errors; + global ConnectApi.RecordAlertRepresentation recordAlert; + global String recordAlertId; + global String status; + global RecordAlertActionSingleOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertBulkActionInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertBulkActionInputRepresentation.cls new file mode 100644 index 0000000..e18808b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertBulkActionInputRepresentation.cls @@ -0,0 +1,9 @@ +global class RecordAlertBulkActionInputRepresentation { + global List actions; + global RecordAlertBulkActionInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertCollectionMapRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertCollectionMapRepresentation.cls new file mode 100644 index 0000000..27905c3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertCollectionMapRepresentation.cls @@ -0,0 +1,11 @@ +global class RecordAlertCollectionMapRepresentation { + global Boolean hasErrors; + global Map results; + global RecordAlertCollectionMapRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertCollectionRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertCollectionRepresentation.cls new file mode 100644 index 0000000..6b7e42e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertCollectionRepresentation.cls @@ -0,0 +1,12 @@ +global class RecordAlertCollectionRepresentation { + global List recordAlertErrors; + global List recordAlerts; + global String status; + global RecordAlertCollectionRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertErrorRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertErrorRepresentation.cls new file mode 100644 index 0000000..407c5af --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertErrorRepresentation.cls @@ -0,0 +1,11 @@ +global class RecordAlertErrorRepresentation { + global String errorCode; + global String errorMessage; + global RecordAlertErrorRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertErrorType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertErrorType.cls new file mode 100644 index 0000000..a940575 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertErrorType.cls @@ -0,0 +1,14 @@ +global enum RecordAlertErrorType { +APEX_EXECUTION_ERROR, +API_EXCEPTION, +DATABASE_FETCH_ERROR, +EXPRESSION_SET_EXECUTION_EXCEPTION, +FAILURE, +INSUFFICIENT_ACCESS_ON_RECORD_ALERT, +INVALID_RECORD_ALERT_TEMPLATE, +INVALID_RECORD_ID, +INVALID_SNOOZE_UNTIL_DATE, +NO_DATASOURCE_DEFINED, +PARTIAL_SUCCESS, +SUCCESS +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertRepresentation.cls new file mode 100644 index 0000000..c469001 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertRepresentation.cls @@ -0,0 +1,23 @@ +global class RecordAlertRepresentation { + global ConnectApi.RecordAlertActionInfoCollectionRepresentation actions; + global Boolean active; + global String description; + global Datetime effectiveDate; + global String id; + global String parentId; + global String recordAlertCategoryName; + global String severity; + global Datetime snoozeUntilDate; + global ConnectApi.RecordAlertSourceType source; + global String sourceSystemId; + global String subject; + global Datetime validUntilDate; + global String whatId; + global RecordAlertRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertSeverityType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertSeverityType.cls new file mode 100644 index 0000000..fd583de --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertSeverityType.cls @@ -0,0 +1,5 @@ +global enum RecordAlertSeverityType { +ERROR, +INFO, +WARNING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertSourceType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertSourceType.cls new file mode 100644 index 0000000..a883f70 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordAlertSourceType.cls @@ -0,0 +1,5 @@ +global enum RecordAlertSourceType { +BUSINESSRULESENGINE, +EXTERNAL, +INTERNAL +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordCapability.cls new file mode 100644 index 0000000..22b8ab1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordCapability.cls @@ -0,0 +1,11 @@ +global class RecordCapability { + global String recordId; + global String url; + global RecordCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordCapabilityInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordCapabilityInput.cls new file mode 100644 index 0000000..561e489 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordCapabilityInput.cls @@ -0,0 +1,9 @@ +global class RecordCapabilityInput { + global String recordId; + global RecordCapabilityInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordColumnOrder.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordColumnOrder.cls new file mode 100644 index 0000000..dcaeb07 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordColumnOrder.cls @@ -0,0 +1,4 @@ +global enum RecordColumnOrder { +LEFTRIGHT, +TOPDOWN +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordField.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordField.cls new file mode 100644 index 0000000..d96f9a8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordField.cls @@ -0,0 +1,9 @@ +global class RecordField { + global RecordField() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordFieldType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordFieldType.cls new file mode 100644 index 0000000..22f8d00 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordFieldType.cls @@ -0,0 +1,21 @@ +global enum RecordFieldType { +ADDRESS, +BLANK, +BOOLEAN, +COMPOUND, +CREATEDBY, +CURRENCY, +DATE, +DATETIME, +EMAIL, +LASTMODIFIEDBY, +LOCATION, +NAME, +NUMBER, +PERCENT, +PHONE, +PICKLIST, +REFERENCE, +TEXT, +TIME +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordFilterCriteriaFamily.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordFilterCriteriaFamily.cls new file mode 100644 index 0000000..5026b84 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordFilterCriteriaFamily.cls @@ -0,0 +1,3 @@ +global class RecordFilterCriteriaFamily { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordSeoProperties.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordSeoProperties.cls new file mode 100644 index 0000000..7147663 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordSeoProperties.cls @@ -0,0 +1,15 @@ +global class RecordSeoProperties { + global String canonicalUrl; + global Map fields; + global String objectName; + global String recordId; + global String recordName; + global Map translations; + global RecordSeoProperties() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordSnapshot.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordSnapshot.cls new file mode 100644 index 0000000..3da1084 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordSnapshot.cls @@ -0,0 +1,11 @@ +global class RecordSnapshot { + global String id; + global String nameAtSnapshot; + global RecordSnapshot() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordSnapshotAttachment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordSnapshotAttachment.cls new file mode 100644 index 0000000..369bcaa --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordSnapshotAttachment.cls @@ -0,0 +1,10 @@ +global class RecordSnapshotAttachment { + global ConnectApi.RecordView recordView; + global RecordSnapshotAttachment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordSnapshotCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordSnapshotCapability.cls new file mode 100644 index 0000000..686dfce --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordSnapshotCapability.cls @@ -0,0 +1,10 @@ +global class RecordSnapshotCapability { + global ConnectApi.RecordView recordView; + global RecordSnapshotCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordSummary.cls new file mode 100644 index 0000000..0d0bdf7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordSummary.cls @@ -0,0 +1,10 @@ +global class RecordSummary { + global ConnectApi.EntityLabel entityLabel; + global RecordSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordSummaryList.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordSummaryList.cls new file mode 100644 index 0000000..c67e919 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordSummaryList.cls @@ -0,0 +1,11 @@ +global class RecordSummaryList { + global List records; + global String url; + global RecordSummaryList() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordView.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordView.cls new file mode 100644 index 0000000..5f07ca4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordView.cls @@ -0,0 +1,10 @@ +global class RecordView { + global List sections; + global RecordView() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordViewSection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordViewSection.cls new file mode 100644 index 0000000..8312b78 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordViewSection.cls @@ -0,0 +1,14 @@ +global class RecordViewSection { + global Integer columnCount; + global ConnectApi.RecordColumnOrder columnOrder; + global List fields; + global String heading; + global Boolean isCollapsible; + global RecordViewSection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Recordalert.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Recordalert.cls new file mode 100644 index 0000000..8e3491d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Recordalert.cls @@ -0,0 +1,3 @@ +global class Recordalert { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Records.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Records.cls new file mode 100644 index 0000000..f6008b0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Records.cls @@ -0,0 +1,6 @@ +global class Records { + global Object clone() { } + global static ConnectApi.Motif getMotif(String communityId, String idOrPrefix) { } + global static List getMotifBatch(String communityId, List idOrPrefixList) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordsetFilterCriteria.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordsetFilterCriteria.cls new file mode 100644 index 0000000..2f8dc9b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordsetFilterCriteria.cls @@ -0,0 +1,11 @@ +global class RecordsetFilterCriteria { + global String criteriaId; + global List recordIds; + global RecordsetFilterCriteria() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordsetFilterCriteriaCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordsetFilterCriteriaCollection.cls new file mode 100644 index 0000000..4b209ee --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordsetFilterCriteriaCollection.cls @@ -0,0 +1,10 @@ +global class RecordsetFilterCriteriaCollection { + global List recordsetFilters; + global RecordsetFilterCriteriaCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordsetFilterCriteriaInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordsetFilterCriteriaInput.cls new file mode 100644 index 0000000..4014618 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RecordsetFilterCriteriaInput.cls @@ -0,0 +1,12 @@ +global class RecordsetFilterCriteriaInput { + global List criteriaIds; + global Boolean enforceSharing; + global String filteredObjectName; + global List recordIds; + global RecordsetFilterCriteriaInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RedeemVoucherInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RedeemVoucherInput.cls new file mode 100644 index 0000000..133b2a0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RedeemVoucherInput.cls @@ -0,0 +1,10 @@ +global class RedeemVoucherInput { + global String currencyIsoCode; + global Double redeemAmount; + global RedeemVoucherInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RedeemVoucherOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RedeemVoucherOutput.cls new file mode 100644 index 0000000..f877843 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RedeemVoucherOutput.cls @@ -0,0 +1,11 @@ +global class RedeemVoucherOutput { + global String currencyIsoCode; + global Double remainingAmount; + global RedeemVoucherOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Reference.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Reference.cls new file mode 100644 index 0000000..7f52762 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Reference.cls @@ -0,0 +1,11 @@ +global class Reference { + global String id; + global String url; + global Reference() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferenceItemBaseInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferenceItemBaseInput.cls new file mode 100644 index 0000000..6de0943 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferenceItemBaseInput.cls @@ -0,0 +1,30 @@ +global class ReferenceItemBaseInput { + global Double amount; + global Integer billDayOfMonth; + global String billToContactId; + global String billingAccountId; + global ConnectApi.BillingAddressRequest billingAddress; + global ConnectApi.BillingMethodEnum billingMethod; + global String billingScheduleEndDate; + global String billingScheduleStartDate; + global Integer billingStartMonth; + global Integer billingTerm; + global ConnectApi.InvoiceBillingTermUnitEnum billingTermUnit; + global String billingTreatmentId; + global ConnectApi.BillingTypeEnum billingType; + global String currencyIsoCode; + global String paymentTermId; + global ConnectApi.PeriodBoundaryEnum periodBoundary; + global String productId; + global String productName; + global String prorationPolicyId; + global String referenceId; + global String referenceItemId; + global ConnectApi.BillingAddressRequest shippingAddress; + global String taxTreatmentId; + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferenceItemCodeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferenceItemCodeEnum.cls new file mode 100644 index 0000000..c5421b3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferenceItemCodeEnum.cls @@ -0,0 +1,4 @@ +global enum ReferenceItemCodeEnum { +ORDERCHARGE, +ORDERPRODUCT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferenceLineError.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferenceLineError.cls new file mode 100644 index 0000000..c5a07dd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferenceLineError.cls @@ -0,0 +1,11 @@ +global class ReferenceLineError { + global List errors; + global String referenceLineId; + global ReferenceLineError() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferenceRecordField.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferenceRecordField.cls new file mode 100644 index 0000000..886bb44 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferenceRecordField.cls @@ -0,0 +1,10 @@ +global class ReferenceRecordField { + global ConnectApi.RecordSummary reference; + global ReferenceRecordField() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferenceWithDateRecordField.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferenceWithDateRecordField.cls new file mode 100644 index 0000000..649e54a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferenceWithDateRecordField.cls @@ -0,0 +1,11 @@ +global class ReferenceWithDateRecordField { + global Datetime dateValue; + global ConnectApi.RecordSummary reference; + global ReferenceWithDateRecordField() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferencedRefundRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferencedRefundRequest.cls new file mode 100644 index 0000000..1c78b7d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferencedRefundRequest.cls @@ -0,0 +1,14 @@ +global class ReferencedRefundRequest { + global String accountId; + global Double amount; + global String clientContext; + global String comments; + global Datetime effectiveDate; + global ConnectApi.PaymentGroupRequest paymentGroup; + global ReferencedRefundRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferencedRefundResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferencedRefundResponse.cls new file mode 100644 index 0000000..ff463cf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferencedRefundResponse.cls @@ -0,0 +1,14 @@ +global class ReferencedRefundResponse { + global ConnectApi.ErrorResponse error; + global ConnectApi.RefundGatewayResponse gatewayResponse; + global List paymentGatewayLogs; + global ConnectApi.PaymentGroupResponse paymentGroup; + global ConnectApi.RefundResponse refund; + global ReferencedRefundResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferralEventConnect.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferralEventConnect.cls new file mode 100644 index 0000000..b96d359 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferralEventConnect.cls @@ -0,0 +1,3 @@ +global class ReferralEventConnect { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferralEventInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferralEventInput.cls new file mode 100644 index 0000000..fa4f813 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferralEventInput.cls @@ -0,0 +1,21 @@ +global class ReferralEventInput { + global String contactId; + global String email; + global ConnectApi.EventTypeResource eventType; + global String firstName; + global Datetime joiningDate; + global String lastName; + global String orderReferenceId; + global String productId; + global Double purchaseAmount; + global Integer purchaseQuantity; + global Map referralAdditionalAttributes; + global String referralCode; + global Map transactionJournalAdditionalAttributes; + global ReferralEventInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferralEventOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferralEventOutput.cls new file mode 100644 index 0000000..3aae082 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReferralEventOutput.cls @@ -0,0 +1,14 @@ +global class ReferralEventOutput { + global String contactId; + global String referralId; + global String referralStage; + global List transactionJournalIds; + global String voucherId; + global ReferralEventOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RefinementInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RefinementInput.cls new file mode 100644 index 0000000..da3f31d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RefinementInput.cls @@ -0,0 +1,10 @@ +global class RefinementInput { + global ConnectApi.CommerceSearchAttributeType attributeType; + global String nameOrId; + global ConnectApi.CommerceSearchFacetType type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RefundGatewayResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RefundGatewayResponse.cls new file mode 100644 index 0000000..c993f73 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RefundGatewayResponse.cls @@ -0,0 +1,9 @@ +global class RefundGatewayResponse { + global RefundGatewayResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RefundLineApplyRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RefundLineApplyRequest.cls new file mode 100644 index 0000000..c759a11 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RefundLineApplyRequest.cls @@ -0,0 +1,12 @@ +global class RefundLineApplyRequest { + global Double amount; + global String appliedToId; + global String comments; + global Datetime effectiveDate; + global RefundLineApplyRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RefundLineApplyResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RefundLineApplyResponse.cls new file mode 100644 index 0000000..650c924 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RefundLineApplyResponse.cls @@ -0,0 +1,11 @@ +global class RefundLineApplyResponse { + global Datetime appliedDate; + global String id; + global RefundLineApplyResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RefundRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RefundRequest.cls new file mode 100644 index 0000000..960cb1d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RefundRequest.cls @@ -0,0 +1,6 @@ +global class RefundRequest { + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RefundResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RefundResponse.cls new file mode 100644 index 0000000..b797a66 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RefundResponse.cls @@ -0,0 +1,17 @@ +global class RefundResponse { + global String accountId; + global Double amount; + global String currencyIsoCode; + global Datetime effectiveDate; + global String id; + global String refundNumber; + global Datetime requestDate; + global String status; + global RefundResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RelatedFeedPost.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RelatedFeedPost.cls new file mode 100644 index 0000000..2f5ff7d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RelatedFeedPost.cls @@ -0,0 +1,10 @@ +global class RelatedFeedPost { + global Double score; + global String title; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RelatedFeedPostType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RelatedFeedPostType.cls new file mode 100644 index 0000000..e183b43 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RelatedFeedPostType.cls @@ -0,0 +1,6 @@ +global enum RelatedFeedPostType { +ANSWERED, +BESTANSWER, +GENERIC, +UNANSWERED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RelatedFeedPosts.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RelatedFeedPosts.cls new file mode 100644 index 0000000..18e16e2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RelatedFeedPosts.cls @@ -0,0 +1,10 @@ +global class RelatedFeedPosts { + global List relatedFeedPosts; + global RelatedFeedPosts() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RelatedQuestion.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RelatedQuestion.cls new file mode 100644 index 0000000..d6abe76 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RelatedQuestion.cls @@ -0,0 +1,11 @@ +global class RelatedQuestion { + global Boolean hasBestAnswer; + global ConnectApi.InteractionsCapability interactions; + global RelatedQuestion() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReleaseHeldFOCapacityInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReleaseHeldFOCapacityInputRepresentation.cls new file mode 100644 index 0000000..3ee624b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReleaseHeldFOCapacityInputRepresentation.cls @@ -0,0 +1,9 @@ +global class ReleaseHeldFOCapacityInputRepresentation { + global List releaseHeldFOCapacityRequests; + global ReleaseHeldFOCapacityInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReleaseHeldFOCapacityOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReleaseHeldFOCapacityOutputRepresentation.cls new file mode 100644 index 0000000..419e590 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReleaseHeldFOCapacityOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class ReleaseHeldFOCapacityOutputRepresentation { + global List releaseHeldFOCapacityResponses; + global ReleaseHeldFOCapacityOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReleaseHeldFOCapacityRequestInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReleaseHeldFOCapacityRequestInputRepresentation.cls new file mode 100644 index 0000000..6d58f4d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReleaseHeldFOCapacityRequestInputRepresentation.cls @@ -0,0 +1,10 @@ +global class ReleaseHeldFOCapacityRequestInputRepresentation { + global Boolean allOrNothing; + global List capacityRequests; + global ReleaseHeldFOCapacityRequestInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReleaseHeldFOCapacityResponseOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReleaseHeldFOCapacityResponseOutputRepresentation.cls new file mode 100644 index 0000000..1ceef58 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReleaseHeldFOCapacityResponseOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class ReleaseHeldFOCapacityResponseOutputRepresentation { + global List capacityResponses; + global ReleaseHeldFOCapacityResponseOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReopenedByOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReopenedByOutput.cls new file mode 100644 index 0000000..cf0b016 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReopenedByOutput.cls @@ -0,0 +1,10 @@ +global class ReopenedByOutput { + global String username; + global ReopenedByOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReplyIntent.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReplyIntent.cls new file mode 100644 index 0000000..5ca4d23 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReplyIntent.cls @@ -0,0 +1,10 @@ +global class ReplyIntent { + global ConnectApi.ManagedSocialAccount managedSocialAccount; + global ReplyIntent() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReplyIntents.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReplyIntents.cls new file mode 100644 index 0000000..87670fd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReplyIntents.cls @@ -0,0 +1,10 @@ +global class ReplyIntents { + global List replies; + global ReplyIntents() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReplyRecommendationsChannelType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReplyRecommendationsChannelType.cls new file mode 100644 index 0000000..e0e8ed6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReplyRecommendationsChannelType.cls @@ -0,0 +1,3 @@ +global enum ReplyRecommendationsChannelType { +CHAT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReplyRecommendationsMetric.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReplyRecommendationsMetric.cls new file mode 100644 index 0000000..58490da --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReplyRecommendationsMetric.cls @@ -0,0 +1,19 @@ +global class ReplyRecommendationsMetric { + global Integer activeAgentCount; + global Integer agentsEngaged; + global Integer conversationsCount; + global Integer conversationsWithEngagements; + global Datetime metricsDate; + global Integer predictionsCount; + global Integer recommendationsCount; + global Integer recommendationsEditCount; + global Integer recommendationsNotHelpfulCount; + global Integer recommendationsPostCount; + global ReplyRecommendationsMetric() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReplyRecommendationsMetrics.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReplyRecommendationsMetrics.cls new file mode 100644 index 0000000..a0fbdc5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReplyRecommendationsMetrics.cls @@ -0,0 +1,10 @@ +global class ReplyRecommendationsMetrics { + global List replyRecommendationsMetrics; + global ReplyRecommendationsMetrics() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryDirectoryEntryCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryDirectoryEntryCollection.cls new file mode 100644 index 0000000..380d0ec --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryDirectoryEntryCollection.cls @@ -0,0 +1,10 @@ +global class RepositoryDirectoryEntryCollection { + global List directoryEntries; + global RepositoryDirectoryEntryCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryFileDetail.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryFileDetail.cls new file mode 100644 index 0000000..f73d792 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryFileDetail.cls @@ -0,0 +1,9 @@ +global class RepositoryFileDetail { + global RepositoryFileDetail() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryFileSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryFileSummary.cls new file mode 100644 index 0000000..569bf05 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryFileSummary.cls @@ -0,0 +1,9 @@ +global class RepositoryFileSummary { + global RepositoryFileSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryFolderDetail.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryFolderDetail.cls new file mode 100644 index 0000000..63ded43 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryFolderDetail.cls @@ -0,0 +1,9 @@ +global class RepositoryFolderDetail { + global RepositoryFolderDetail() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryFolderItem.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryFolderItem.cls new file mode 100644 index 0000000..6970830 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryFolderItem.cls @@ -0,0 +1,12 @@ +global class RepositoryFolderItem { + global ConnectApi.RepositoryFileSummary file; + global ConnectApi.RepositoryFolderSummary folder; + global ConnectApi.FolderItemType type; + global RepositoryFolderItem() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryFolderItemsCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryFolderItemsCollection.cls new file mode 100644 index 0000000..01e4a26 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryFolderItemsCollection.cls @@ -0,0 +1,13 @@ +global class RepositoryFolderItemsCollection { + global String currentPageUrl; + global List items; + global String nextPageUrl; + global String previousPageUrl; + global RepositoryFolderItemsCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryFolderSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryFolderSummary.cls new file mode 100644 index 0000000..b093cde --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryFolderSummary.cls @@ -0,0 +1,9 @@ +global class RepositoryFolderSummary { + global RepositoryFolderSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryGroupSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryGroupSummary.cls new file mode 100644 index 0000000..dd76e6d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryGroupSummary.cls @@ -0,0 +1,11 @@ +global class RepositoryGroupSummary { + global ConnectApi.ContentHubGroupType groupType; + global String name; + global RepositoryGroupSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryPermissionTypeCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryPermissionTypeCollection.cls new file mode 100644 index 0000000..0b5e868 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryPermissionTypeCollection.cls @@ -0,0 +1,10 @@ +global class RepositoryPermissionTypeCollection { + global List permissionTypes; + global RepositoryPermissionTypeCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryUserSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryUserSummary.cls new file mode 100644 index 0000000..0be1014 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RepositoryUserSummary.cls @@ -0,0 +1,11 @@ +global class RepositoryUserSummary { + global String firstName; + global String lastName; + global RepositoryUserSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Repricing.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Repricing.cls new file mode 100644 index 0000000..00569dc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Repricing.cls @@ -0,0 +1,3 @@ +global class Repricing { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Reputation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Reputation.cls new file mode 100644 index 0000000..964d51b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Reputation.cls @@ -0,0 +1,12 @@ +global class Reputation { + global ConnectApi.ReputationLevel reputationLevel; + global Double reputationPoints; + global String url; + global Reputation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReputationLevel.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReputationLevel.cls new file mode 100644 index 0000000..92932e6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReputationLevel.cls @@ -0,0 +1,12 @@ +global class ReputationLevel { + global String levelImageUrl; + global String levelName; + global Integer levelNumber; + global ReputationLevel() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RequestHeader.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RequestHeader.cls new file mode 100644 index 0000000..7c8a97a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RequestHeader.cls @@ -0,0 +1,11 @@ +global class RequestHeader { + global String name; + global String value; + global RequestHeader() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RequestHeaderInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RequestHeaderInput.cls new file mode 100644 index 0000000..88884df --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RequestHeaderInput.cls @@ -0,0 +1,10 @@ +global class RequestHeaderInput { + global String name; + global String value; + global RequestHeaderInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RequestingPractitionerOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RequestingPractitionerOutput.cls new file mode 100644 index 0000000..7ab1204 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RequestingPractitionerOutput.cls @@ -0,0 +1,11 @@ +global class RequestingPractitionerOutput { + global String healthCareProviderId; + global String requestingPractitionerNpi; + global RequestingPractitionerOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ResourceLinkSegment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ResourceLinkSegment.cls new file mode 100644 index 0000000..e299d40 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ResourceLinkSegment.cls @@ -0,0 +1,10 @@ +global class ResourceLinkSegment { + global String url; + global ResourceLinkSegment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ResponseSuggestion.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ResponseSuggestion.cls new file mode 100644 index 0000000..fd9499a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ResponseSuggestion.cls @@ -0,0 +1,11 @@ +global class ResponseSuggestion { + global String response; + global Double score; + global ConnectApi.EinsteinResponseType type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ResponseSuggestions.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ResponseSuggestions.cls new file mode 100644 index 0000000..fcfc2cf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ResponseSuggestions.cls @@ -0,0 +1,14 @@ +global class ResponseSuggestions { + global Boolean isError; + global String message; + global String modelStatus; + global String requestId; + global List responseSuggestions; + global ResponseSuggestions() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnItemsInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnItemsInputRepresentation.cls new file mode 100644 index 0000000..3b91140 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnItemsInputRepresentation.cls @@ -0,0 +1,11 @@ +global class ReturnItemsInputRepresentation { + global List returnOrderItemDeliveryCharges; + global List returnOrderItemFees; + global List returnOrderItems; + global ReturnItemsInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnItemsOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnItemsOutputRepresentation.cls new file mode 100644 index 0000000..6f5e719 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnItemsOutputRepresentation.cls @@ -0,0 +1,12 @@ +global class ReturnItemsOutputRepresentation { + global String changeOrderId; + global String feeChangeOrderId; + global List returnLineItemSplits; + global ReturnItemsOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnOrder.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnOrder.cls new file mode 100644 index 0000000..be8d449 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnOrder.cls @@ -0,0 +1,3 @@ +global class ReturnOrder { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnOrderInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnOrderInputRepresentation.cls new file mode 100644 index 0000000..7a12c0e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnOrderInputRepresentation.cls @@ -0,0 +1,12 @@ +global class ReturnOrderInputRepresentation { + global String orderSummaryId; + global String returnOrderLifeCycleType; + global List returnOrderLineItems; + global String status; + global ReturnOrderInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnOrderItemDeliveryChargeInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnOrderItemDeliveryChargeInputRepresentation.cls new file mode 100644 index 0000000..6320518 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnOrderItemDeliveryChargeInputRepresentation.cls @@ -0,0 +1,9 @@ +global class ReturnOrderItemDeliveryChargeInputRepresentation { + global String returnOrderLineItemId; + global ReturnOrderItemDeliveryChargeInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnOrderItemFeeInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnOrderItemFeeInputRepresentation.cls new file mode 100644 index 0000000..8440ecc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnOrderItemFeeInputRepresentation.cls @@ -0,0 +1,11 @@ +global class ReturnOrderItemFeeInputRepresentation { + global Double quantityReturned; + global Double quantityToCancel; + global String returnOrderLineItemId; + global ReturnOrderItemFeeInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnOrderItemInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnOrderItemInputRepresentation.cls new file mode 100644 index 0000000..8a3f426 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnOrderItemInputRepresentation.cls @@ -0,0 +1,14 @@ +global class ReturnOrderItemInputRepresentation { + global Double quantityReceived; + global Double quantityRejected; + global Double quantityReturned; + global Double quantityToCancel; + global String reasonForRejection; + global String returnOrderLineItemId; + global ReturnOrderItemInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnOrderItemSplitLineOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnOrderItemSplitLineOutputRepresentation.cls new file mode 100644 index 0000000..242a4e0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnOrderItemSplitLineOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class ReturnOrderItemSplitLineOutputRepresentation { + global String newReturnOrderItemId; + global String originalReturnOrderItemId; + global ReturnOrderItemSplitLineOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnOrderLineItemFeeInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnOrderLineItemFeeInputRepresentation.cls new file mode 100644 index 0000000..ce82b93 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnOrderLineItemFeeInputRepresentation.cls @@ -0,0 +1,13 @@ +global class ReturnOrderLineItemFeeInputRepresentation { + global Double amount; + global String amountType; + global String description; + global String product2Id; + global String reason; + global ReturnOrderLineItemFeeInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnOrderLineItemInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnOrderLineItemInputRepresentation.cls new file mode 100644 index 0000000..5b3fc02 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnOrderLineItemInputRepresentation.cls @@ -0,0 +1,14 @@ +global class ReturnOrderLineItemInputRepresentation { + global Boolean canReduceShipping; + global String orderItemSummaryId; + global Double quantityExpected; + global Double quantityReceived; + global String reasonForReturn; + global List returnOrderLineItemFees; + global ReturnOrderLineItemInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnOrderOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnOrderOutputRepresentation.cls new file mode 100644 index 0000000..a83d5af --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ReturnOrderOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class ReturnOrderOutputRepresentation { + global String returnOrderId; + global ReturnOrderOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RevenueAddressInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RevenueAddressInputRepresentation.cls new file mode 100644 index 0000000..e73a982 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RevenueAddressInputRepresentation.cls @@ -0,0 +1,15 @@ +global class RevenueAddressInputRepresentation { + global String city; + global String country; + global Double latitude; + global Double longitude; + global String postalCode; + global String state; + global String street; + global RevenueAddressInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RevenueAsyncLineLevelOutputResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RevenueAsyncLineLevelOutputResponse.cls new file mode 100644 index 0000000..f825b39 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RevenueAsyncLineLevelOutputResponse.cls @@ -0,0 +1,15 @@ +global class RevenueAsyncLineLevelOutputResponse { + global List errors; + global List referenceLineErrorResults; + global String referenceLineType; + global String requestIdentifier; + global String statusURL; + global Boolean success; + global RevenueAsyncLineLevelOutputResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RevenueAsyncRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RevenueAsyncRepresentation.cls new file mode 100644 index 0000000..8e67316 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RevenueAsyncRepresentation.cls @@ -0,0 +1,13 @@ +global class RevenueAsyncRepresentation { + global List errors; + global String requestIdentifier; + global String statusURL; + global Boolean success; + global RevenueAsyncRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RevenueElementRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RevenueElementRequest.cls new file mode 100644 index 0000000..5ed62db --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RevenueElementRequest.cls @@ -0,0 +1,25 @@ +global class RevenueElementRequest { + global Double amount; + global String currencyIsoCode; + global Datetime endDate; + global String externalReference; + global String externalReferenceDataSource; + global String financeBookId; + global Datetime fullRecognitionDate; + global String legalEntityId; + global String matchingId; + global String referenceEntityItem; + global Double revenueAllocationAmount; + global Double revenueExpectedAmount; + global Double revenueLiabilityAmount; + global String revenueRecognitionPolicyId; + global String revenueRecognitionTreatmentId; + global ConnectApi.RevenueRecognitionType revenueRecognitionType; + global Datetime startDate; + global RevenueElementRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RevenueElementResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RevenueElementResult.cls new file mode 100644 index 0000000..1f2bd21 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RevenueElementResult.cls @@ -0,0 +1,13 @@ +global class RevenueElementResult { + global List errors; + global Boolean isSuccess; + global String message; + global List revenueElementIds; + global RevenueElementResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RevenueRecognition.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RevenueRecognition.cls new file mode 100644 index 0000000..7a7e95a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RevenueRecognition.cls @@ -0,0 +1,3 @@ +global class RevenueRecognition { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RevenueRecognitionRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RevenueRecognitionRepresentation.cls new file mode 100644 index 0000000..922664e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RevenueRecognitionRepresentation.cls @@ -0,0 +1,10 @@ +global class RevenueRecognitionRepresentation { + global List revenueRecognitionRepresentations; + global RevenueRecognitionRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RevenueRecognitionType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RevenueRecognitionType.cls new file mode 100644 index 0000000..377fe75 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/RevenueRecognitionType.cls @@ -0,0 +1,4 @@ +global enum RevenueRecognitionType { +PROJECTION, +RECOGNITION +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Routing.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Routing.cls new file mode 100644 index 0000000..c43fe25 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Routing.cls @@ -0,0 +1,3 @@ +global class Routing { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SaleApiPaymentMethodRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SaleApiPaymentMethodRequest.cls new file mode 100644 index 0000000..583fccb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SaleApiPaymentMethodRequest.cls @@ -0,0 +1,9 @@ +global class SaleApiPaymentMethodRequest { + global ConnectApi.CardPaymentMethodRequest cardPaymentMethod; + global SaleApiPaymentMethodRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SaleGatewayResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SaleGatewayResponse.cls new file mode 100644 index 0000000..560293d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SaleGatewayResponse.cls @@ -0,0 +1,9 @@ +global class SaleGatewayResponse { + global SaleGatewayResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SaleRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SaleRequest.cls new file mode 100644 index 0000000..0d09378 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SaleRequest.cls @@ -0,0 +1,16 @@ +global class SaleRequest { + global String accountId; + global Double amount; + global String comments; + global String currencyIsoCode; + global Datetime effectiveDate; + global String paymentGatewayId; + global ConnectApi.PaymentGroupRequest paymentGroup; + global ConnectApi.SaleApiPaymentMethodRequest paymentMethod; + global SaleRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SaleResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SaleResponse.cls new file mode 100644 index 0000000..9055d2a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SaleResponse.cls @@ -0,0 +1,15 @@ +global class SaleResponse { + global ConnectApi.ErrorResponse error; + global ConnectApi.SaleGatewayResponse gatewayResponse; + global ConnectApi.PaymentResponse payment; + global List paymentGatewayLogs; + global ConnectApi.PaymentGroupResponse paymentGroup; + global ConnectApi.PaymentMethodResponse paymentMethod; + global SaleResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SalesforceInbox.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SalesforceInbox.cls new file mode 100644 index 0000000..1dc9b84 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SalesforceInbox.cls @@ -0,0 +1,3 @@ +global class SalesforceInbox { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SaqlQueryInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SaqlQueryInput.cls new file mode 100644 index 0000000..8a0b858 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SaqlQueryInput.cls @@ -0,0 +1,14 @@ +global class SaqlQueryInput { + global ConnectApi.AnalyticsLicenseAttributes licenseAttributes; + global ConnectApi.SaqlQueryMetadata metadata; + global String name; + global String query; + global ConnectApi.QueryLanguage queryLanguage; + global String timezone; + global SaqlQueryInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SaqlQueryMetadata.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SaqlQueryMetadata.cls new file mode 100644 index 0000000..67801bf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SaqlQueryMetadata.cls @@ -0,0 +1,13 @@ +global class SaqlQueryMetadata { + global String originalQueryHash; + global Integer queryId; + global Integer querySequenceId; + global String uiSessionId; + global String uiTabId; + global SaqlQueryMetadata() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ScheduledRecommendation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ScheduledRecommendation.cls new file mode 100644 index 0000000..f66d922 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ScheduledRecommendation.cls @@ -0,0 +1,16 @@ +global class ScheduledRecommendation { + global ConnectApi.RecommendationChannel channel; + global Boolean enabled; + global String id; + global Integer rank; + global String recommendationAudienceId; + global ConnectApi.RecommendationDefinition recommendationDefinitionRepresentation; + global String url; + global ScheduledRecommendation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ScheduledRecommendationInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ScheduledRecommendationInput.cls new file mode 100644 index 0000000..6812a73 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ScheduledRecommendationInput.cls @@ -0,0 +1,13 @@ +global class ScheduledRecommendationInput { + global ConnectApi.RecommendationChannel channel; + global Boolean enabled; + global Integer rank; + global String recommendationAudienceId; + global String recommendationDefinitionId; + global ScheduledRecommendationInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ScheduledRecommendationPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ScheduledRecommendationPage.cls new file mode 100644 index 0000000..531ac73 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ScheduledRecommendationPage.cls @@ -0,0 +1,11 @@ +global class ScheduledRecommendationPage { + global List scheduledRecommendations; + global String url; + global ScheduledRecommendationPage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Scope.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Scope.cls new file mode 100644 index 0000000..d827be0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Scope.cls @@ -0,0 +1,11 @@ +global class Scope { + global String name; + global String value; + global Scope() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchCategory.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchCategory.cls new file mode 100644 index 0000000..58fd9ee --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchCategory.cls @@ -0,0 +1,12 @@ +global class SearchCategory { + global ConnectApi.ProductCategoryData category; + global List children; + global Long productCount; + global SearchCategory() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchFacet.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchFacet.cls new file mode 100644 index 0000000..63ad3bd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchFacet.cls @@ -0,0 +1,14 @@ +global class SearchFacet { + global ConnectApi.CommerceSearchAttributeType attributeType; + global String displayName; + global Integer displayRank; + global ConnectApi.CommerceSearchFacetDisplayType displayType; + global ConnectApi.CommerceSearchFacetType facetType; + global String nameOrId; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchFieldRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchFieldRepresentation.cls new file mode 100644 index 0000000..83ad78f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchFieldRepresentation.cls @@ -0,0 +1,11 @@ +global class SearchFieldRepresentation { + global String developerName; + global String value; + global SearchFieldRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchFilterRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchFilterRepresentation.cls new file mode 100644 index 0000000..df23b94 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchFilterRepresentation.cls @@ -0,0 +1,10 @@ +global class SearchFilterRepresentation { + global String developerName; + global String value; + global SearchFilterRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchInput.cls new file mode 100644 index 0000000..301a3ef --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchInput.cls @@ -0,0 +1,11 @@ +global class SearchInput { + global List searchFilters; + global String searchTerm; + global ConnectApi.VerificationContextInput verificationContext; + global SearchInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchOutputRepresentation.cls new file mode 100644 index 0000000..b8bc69f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchOutputRepresentation.cls @@ -0,0 +1,13 @@ +global class SearchOutputRepresentation { + global Boolean isSuccess; + global String message; + global List searchResult; + global List searchResultHeader; + global SearchOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchResultHeaderRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchResultHeaderRepresentation.cls new file mode 100644 index 0000000..9ffea64 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchResultHeaderRepresentation.cls @@ -0,0 +1,12 @@ +global class SearchResultHeaderRepresentation { + global String dataType; + global String developerName; + global String displayLabel; + global SearchResultHeaderRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchResultRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchResultRepresentation.cls new file mode 100644 index 0000000..56f69a7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchResultRepresentation.cls @@ -0,0 +1,10 @@ +global class SearchResultRepresentation { + global List searchFields; + global SearchResultRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchResultRulesCollectionOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchResultRulesCollectionOutputRepresentation.cls new file mode 100644 index 0000000..eb7ac54 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchResultRulesCollectionOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class SearchResultRulesCollectionOutputRepresentation { + global List searchRules; + global SearchResultRulesCollectionOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchResultsRule.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchResultsRule.cls new file mode 100644 index 0000000..cf1d789 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchResultsRule.cls @@ -0,0 +1,13 @@ +global class SearchResultsRule { + global List locales; + global List ruleDefinition; + global String searchResultsRuleId; + global ConnectApi.SearchResultsRuleTypeEnum type; + global SearchResultsRule() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchResultsRuleTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchResultsRuleTypeEnum.cls new file mode 100644 index 0000000..b4cc535 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchResultsRuleTypeEnum.cls @@ -0,0 +1,3 @@ +global enum SearchResultsRuleTypeEnum { +INCLUDE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchSuggestion.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchSuggestion.cls new file mode 100644 index 0000000..d1739a2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchSuggestion.cls @@ -0,0 +1,9 @@ +global class SearchSuggestion { + global SearchSuggestion() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchSuggestionWithProductSuggestion.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchSuggestionWithProductSuggestion.cls new file mode 100644 index 0000000..2eb2d58 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SearchSuggestionWithProductSuggestion.cls @@ -0,0 +1,10 @@ +global class SearchSuggestionWithProductSuggestion { + global List suggestedProducts; + global SearchSuggestionWithProductSuggestion() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SegmentType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SegmentType.cls new file mode 100644 index 0000000..520ceeb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SegmentType.cls @@ -0,0 +1,4 @@ +global enum SegmentType { +DBT, +LOOKALIKE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SelectedSearchResultInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SelectedSearchResultInput.cls new file mode 100644 index 0000000..e4046a2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SelectedSearchResultInput.cls @@ -0,0 +1,11 @@ +global class SelectedSearchResultInput { + global String objectName; + global String selectedRecordId; + global List selectedRecordObject; + global SelectedSearchResultInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SelectedSearchResultOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SelectedSearchResultOutputRepresentation.cls new file mode 100644 index 0000000..edabf79 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SelectedSearchResultOutputRepresentation.cls @@ -0,0 +1,12 @@ +global class SelectedSearchResultOutputRepresentation { + global String objectName; + global String selectedRecordId; + global List selectedRecordObject; + global SelectedSearchResultOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SelectedVerifiedResultInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SelectedVerifiedResultInput.cls new file mode 100644 index 0000000..154c7fd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SelectedVerifiedResultInput.cls @@ -0,0 +1,9 @@ +global class SelectedVerifiedResultInput { + global List verifiedDetails; + global SelectedVerifiedResultInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SelectedVerifiedResultOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SelectedVerifiedResultOutputRepresentation.cls new file mode 100644 index 0000000..787c21f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SelectedVerifiedResultOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class SelectedVerifiedResultOutputRepresentation { + global List verifiedDetails; + global SelectedVerifiedResultOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SellingModelType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SellingModelType.cls new file mode 100644 index 0000000..74a6f38 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SellingModelType.cls @@ -0,0 +1,5 @@ +global enum SellingModelType { +EVERGREEN, +ONETIME, +TERMDEFINED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SemanticSearchQueryInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SemanticSearchQueryInput.cls new file mode 100644 index 0000000..85ca532 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SemanticSearchQueryInput.cls @@ -0,0 +1,9 @@ +global class SemanticSearchQueryInput { + global String query; + global SemanticSearchQueryInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SequenceOrderPaymentSummaryInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SequenceOrderPaymentSummaryInputRepresentation.cls new file mode 100644 index 0000000..069b83e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SequenceOrderPaymentSummaryInputRepresentation.cls @@ -0,0 +1,10 @@ +global class SequenceOrderPaymentSummaryInputRepresentation { + global Double amount; + global String orderPaymentSummaryId; + global SequenceOrderPaymentSummaryInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SequenceVerificationInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SequenceVerificationInput.cls new file mode 100644 index 0000000..bbbfd12 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SequenceVerificationInput.cls @@ -0,0 +1,13 @@ +global class SequenceVerificationInput { + global String developerName; + global String fieldDeveloperName; + global String inputValue; + global String selectedRecordId; + global String verificationToken; + global SequenceVerificationInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SequenceVerificationRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SequenceVerificationRepresentation.cls new file mode 100644 index 0000000..dd54e8a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SequenceVerificationRepresentation.cls @@ -0,0 +1,23 @@ +global class SequenceVerificationRepresentation { + global String developerName; + global String fieldDataType; + global String fieldDeveloperName; + global String fieldType; + global Boolean finalVerification; + global Boolean isInput; + global Boolean isVerified; + global String label; + global Integer optionalVerifications; + global Integer requiredVerifications; + global Integer retryCount; + global String selectedRecordId; + global ConnectApi.ErrorResponseRepresentation status; + global String verificationToken; + global SequenceVerificationRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceAppointmentInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceAppointmentInput.cls new file mode 100644 index 0000000..ccecabe --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceAppointmentInput.cls @@ -0,0 +1,26 @@ +global class ServiceAppointmentInput { + global String additionalInformation; + global String appointmentType; + global String city; + global String comments; + global String contactId; + global String country; + global String description; + global String engagementChannelTypeId; + global List extendedFields; + global String parentRecordId; + global String postalCode; + global Datetime schedEndTime; + global Datetime schedStartTime; + global String serviceTerritoryId; + global String state; + global String street; + global String subject; + global String workTypeId; + global ServiceAppointmentInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceAppointmentOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceAppointmentOutput.cls new file mode 100644 index 0000000..717ca43 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceAppointmentOutput.cls @@ -0,0 +1,10 @@ +global class ServiceAppointmentOutput { + global ConnectApi.ServiceAppointmentResult result; + global ServiceAppointmentOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceAppointmentResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceAppointmentResult.cls new file mode 100644 index 0000000..cbd1f12 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceAppointmentResult.cls @@ -0,0 +1,12 @@ +global class ServiceAppointmentResult { + global List assignedResourceIds; + global String parentRecordId; + global String serviceAppointmentId; + global ServiceAppointmentResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceCatalogFrequentActionsOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceCatalogFrequentActionsOutput.cls new file mode 100644 index 0000000..be481e0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceCatalogFrequentActionsOutput.cls @@ -0,0 +1,11 @@ +global class ServiceCatalogFrequentActionsOutput { + global List dynamicActions; + global List staticActions; + global ServiceCatalogFrequentActionsOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceCatalogItemAttributes.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceCatalogItemAttributes.cls new file mode 100644 index 0000000..b675f2d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceCatalogItemAttributes.cls @@ -0,0 +1,10 @@ +global class ServiceCatalogItemAttributes { + global Map data; + global ServiceCatalogItemAttributes() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceCatalogItemsFetchOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceCatalogItemsFetchOutput.cls new file mode 100644 index 0000000..691bc83 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceCatalogItemsFetchOutput.cls @@ -0,0 +1,12 @@ +global class ServiceCatalogItemsFetchOutput { + global List actions; + global ConnectApi.ServiceCatalogFrequentActionsOutput frequentActions; + global ConnectApi.EngagementStatusOutput status; + global ServiceCatalogItemsFetchOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceCatalogItemsOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceCatalogItemsOutput.cls new file mode 100644 index 0000000..3de0096 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceCatalogItemsOutput.cls @@ -0,0 +1,14 @@ +global class ServiceCatalogItemsOutput { + global Object actionDefinition; + global String actionDescription; + global String actionId; + global String actionLabel; + global String actionType; + global ServiceCatalogItemsOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceCatalogStaticActionsOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceCatalogStaticActionsOutput.cls new file mode 100644 index 0000000..f541d04 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceCatalogStaticActionsOutput.cls @@ -0,0 +1,12 @@ +global class ServiceCatalogStaticActionsOutput { + global String actionId; + global String businessName; + global Integer order; + global ServiceCatalogStaticActionsOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceEinsteinAppType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceEinsteinAppType.cls new file mode 100644 index 0000000..b9dd31b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceEinsteinAppType.cls @@ -0,0 +1,7 @@ +global enum ServiceEinsteinAppType { +ARTICLERECOMMENDATION, +FAQ, +REPLYRECOMMENDATION, +USECASEEXPLORER, +UTTERANCERECOMMENDATION +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceEinsteinModelManagement.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceEinsteinModelManagement.cls new file mode 100644 index 0000000..3aa2500 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceEinsteinModelManagement.cls @@ -0,0 +1,4 @@ +global enum ServiceEinsteinModelManagement { +STARTDATAGENERATION, +STARTTRAINING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceEinsteinModelTrainingErrorCode.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceEinsteinModelTrainingErrorCode.cls new file mode 100644 index 0000000..20947d1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceEinsteinModelTrainingErrorCode.cls @@ -0,0 +1,4 @@ +global enum ServiceEinsteinModelTrainingErrorCode { +NOTENOUGHDATA, +UNKNOWN +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceEinsteinModelTrainingStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceEinsteinModelTrainingStatus.cls new file mode 100644 index 0000000..6b3b549 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceEinsteinModelTrainingStatus.cls @@ -0,0 +1,11 @@ +global enum ServiceEinsteinModelTrainingStatus { +COMPLETED, +DATAGENERATIONCOMPLETED, +DATAGENERATIONFAILED, +DATAGENERATIONINPROGRESS, +FAILED, +INPROGRESS, +NOMODEL, +NOTSTARTED, +SKIPPED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceEinsteinReadinessCheckType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceEinsteinReadinessCheckType.cls new file mode 100644 index 0000000..54c793b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceEinsteinReadinessCheckType.cls @@ -0,0 +1,3 @@ +global enum ServiceEinsteinReadinessCheckType { +C2C_ENABLEMENT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceProcessRecordRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceProcessRecordRepresentation.cls new file mode 100644 index 0000000..893da61 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceProcessRecordRepresentation.cls @@ -0,0 +1,14 @@ +global class ServiceProcessRecordRepresentation { + global ConnectApi.ServiceCatalogItemAttributes attributes; + global String caseId; + global String caseNumber; + global String svcCatalogItemDefApiName; + global String svcCatalogRequestId; + global ServiceProcessRecordRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceProcessRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceProcessRepresentation.cls new file mode 100644 index 0000000..3a771f1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceProcessRepresentation.cls @@ -0,0 +1,13 @@ +global class ServiceProcessRepresentation { + global String caseId; + global String caseNumber; + global String caseStatus; + global String svcCatalogRequestId; + global ServiceProcessRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceProcessRequestInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceProcessRequestInputRepresentation.cls new file mode 100644 index 0000000..5b9c861 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServiceProcessRequestInputRepresentation.cls @@ -0,0 +1,12 @@ +global class ServiceProcessRequestInputRepresentation { + global Map attributes; + global Map caseInfo; + global List documentInfo; + global String svcCatalogItemDefApiName; + global ServiceProcessRequestInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServicingFacilityOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServicingFacilityOutput.cls new file mode 100644 index 0000000..219d60e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServicingFacilityOutput.cls @@ -0,0 +1,11 @@ +global class ServicingFacilityOutput { + global String servicingFacilityId; + global String servicingFacilityNpi; + global ServicingFacilityOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServicingPractitionerOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServicingPractitionerOutput.cls new file mode 100644 index 0000000..8b38117 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ServicingPractitionerOutput.cls @@ -0,0 +1,11 @@ +global class ServicingPractitionerOutput { + global String healthCareProviderId; + global String servicingPractitionerNpi; + global ServicingPractitionerOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SetupCallResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SetupCallResult.cls new file mode 100644 index 0000000..c82cdd5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SetupCallResult.cls @@ -0,0 +1,13 @@ +global class SetupCallResult { + global String errorMessage; + global Boolean isModerator; + global Boolean isSuccess; + global ConnectApi.NotifyAccessResult notifyAccess; + global SetupCallResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ShareRelationshipArrayRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ShareRelationshipArrayRepresentation.cls new file mode 100644 index 0000000..76c9a3a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ShareRelationshipArrayRepresentation.cls @@ -0,0 +1,10 @@ +global class ShareRelationshipArrayRepresentation { + global List path; + global ShareRelationshipArrayRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ShareRelationshipOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ShareRelationshipOutput.cls new file mode 100644 index 0000000..6d57aad --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ShareRelationshipOutput.cls @@ -0,0 +1,12 @@ +global class ShareRelationshipOutput { + global String developerName; + global String id; + global String type; + global ShareRelationshipOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Sharing.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Sharing.cls new file mode 100644 index 0000000..3cfef05 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Sharing.cls @@ -0,0 +1,6 @@ +global class Sharing { + global Object clone() { } + global static ConnectApi.RecordAccessDetailRepresentation getRecordAccessDetail(String recordId, String userId, Integer maxReasons, Boolean displayRelationshipPaths) { } + global static ConnectApi.RecordAccessDetailRepresentation getRecordAccessDetail(String recordId, String userId, Integer maxReasons) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SharingReasonRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SharingReasonRepresentation.cls new file mode 100644 index 0000000..e110e73 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SharingReasonRepresentation.cls @@ -0,0 +1,14 @@ +global class SharingReasonRepresentation { + global String accessLevel; + global String reasonForAccess; + global String relationship; + global List relationshipPaths; + global ConnectApi.UserOrGroupRepresentation shareRecipient; + global SharingReasonRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ShiftsFromPattern.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ShiftsFromPattern.cls new file mode 100644 index 0000000..23bc2d7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ShiftsFromPattern.cls @@ -0,0 +1,13 @@ +global class ShiftsFromPattern { + global Integer count; + global ConnectApi.ShiftsFromPatternError error; + global Boolean isSuccess; + global List recordIds; + global ShiftsFromPattern() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ShiftsFromPatternError.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ShiftsFromPatternError.cls new file mode 100644 index 0000000..cf987e0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ShiftsFromPatternError.cls @@ -0,0 +1,12 @@ +global class ShiftsFromPatternError { + global String code; + global String invalidServiceResourceId; + global String message; + global ShiftsFromPatternError() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ShiftsFromPatternInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ShiftsFromPatternInput.cls new file mode 100644 index 0000000..d365e05 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ShiftsFromPatternInput.cls @@ -0,0 +1,15 @@ +global class ShiftsFromPatternInput { + global String schedulingEndDate; + global Integer schedulingOccurrences; + global String schedulingStartDate; + global String serviceResourceId; + global List serviceResourceIdList; + global String serviceTerritoryId; + global String shiftStatus; + global ShiftsFromPatternInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SimulationContextInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SimulationContextInput.cls new file mode 100644 index 0000000..c33f0ce --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SimulationContextInput.cls @@ -0,0 +1,10 @@ +global class SimulationContextInput { + global String name; + global Object value; + global SimulationContextInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SiteSearchItem.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SiteSearchItem.cls new file mode 100644 index 0000000..bbec543 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SiteSearchItem.cls @@ -0,0 +1,15 @@ +global class SiteSearchItem { + global String contentReference; + global String contentTypeDeveloperName; + global String highlightedSnippet; + global String id; + global ConnectApi.ConnectSitesPageType pageType; + global String title; + global SiteSearchItem() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SiteSearchResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SiteSearchResult.cls new file mode 100644 index 0000000..de7f939 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SiteSearchResult.cls @@ -0,0 +1,19 @@ +global class SiteSearchResult { + global String currentPageToken; + global String currentPageUrl; + global List items; + global String language; + global String nextPageToken; + global String nextPageUrl; + global Integer pageSize; + global String previousPageToken; + global String previousPageUrl; + global Integer totalItems; + global SiteSearchResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Sites.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Sites.cls new file mode 100644 index 0000000..d1d48eb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Sites.cls @@ -0,0 +1,5 @@ +global class Sites { + global Object clone() { } + global static ConnectApi.SiteSearchResult searchSite(String siteId, String queryTerm, String pageToken, Integer pageSize, String language) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SlotStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SlotStatus.cls new file mode 100644 index 0000000..29251f0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SlotStatus.cls @@ -0,0 +1,5 @@ +global enum SlotStatus { +SERVICENOTAVAILABLE, +SLOTAVAILABLE, +SLOTNOTAVAILABLE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartAnswer.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartAnswer.cls new file mode 100644 index 0000000..a4dcbad --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartAnswer.cls @@ -0,0 +1,13 @@ +global class SmartAnswer { + global String answer; + global String id; + global Integer score; + global ConnectApi.EinsteinAnswerType type; + global String url; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartAnswers.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartAnswers.cls new file mode 100644 index 0000000..ef1d0c8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartAnswers.cls @@ -0,0 +1,10 @@ +global class SmartAnswers { + global List answers; + global SmartAnswers() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModel.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModel.cls new file mode 100644 index 0000000..5cb0ba6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModel.cls @@ -0,0 +1,31 @@ +global class SmartDataDiscoveryAIModel { + global String coefficientsUrl; + global ConnectApi.SmartDataDiscoveryUser createdBy; + global Datetime createdDate; + global String description; + global String id; + global ConnectApi.AbstractSmartDataDiscoveryAIModelSource input; + global String label; + global ConnectApi.SmartDataDiscoveryUser lastModifiedBy; + global Datetime lastModifiedDate; + global String metricsUrl; + global Object modelData; + global List modelFields; + global String modelFileUrl; + global ConnectApi.AbstractSmartDataDiscoveryModelRuntime modelRuntime; + global String name; + global String namespace; + global String predictedField; + global ConnectApi.AbstractSmartDataDiscoveryPredictionProperty predictionProperty; + global ConnectApi.SmartDataDiscoveryAIModelStatus status; + global List transformations; + global String url; + global Map validationResult; + global SmartDataDiscoveryAIModel() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelClassificationMetrics.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelClassificationMetrics.cls new file mode 100644 index 0000000..5ffd437 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelClassificationMetrics.cls @@ -0,0 +1,16 @@ +global class SmartDataDiscoveryAIModelClassificationMetrics { + global Double auc; + global Double falseNegativeRate; + global Double falsePositiveRate; + global Double gini; + global Double mcc; + global Double trueNegativeRate; + global Double truePositiveRate; + global SmartDataDiscoveryAIModelClassificationMetrics() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelCoefficientCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelCoefficientCollection.cls new file mode 100644 index 0000000..4a586ca --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelCoefficientCollection.cls @@ -0,0 +1,13 @@ +global class SmartDataDiscoveryAIModelCoefficientCollection { + global List coefficients; + global String nextPageUrl; + global Integer totalSize; + global String url; + global SmartDataDiscoveryAIModelCoefficientCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelCollection.cls new file mode 100644 index 0000000..23b1a1e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelCollection.cls @@ -0,0 +1,13 @@ +global class SmartDataDiscoveryAIModelCollection { + global List models; + global String nextPageUrl; + global Integer totalSize; + global String url; + global SmartDataDiscoveryAIModelCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelCollectionSortOrderType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelCollectionSortOrderType.cls new file mode 100644 index 0000000..9f77b19 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelCollectionSortOrderType.cls @@ -0,0 +1,8 @@ +global enum SmartDataDiscoveryAIModelCollectionSortOrderType { +CREATEDDATE, +DESCRIPTION, +NAME, +PREDICTIONFIELDNAME, +PREDICTIONTYPE, +RUNTIMETYPE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelDiscoverySource.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelDiscoverySource.cls new file mode 100644 index 0000000..8e5b178 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelDiscoverySource.cls @@ -0,0 +1,11 @@ +global class SmartDataDiscoveryAIModelDiscoverySource { + global ConnectApi.SmartDataDiscoveryAssetReference story; + global ConnectApi.SmartDataDiscoveryAssetReference storyHistory; + global SmartDataDiscoveryAIModelDiscoverySource() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelDiscoverySourceInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelDiscoverySourceInput.cls new file mode 100644 index 0000000..0f53d02 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelDiscoverySourceInput.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryAIModelDiscoverySourceInput { + global ConnectApi.SmartDataDiscoveryAssetReferenceInput runId; + global SmartDataDiscoveryAIModelDiscoverySourceInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelInput.cls new file mode 100644 index 0000000..0727f4e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelInput.cls @@ -0,0 +1,20 @@ +global class SmartDataDiscoveryAIModelInput { + global String description; + global ConnectApi.SmartDataDiscoveryAbstractAIModelSourceInput input; + global String label; + global Object modelData; + global List modelFields; + global ConnectApi.AbstractSmartDataDiscoveryModelRuntimeInput modelRuntime; + global String name; + global String predictedField; + global ConnectApi.SmartDataDiscoveryAbstractPredictionPropertyInput predictionProperty; + global ConnectApi.SmartDataDiscoveryAIModelStatus status; + global List transformations; + global Object validationResult; + global SmartDataDiscoveryAIModelInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelMulticlassMetrics.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelMulticlassMetrics.cls new file mode 100644 index 0000000..1f7fd07 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelMulticlassMetrics.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryAIModelMulticlassMetrics { + global SmartDataDiscoveryAIModelMulticlassMetrics() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelRegressionMetrics.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelRegressionMetrics.cls new file mode 100644 index 0000000..fd36267 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelRegressionMetrics.cls @@ -0,0 +1,13 @@ +global class SmartDataDiscoveryAIModelRegressionMetrics { + global Double mae; + global String residualsUrl; + global Double rmse; + global Double rsquared; + global SmartDataDiscoveryAIModelRegressionMetrics() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelResidual.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelResidual.cls new file mode 100644 index 0000000..e16094e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelResidual.cls @@ -0,0 +1,11 @@ +global class SmartDataDiscoveryAIModelResidual { + global Double actual; + global Double predicted; + global SmartDataDiscoveryAIModelResidual() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelResidualCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelResidualCollection.cls new file mode 100644 index 0000000..19d87e4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelResidualCollection.cls @@ -0,0 +1,13 @@ +global class SmartDataDiscoveryAIModelResidualCollection { + global String nextPageUrl; + global List residuals; + global Integer totalSize; + global String url; + global SmartDataDiscoveryAIModelResidualCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelStatus.cls new file mode 100644 index 0000000..c245acd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelStatus.cls @@ -0,0 +1,10 @@ +global enum SmartDataDiscoveryAIModelStatus { +DISABLED, +ENABLED, +UPLOADCOMPLETED, +UPLOADFAILED, +UPLOADING, +VALIDATING, +VALIDATIONCOMPLETED, +VALIDATIONFAILED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelTransformation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelTransformation.cls new file mode 100644 index 0000000..bcde2ac --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelTransformation.cls @@ -0,0 +1,14 @@ +global class SmartDataDiscoveryAIModelTransformation { + global String id; + global List sourceFields; + global Map state; + global List targetFields; + global ConnectApi.SmartDataDiscoveryAIModelTransformationTypeEnum type; + global SmartDataDiscoveryAIModelTransformation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelTransformationInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelTransformationInput.cls new file mode 100644 index 0000000..aaaebc4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelTransformationInput.cls @@ -0,0 +1,12 @@ +global class SmartDataDiscoveryAIModelTransformationInput { + global List sourceFieldNames; + global Object state; + global List targetFieldNames; + global ConnectApi.SmartDataDiscoveryAIModelTransformationTypeEnum type; + global SmartDataDiscoveryAIModelTransformationInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelTransformationTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelTransformationTypeEnum.cls new file mode 100644 index 0000000..0718200 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelTransformationTypeEnum.cls @@ -0,0 +1,10 @@ +global enum SmartDataDiscoveryAIModelTransformationTypeEnum { +CATEGORICALIMPUTATION, +EXTRACTDAYOFWEEK, +EXTRACTMONTHOFYEAR, +FREETEXTCLUSTERING, +NUMERICALIMPUTATION, +SENTIMENTANALYSIS, +TIMESERIESFORECAST, +TYPOGRAPHICCLUSTERING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelUserUploadSource.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelUserUploadSource.cls new file mode 100644 index 0000000..d855f96 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelUserUploadSource.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryAIModelUserUploadSource { + global SmartDataDiscoveryAIModelUserUploadSource() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelUserUploadSourceInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelUserUploadSourceInput.cls new file mode 100644 index 0000000..f45bcc0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelUserUploadSourceInput.cls @@ -0,0 +1,8 @@ +global class SmartDataDiscoveryAIModelUserUploadSourceInput { + global SmartDataDiscoveryAIModelUserUploadSourceInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAbstractAIModelSourceInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAbstractAIModelSourceInput.cls new file mode 100644 index 0000000..8d68290 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAbstractAIModelSourceInput.cls @@ -0,0 +1,8 @@ +global class SmartDataDiscoveryAbstractAIModelSourceInput { + global ConnectApi.SmartDataDiscoveryModelSourceTypeEnum type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAbstractClassificationThreshold.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAbstractClassificationThreshold.cls new file mode 100644 index 0000000..ae9e36a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAbstractClassificationThreshold.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryAbstractClassificationThreshold { + global ConnectApi.SmartDataDiscoveryClassificationTypeEnum type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAbstractClassificationThresholdInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAbstractClassificationThresholdInput.cls new file mode 100644 index 0000000..8862ab3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAbstractClassificationThresholdInput.cls @@ -0,0 +1,8 @@ +global class SmartDataDiscoveryAbstractClassificationThresholdInput { + global ConnectApi.SmartDataDiscoveryClassificationTypeEnum type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAbstractFieldMappingSourceInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAbstractFieldMappingSourceInput.cls new file mode 100644 index 0000000..ba3a15d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAbstractFieldMappingSourceInput.cls @@ -0,0 +1,8 @@ +global class SmartDataDiscoveryAbstractFieldMappingSourceInput { + global ConnectApi.SmartDataDiscoveryFieldMapSourceTypeEnum type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAbstractModelFieldInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAbstractModelFieldInput.cls new file mode 100644 index 0000000..d3f957f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAbstractModelFieldInput.cls @@ -0,0 +1,12 @@ +global class SmartDataDiscoveryAbstractModelFieldInput { + global Boolean disparateImpact; + global String label; + global String name; + global Boolean sensitive; + global ConnectApi.SmartDataDiscoveryModelFieldTypeEnum type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAbstractPredict.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAbstractPredict.cls new file mode 100644 index 0000000..e1342f5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAbstractPredict.cls @@ -0,0 +1,14 @@ +global class SmartDataDiscoveryAbstractPredict { + global Double baseLine; + global ConnectApi.SmartDataDiscoveryPredictImportWarnings importWarnings; + global List middleValues; + global Double other; + global Integer smallTermCount; + global Double total; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAbstractPredictionPropertyInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAbstractPredictionPropertyInput.cls new file mode 100644 index 0000000..d5bc73b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAbstractPredictionPropertyInput.cls @@ -0,0 +1,8 @@ +global class SmartDataDiscoveryAbstractPredictionPropertyInput { + global ConnectApi.SmartDataDiscoveryPredictionTypeEnum type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAggregatePredictConditionRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAggregatePredictConditionRepresentation.cls new file mode 100644 index 0000000..16f708d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAggregatePredictConditionRepresentation.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryAggregatePredictConditionRepresentation { + global Integer count; + global SmartDataDiscoveryAggregatePredictConditionRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAggregatePredictStatusEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAggregatePredictStatusEnum.cls new file mode 100644 index 0000000..a852f98 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAggregatePredictStatusEnum.cls @@ -0,0 +1,4 @@ +global enum SmartDataDiscoveryAggregatePredictStatusEnum { +ERROR, +SUCCESS +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAggregatePredictionErrorRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAggregatePredictionErrorRepresentation.cls new file mode 100644 index 0000000..d9218e5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAggregatePredictionErrorRepresentation.cls @@ -0,0 +1,11 @@ +global class SmartDataDiscoveryAggregatePredictionErrorRepresentation { + global Integer errorCode; + global String message; + global SmartDataDiscoveryAggregatePredictionErrorRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAggregatePredictionRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAggregatePredictionRepresentation.cls new file mode 100644 index 0000000..d0c246a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAggregatePredictionRepresentation.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryAggregatePredictionRepresentation { + global Double value; + global SmartDataDiscoveryAggregatePredictionRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAssetReference.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAssetReference.cls new file mode 100644 index 0000000..cea1568 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAssetReference.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryAssetReference { + global SmartDataDiscoveryAssetReference() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAssetReferenceInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAssetReferenceInput.cls new file mode 100644 index 0000000..ad42f43 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAssetReferenceInput.cls @@ -0,0 +1,8 @@ +global class SmartDataDiscoveryAssetReferenceInput { + global SmartDataDiscoveryAssetReferenceInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryBaseAssetReference.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryBaseAssetReference.cls new file mode 100644 index 0000000..db0ff6f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryBaseAssetReference.cls @@ -0,0 +1,13 @@ +global class SmartDataDiscoveryBaseAssetReference { + global String id; + global String label; + global String name; + global String namespace; + global String url; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryBinaryClassificationThreshold.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryBinaryClassificationThreshold.cls new file mode 100644 index 0000000..7efd289 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryBinaryClassificationThreshold.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryBinaryClassificationThreshold { + global Double value; + global SmartDataDiscoveryBinaryClassificationThreshold() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryBinaryClassificationThresholdInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryBinaryClassificationThresholdInput.cls new file mode 100644 index 0000000..91ccb63 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryBinaryClassificationThresholdInput.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryBinaryClassificationThresholdInput { + global Double value; + global SmartDataDiscoveryBinaryClassificationThresholdInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCategoricalImputationMethodEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCategoricalImputationMethodEnum.cls new file mode 100644 index 0000000..becd513 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCategoricalImputationMethodEnum.cls @@ -0,0 +1,3 @@ +global enum SmartDataDiscoveryCategoricalImputationMethodEnum { +AUTO +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCategoricalImputationTransformation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCategoricalImputationTransformation.cls new file mode 100644 index 0000000..c9f5097 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCategoricalImputationTransformation.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryCategoricalImputationTransformation { + global ConnectApi.SmartDataDiscoveryCategoricalImputationMethodEnum imputeMethod; + global SmartDataDiscoveryCategoricalImputationTransformation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCategoricalImputationTransformationInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCategoricalImputationTransformationInput.cls new file mode 100644 index 0000000..28eeced --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCategoricalImputationTransformationInput.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryCategoricalImputationTransformationInput { + global ConnectApi.SmartDataDiscoveryCategoricalImputationMethodEnum imputeMethod; + global SmartDataDiscoveryCategoricalImputationTransformationInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCategoricalProjectedPrediction.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCategoricalProjectedPrediction.cls new file mode 100644 index 0000000..22d79a2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCategoricalProjectedPrediction.cls @@ -0,0 +1,11 @@ +global class SmartDataDiscoveryCategoricalProjectedPrediction { + global Map classProbabilities; + global String prediction; + global SmartDataDiscoveryCategoricalProjectedPrediction() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryClassificationAlgorithmTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryClassificationAlgorithmTypeEnum.cls new file mode 100644 index 0000000..8c1662b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryClassificationAlgorithmTypeEnum.cls @@ -0,0 +1,7 @@ +global enum SmartDataDiscoveryClassificationAlgorithmTypeEnum { +BEST, +DRF, +GBM, +GLM, +XGBOOST +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryClassificationPredictionProperty.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryClassificationPredictionProperty.cls new file mode 100644 index 0000000..75e1173 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryClassificationPredictionProperty.cls @@ -0,0 +1,11 @@ +global class SmartDataDiscoveryClassificationPredictionProperty { + global ConnectApi.SmartDataDiscoveryClassificationAlgorithmTypeEnum algorithmType; + global ConnectApi.SmartDataDiscoveryAbstractClassificationThreshold classificationThreshold; + global SmartDataDiscoveryClassificationPredictionProperty() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryClassificationPredictionPropertyInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryClassificationPredictionPropertyInput.cls new file mode 100644 index 0000000..b48d3c8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryClassificationPredictionPropertyInput.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryClassificationPredictionPropertyInput { + global ConnectApi.SmartDataDiscoveryClassificationAlgorithmTypeEnum algorithmType; + global ConnectApi.SmartDataDiscoveryAbstractClassificationThresholdInput classificationThreshold; + global SmartDataDiscoveryClassificationPredictionPropertyInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryClassificationTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryClassificationTypeEnum.cls new file mode 100644 index 0000000..dab968c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryClassificationTypeEnum.cls @@ -0,0 +1,3 @@ +global enum SmartDataDiscoveryClassificationTypeEnum { +BINARY +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCluster.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCluster.cls new file mode 100644 index 0000000..b86dbcc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCluster.cls @@ -0,0 +1,14 @@ +global class SmartDataDiscoveryCluster { + global Boolean ignored; + global Integer itemCount; + global String label; + global String name; + global List values; + global SmartDataDiscoveryCluster() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryClusterInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryClusterInput.cls new file mode 100644 index 0000000..da65827 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryClusterInput.cls @@ -0,0 +1,12 @@ +global class SmartDataDiscoveryClusterInput { + global Boolean ignored; + global String label; + global String name; + global List values; + global SmartDataDiscoveryClusterInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryComplexFilterInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryComplexFilterInput.cls new file mode 100644 index 0000000..0e58f30 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryComplexFilterInput.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryComplexFilterInput { + global List filters; + global SmartDataDiscoveryComplexFilterInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryContact.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryContact.cls new file mode 100644 index 0000000..2a206b8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryContact.cls @@ -0,0 +1,11 @@ +global class SmartDataDiscoveryContact { + global String email; + global String name; + global SmartDataDiscoveryContact() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCustomPrescribableFieldDefinition.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCustomPrescribableFieldDefinition.cls new file mode 100644 index 0000000..f384c7d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCustomPrescribableFieldDefinition.cls @@ -0,0 +1,11 @@ +global class SmartDataDiscoveryCustomPrescribableFieldDefinition { + global List filters; + global String templateText; + global SmartDataDiscoveryCustomPrescribableFieldDefinition() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCustomPrescribableFieldDefinitionInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCustomPrescribableFieldDefinitionInput.cls new file mode 100644 index 0000000..cfca097 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCustomPrescribableFieldDefinitionInput.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryCustomPrescribableFieldDefinitionInput { + global List filters; + global String templateText; + global SmartDataDiscoveryCustomPrescribableFieldDefinitionInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCustomizableField.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCustomizableField.cls new file mode 100644 index 0000000..380f307 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCustomizableField.cls @@ -0,0 +1,11 @@ +global class SmartDataDiscoveryCustomizableField { + global List customDefinitions; + global ConnectApi.AbstractSmartDataDiscoveryModelField field; + global SmartDataDiscoveryCustomizableField() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCustomizableFieldDefinition.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCustomizableFieldDefinition.cls new file mode 100644 index 0000000..ae17f03 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCustomizableFieldDefinition.cls @@ -0,0 +1,11 @@ +global class SmartDataDiscoveryCustomizableFieldDefinition { + global List filters; + global String templateText; + global SmartDataDiscoveryCustomizableFieldDefinition() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCustomizableFieldDefinitionInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCustomizableFieldDefinitionInput.cls new file mode 100644 index 0000000..516ae01 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCustomizableFieldDefinitionInput.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryCustomizableFieldDefinitionInput { + global List filters; + global String templateText; + global SmartDataDiscoveryCustomizableFieldDefinitionInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCustomizableFieldInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCustomizableFieldInput.cls new file mode 100644 index 0000000..d8f2066 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCustomizableFieldInput.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryCustomizableFieldInput { + global List customDefinitions; + global String fieldName; + global SmartDataDiscoveryCustomizableFieldInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryDataAlertFieldRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryDataAlertFieldRepresentation.cls new file mode 100644 index 0000000..27d1939 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryDataAlertFieldRepresentation.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryDataAlertFieldRepresentation { + global SmartDataDiscoveryDataAlertFieldRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryDataAlertType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryDataAlertType.cls new file mode 100644 index 0000000..a6296d8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryDataAlertType.cls @@ -0,0 +1,19 @@ +global enum SmartDataDiscoveryDataAlertType { +AUC, +COLLINEARFIELDS, +CORRELATEWITHPROTECTEDFIELDS, +CROSSVALIDATIONFAILED, +DATALEAKAGE, +DISPARATEIMPACT, +EXTREMEVALUES, +FALSEPREDICTIONRATE, +HIGHCARDINALITY, +IMBALANCEDDISTRIBUTION, +MISSINGCATEGORICALVALUES, +MISSINGVALUES, +OBVIOUSPREDICTOR, +RECOMMENDEDBUCKETS, +RSQUARED, +SINGLEVALUE, +SINGLEVALUEWITHOTHER +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryDiscoveryModelRuntime.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryDiscoveryModelRuntime.cls new file mode 100644 index 0000000..503501f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryDiscoveryModelRuntime.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryDiscoveryModelRuntime { + global SmartDataDiscoveryDiscoveryModelRuntime() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryDiscoveryModelRuntimeInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryDiscoveryModelRuntimeInput.cls new file mode 100644 index 0000000..f4a1fd7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryDiscoveryModelRuntimeInput.cls @@ -0,0 +1,8 @@ +global class SmartDataDiscoveryDiscoveryModelRuntimeInput { + global SmartDataDiscoveryDiscoveryModelRuntimeInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryDiscoveryNumericRangeInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryDiscoveryNumericRangeInput.cls new file mode 100644 index 0000000..8840637 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryDiscoveryNumericRangeInput.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryDiscoveryNumericRangeInput { + global Double max; + global Double min; + global SmartDataDiscoveryDiscoveryNumericRangeInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryDiscoveryPredictSettings.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryDiscoveryPredictSettings.cls new file mode 100644 index 0000000..cd3ace6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryDiscoveryPredictSettings.cls @@ -0,0 +1,13 @@ +global class SmartDataDiscoveryDiscoveryPredictSettings { + global List aggregateFunctions; + global Integer maxMiddleValues; + global Integer maxPrescriptions; + global Integer prescriptionImpactPercentage; + global ConnectApi.SmartDataDiscoveryProjectedPredictionSettingsInput projectedPredictions; + global SmartDataDiscoveryDiscoveryPredictSettings() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryExtractDayOfWeekTransformation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryExtractDayOfWeekTransformation.cls new file mode 100644 index 0000000..ca2a17d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryExtractDayOfWeekTransformation.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryExtractDayOfWeekTransformation { + global SmartDataDiscoveryExtractDayOfWeekTransformation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryExtractDayOfWeekTransformationInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryExtractDayOfWeekTransformationInput.cls new file mode 100644 index 0000000..dbb20d7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryExtractDayOfWeekTransformationInput.cls @@ -0,0 +1,8 @@ +global class SmartDataDiscoveryExtractDayOfWeekTransformationInput { + global SmartDataDiscoveryExtractDayOfWeekTransformationInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryExtractMonthOfYearTransformation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryExtractMonthOfYearTransformation.cls new file mode 100644 index 0000000..587e08b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryExtractMonthOfYearTransformation.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryExtractMonthOfYearTransformation { + global SmartDataDiscoveryExtractMonthOfYearTransformation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryExtractMonthOfYearTransformationInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryExtractMonthOfYearTransformationInput.cls new file mode 100644 index 0000000..462312d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryExtractMonthOfYearTransformationInput.cls @@ -0,0 +1,8 @@ +global class SmartDataDiscoveryExtractMonthOfYearTransformationInput { + global SmartDataDiscoveryExtractMonthOfYearTransformationInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryField.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryField.cls new file mode 100644 index 0000000..cc9ba63 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryField.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryField { + global String label; + global String name; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldInput.cls new file mode 100644 index 0000000..8181db5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldInput.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryFieldInput { + global String label; + global String name; + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMapSourceTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMapSourceTypeEnum.cls new file mode 100644 index 0000000..e1000a5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMapSourceTypeEnum.cls @@ -0,0 +1,4 @@ +global enum SmartDataDiscoveryFieldMapSourceTypeEnum { +ANALYTICSDATASETFIELD, +SALESFORCEFIELD +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMapping.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMapping.cls new file mode 100644 index 0000000..4906795 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMapping.cls @@ -0,0 +1,12 @@ +global class SmartDataDiscoveryFieldMapping { + global ConnectApi.AbstractSmartDataDiscoveryFieldMappingSource input; + global ConnectApi.SmartDataDiscoveryFieldMappingMappedField mappedField; + global ConnectApi.AbstractSmartDataDiscoveryModelField modelField; + global SmartDataDiscoveryFieldMapping() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMappingAnalyticsDatasetField.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMappingAnalyticsDatasetField.cls new file mode 100644 index 0000000..28cac43 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMappingAnalyticsDatasetField.cls @@ -0,0 +1,12 @@ +global class SmartDataDiscoveryFieldMappingAnalyticsDatasetField { + global String sobjectFieldJoinKey; + global ConnectApi.SmartDataDiscoveryAssetReference source; + global String sourceFieldJoinKey; + global SmartDataDiscoveryFieldMappingAnalyticsDatasetField() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMappingAnalyticsDatasetFieldInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMappingAnalyticsDatasetFieldInput.cls new file mode 100644 index 0000000..e8af78e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMappingAnalyticsDatasetFieldInput.cls @@ -0,0 +1,11 @@ +global class SmartDataDiscoveryFieldMappingAnalyticsDatasetFieldInput { + global String sobjectFieldJoinKey; + global ConnectApi.SmartDataDiscoveryAssetReferenceInput source; + global String sourceFieldJoinKey; + global SmartDataDiscoveryFieldMappingAnalyticsDatasetFieldInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMappingCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMappingCollection.cls new file mode 100644 index 0000000..293317d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMappingCollection.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryFieldMappingCollection { + global List fieldMappingList; + global SmartDataDiscoveryFieldMappingCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMappingInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMappingInput.cls new file mode 100644 index 0000000..6544e94 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMappingInput.cls @@ -0,0 +1,11 @@ +global class SmartDataDiscoveryFieldMappingInput { + global ConnectApi.SmartDataDiscoveryAbstractFieldMappingSourceInput input; + global String mappedFieldName; + global String modelFieldName; + global SmartDataDiscoveryFieldMappingInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMappingMappedField.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMappingMappedField.cls new file mode 100644 index 0000000..b0ffc4b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMappingMappedField.cls @@ -0,0 +1,12 @@ +global class SmartDataDiscoveryFieldMappingMappedField { + global String label; + global String name; + global String type; + global SmartDataDiscoveryFieldMappingMappedField() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMappingSalesforceField.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMappingSalesforceField.cls new file mode 100644 index 0000000..845fb33 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMappingSalesforceField.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryFieldMappingSalesforceField { + global SmartDataDiscoveryFieldMappingSalesforceField() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMappingSalesforceFieldInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMappingSalesforceFieldInput.cls new file mode 100644 index 0000000..4f2fd10 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMappingSalesforceFieldInput.cls @@ -0,0 +1,8 @@ +global class SmartDataDiscoveryFieldMappingSalesforceFieldInput { + global SmartDataDiscoveryFieldMappingSalesforceFieldInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilter.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilter.cls new file mode 100644 index 0000000..65f3f01 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilter.cls @@ -0,0 +1,14 @@ +global class SmartDataDiscoveryFilter { + global String fieldName; + global List filterValues; + global ConnectApi.SmartDataDiscoveryFilterOperator operator; + global ConnectApi.SmartDataDiscoveryFilterFieldTypeEnum type; + global List values; + global SmartDataDiscoveryFilter() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilterFieldTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilterFieldTypeEnum.cls new file mode 100644 index 0000000..169b2d4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilterFieldTypeEnum.cls @@ -0,0 +1,7 @@ +global enum SmartDataDiscoveryFilterFieldTypeEnum { +BOOLEAN, +DATE, +DATETIME, +NUMBER, +TEXT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilterInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilterInput.cls new file mode 100644 index 0000000..25a5c4f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilterInput.cls @@ -0,0 +1,13 @@ +global class SmartDataDiscoveryFilterInput { + global String fieldName; + global List filterValues; + global ConnectApi.SmartDataDiscoveryFilterOperator operator; + global ConnectApi.SmartDataDiscoveryFilterFieldTypeEnum type; + global List values; + global SmartDataDiscoveryFilterInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilterList.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilterList.cls new file mode 100644 index 0000000..eb705a8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilterList.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryFilterList { + global List filters; + global SmartDataDiscoveryFilterList() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilterOperator.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilterOperator.cls new file mode 100644 index 0000000..1f1938f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilterOperator.cls @@ -0,0 +1,15 @@ +global enum SmartDataDiscoveryFilterOperator { +BETWEEN, +CONTAINS, +ENDSWITH, +EQUAL, +GREATERTHAN, +GREATERTHANOREQUAL, +INSET, +LESSTHAN, +LESSTHANOREQUAL, +NOTBETWEEN, +NOTEQUAL, +NOTIN, +STARTSWITH +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilterValue.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilterValue.cls new file mode 100644 index 0000000..168dfb9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilterValue.cls @@ -0,0 +1,11 @@ +global class SmartDataDiscoveryFilterValue { + global ConnectApi.SmartDataDiscoveryFilterValueTypeEnum type; + global String value; + global SmartDataDiscoveryFilterValue() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilterValueInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilterValueInput.cls new file mode 100644 index 0000000..14d2e3c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilterValueInput.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryFilterValueInput { + global ConnectApi.SmartDataDiscoveryFilterValueTypeEnum type; + global String value; + global SmartDataDiscoveryFilterValueInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilterValueTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilterValueTypeEnum.cls new file mode 100644 index 0000000..258022d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilterValueTypeEnum.cls @@ -0,0 +1,4 @@ +global enum SmartDataDiscoveryFilterValueTypeEnum { +CONSTANT, +PLACEHOLDER +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFreeTextClusteringTransformation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFreeTextClusteringTransformation.cls new file mode 100644 index 0000000..c9bcf92 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFreeTextClusteringTransformation.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryFreeTextClusteringTransformation { + global SmartDataDiscoveryFreeTextClusteringTransformation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFreeTextClusteringTransformationInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFreeTextClusteringTransformationInput.cls new file mode 100644 index 0000000..7157955 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFreeTextClusteringTransformationInput.cls @@ -0,0 +1,8 @@ +global class SmartDataDiscoveryFreeTextClusteringTransformationInput { + global SmartDataDiscoveryFreeTextClusteringTransformationInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryH2OModelRuntime.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryH2OModelRuntime.cls new file mode 100644 index 0000000..10ce486 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryH2OModelRuntime.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryH2OModelRuntime { + global SmartDataDiscoveryH2OModelRuntime() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryH2OModelRuntimeInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryH2OModelRuntimeInput.cls new file mode 100644 index 0000000..ce8437b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryH2OModelRuntimeInput.cls @@ -0,0 +1,8 @@ +global class SmartDataDiscoveryH2OModelRuntimeInput { + global SmartDataDiscoveryH2OModelRuntimeInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryLiveMetricDetailRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryLiveMetricDetailRepresentation.cls new file mode 100644 index 0000000..ea43198 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryLiveMetricDetailRepresentation.cls @@ -0,0 +1,13 @@ +global class SmartDataDiscoveryLiveMetricDetailRepresentation { + global Datetime endDate; + global Integer rowCount; + global Datetime startDate; + global Map value; + global SmartDataDiscoveryLiveMetricDetailRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryLiveMetricsRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryLiveMetricsRepresentation.cls new file mode 100644 index 0000000..49a8a6f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryLiveMetricsRepresentation.cls @@ -0,0 +1,14 @@ +global class SmartDataDiscoveryLiveMetricsRepresentation { + global List disparateImpacts; + global List missingColumns; + global List outOfBoundsColumns; + global List predictions; + global List warnings; + global SmartDataDiscoveryLiveMetricsRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryManyToOneTransformationInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryManyToOneTransformationInput.cls new file mode 100644 index 0000000..8792bdd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryManyToOneTransformationInput.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryManyToOneTransformationInput { + global ConnectApi.SmartDataDiscoveryTransformationFilterInput postTransformationFilter; + global List sourceFieldNames; + global String targetFieldName; + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryMetricsCollectionRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryMetricsCollectionRepresentation.cls new file mode 100644 index 0000000..71233b0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryMetricsCollectionRepresentation.cls @@ -0,0 +1,14 @@ +global class SmartDataDiscoveryMetricsCollectionRepresentation { + global ConnectApi.SmartDataDiscoveryLiveMetricsRepresentation liveMetrics; + global Integer totalActiveModels; + global Integer totalModels; + global ConnectApi.SmartDataDiscoveryTrainingMetricsRepresentation trainingMetrics; + global String url; + global SmartDataDiscoveryMetricsCollectionRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModel.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModel.cls new file mode 100644 index 0000000..9013a28 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModel.cls @@ -0,0 +1,39 @@ +global class SmartDataDiscoveryModel { + global List actionableFields; + global List actionableVariables; + global ConnectApi.SmartDataDiscoveryAssetReference analysis; + global ConnectApi.SmartDataDiscoveryAbstractClassificationThreshold classificationThreshold; + global ConnectApi.SmartDataDiscoveryUser createdBy; + global Datetime createdDate; + global List customizableFactors; + global Map fieldMap; + global List fieldMappingList; + global List filters; + global String historyUrl; + global String id; + global Boolean isActive; + global Boolean isRefreshEnabled; + global String label; + global ConnectApi.SmartDataDiscoveryUser lastModifiedBy; + global Datetime lastModifiedDate; + global Double liveMetricThreshold; + global ConnectApi.SmartDataDiscoveryAssetReference model; + global String modelType; + global String name; + global String predictionDefinitionUrl; + global List prescribableFields; + global Integer sortOrder; + global Object state; + global String stateVersion; + global ConnectApi.SmartDataDiscoveryPredDefModelStatus status; + global ConnectApi.SmartDataDiscoveryAssetReference story; + global List transformationOverrides; + global String url; + global SmartDataDiscoveryModel() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelCard.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelCard.cls new file mode 100644 index 0000000..004f1b2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelCard.cls @@ -0,0 +1,18 @@ +global class SmartDataDiscoveryModelCard { + global ConnectApi.SmartDataDiscoveryContact contact; + global ConnectApi.SmartDataDiscoveryUser createdBy; + global Datetime createdDate; + global String id; + global String label; + global ConnectApi.SmartDataDiscoveryUser lastModifiedBy; + global Datetime lastModifiedDate; + global Map sections; + global String url; + global SmartDataDiscoveryModelCard() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelCollection.cls new file mode 100644 index 0000000..91e590a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelCollection.cls @@ -0,0 +1,12 @@ +global class SmartDataDiscoveryModelCollection { + global List models; + global Integer totalSize; + global String url; + global SmartDataDiscoveryModelCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldCollection.cls new file mode 100644 index 0000000..91a209d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldCollection.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryModelFieldCollection { + global List modelFields; + global SmartDataDiscoveryModelFieldCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldDate.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldDate.cls new file mode 100644 index 0000000..439adec --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldDate.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryModelFieldDate { + global List values; + global SmartDataDiscoveryModelFieldDate() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldDateInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldDateInput.cls new file mode 100644 index 0000000..07e2557 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldDateInput.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryModelFieldDateInput { + global List values; + global SmartDataDiscoveryModelFieldDateInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldNumeric.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldNumeric.cls new file mode 100644 index 0000000..443b4fc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldNumeric.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryModelFieldNumeric { + global List values; + global SmartDataDiscoveryModelFieldNumeric() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldNumericInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldNumericInput.cls new file mode 100644 index 0000000..537a7b4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldNumericInput.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryModelFieldNumericInput { + global List values; + global SmartDataDiscoveryModelFieldNumericInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldText.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldText.cls new file mode 100644 index 0000000..16bced0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldText.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryModelFieldText { + global List values; + global SmartDataDiscoveryModelFieldText() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldTextInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldTextInput.cls new file mode 100644 index 0000000..1714c7c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldTextInput.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryModelFieldTextInput { + global List values; + global SmartDataDiscoveryModelFieldTextInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldTypeEnum.cls new file mode 100644 index 0000000..4b6bbb8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldTypeEnum.cls @@ -0,0 +1,5 @@ +global enum SmartDataDiscoveryModelFieldTypeEnum { +DATE, +NUMBER, +TEXT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelInput.cls new file mode 100644 index 0000000..980b1e4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelInput.cls @@ -0,0 +1,26 @@ +global class SmartDataDiscoveryModelInput { + global List actionableFields; + global ConnectApi.SmartDataDiscoveryAssetReferenceInput analysis; + global ConnectApi.SmartDataDiscoveryAbstractClassificationThresholdInput classificationThreshold; + global List customizableFactors; + global Map fieldMap; + global List fieldMapping; + global ConnectApi.SmartDataDiscoveryComplexFilterInput filterList; + global Boolean isActive; + global Boolean isRefreshEnabled; + global String label; + global Double liveMetricThreshold; + global ConnectApi.SmartDataDiscoveryAssetReferenceInput model; + global String name; + global List prescribableFields; + global Integer sortOrder; + global Object state; + global ConnectApi.SmartDataDiscoveryPredDefModelStatus status; + global List transformationOverrides; + global SmartDataDiscoveryModelInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelMetricType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelMetricType.cls new file mode 100644 index 0000000..78ba27b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelMetricType.cls @@ -0,0 +1,7 @@ +global enum SmartDataDiscoveryModelMetricType { +AUC, +COUNT, +OVERALLACCURACY, +PREDICTEDCOUNT, +R2 +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelRuntimeTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelRuntimeTypeEnum.cls new file mode 100644 index 0000000..bbe1b67 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelRuntimeTypeEnum.cls @@ -0,0 +1,7 @@ +global enum SmartDataDiscoveryModelRuntimeTypeEnum { +DISCOVERY, +H2O, +PY36TENSORFLOW244, +PY37SCIKITLEARN102, +PY37TENSORFLOW270 +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelSourceTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelSourceTypeEnum.cls new file mode 100644 index 0000000..b2c8f66 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelSourceTypeEnum.cls @@ -0,0 +1,4 @@ +global enum SmartDataDiscoveryModelSourceTypeEnum { +DISCOVERY, +USERUPLOAD +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryMulticlassClassificationPredictionProperty.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryMulticlassClassificationPredictionProperty.cls new file mode 100644 index 0000000..fe5e156 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryMulticlassClassificationPredictionProperty.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryMulticlassClassificationPredictionProperty { + global ConnectApi.SmartDataDiscoveryClassificationAlgorithmTypeEnum algorithmType; + global SmartDataDiscoveryMulticlassClassificationPredictionProperty() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryMulticlassClassificationPredictionPropertyInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryMulticlassClassificationPredictionPropertyInput.cls new file mode 100644 index 0000000..ffe28c5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryMulticlassClassificationPredictionPropertyInput.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryMulticlassClassificationPredictionPropertyInput { + global ConnectApi.SmartDataDiscoveryClassificationAlgorithmTypeEnum algorithmType; + global SmartDataDiscoveryMulticlassClassificationPredictionPropertyInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryMulticlassPredict.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryMulticlassPredict.cls new file mode 100644 index 0000000..360a5d4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryMulticlassPredict.cls @@ -0,0 +1,12 @@ +global class SmartDataDiscoveryMulticlassPredict { + global Map classProbabilites; + global String predictedClass; + global String type; + global SmartDataDiscoveryMulticlassPredict() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryMulticlassProbability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryMulticlassProbability.cls new file mode 100644 index 0000000..7947aaf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryMulticlassProbability.cls @@ -0,0 +1,11 @@ +global class SmartDataDiscoveryMulticlassProbability { + global String predictedClass; + global Double probability; + global SmartDataDiscoveryMulticlassProbability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryNumericRange.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryNumericRange.cls new file mode 100644 index 0000000..3436751 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryNumericRange.cls @@ -0,0 +1,11 @@ +global class SmartDataDiscoveryNumericRange { + global Double max; + global Double min; + global SmartDataDiscoveryNumericRange() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryNumericTransformationFilter.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryNumericTransformationFilter.cls new file mode 100644 index 0000000..beb95e6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryNumericTransformationFilter.cls @@ -0,0 +1,11 @@ +global class SmartDataDiscoveryNumericTransformationFilter { + global Double max; + global Double min; + global SmartDataDiscoveryNumericTransformationFilter() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryNumericTransformationFilterInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryNumericTransformationFilterInput.cls new file mode 100644 index 0000000..ab26d13 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryNumericTransformationFilterInput.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryNumericTransformationFilterInput { + global Double max; + global Double min; + global SmartDataDiscoveryNumericTransformationFilterInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryNumericalImputationMethodEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryNumericalImputationMethodEnum.cls new file mode 100644 index 0000000..742e2ad --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryNumericalImputationMethodEnum.cls @@ -0,0 +1,5 @@ +global enum SmartDataDiscoveryNumericalImputationMethodEnum { +MEAN, +MEDIAN, +MODE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryNumericalImputationTransformation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryNumericalImputationTransformation.cls new file mode 100644 index 0000000..1771000 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryNumericalImputationTransformation.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryNumericalImputationTransformation { + global ConnectApi.SmartDataDiscoveryNumericalImputationMethodEnum imputeMethod; + global SmartDataDiscoveryNumericalImputationTransformation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryNumericalImputationTransformationInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryNumericalImputationTransformationInput.cls new file mode 100644 index 0000000..8961207 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryNumericalImputationTransformationInput.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryNumericalImputationTransformationInput { + global ConnectApi.SmartDataDiscoveryNumericalImputationMethodEnum imputeMethod; + global SmartDataDiscoveryNumericalImputationTransformationInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryNumericalProjectedPrediction.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryNumericalProjectedPrediction.cls new file mode 100644 index 0000000..d73d29b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryNumericalProjectedPrediction.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryNumericalProjectedPrediction { + global Double prediction; + global SmartDataDiscoveryNumericalProjectedPrediction() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryOneToOneTransformationInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryOneToOneTransformationInput.cls new file mode 100644 index 0000000..def0f8f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryOneToOneTransformationInput.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryOneToOneTransformationInput { + global ConnectApi.SmartDataDiscoveryTransformationFilterInput postTransformationFilter; + global String sourceFieldName; + global String targetFieldName; + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryOutcomeGoal.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryOutcomeGoal.cls new file mode 100644 index 0000000..d861a99 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryOutcomeGoal.cls @@ -0,0 +1,5 @@ +global enum SmartDataDiscoveryOutcomeGoal { +MAXIMIZE, +MINIMIZE, +NONE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredDefCollectionSortOrderType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredDefCollectionSortOrderType.cls new file mode 100644 index 0000000..5a58ad5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredDefCollectionSortOrderType.cls @@ -0,0 +1,7 @@ +global enum SmartDataDiscoveryPredDefCollectionSortOrderType { +LASTUPDATE, +NAME, +OUTCOMEFIELDLABEL, +PREDICTIONTYPE, +SUBSCRIBEDENTITY +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredDefModelStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredDefModelStatus.cls new file mode 100644 index 0000000..3b83892 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredDefModelStatus.cls @@ -0,0 +1,4 @@ +global enum SmartDataDiscoveryPredDefModelStatus { +DISABLED, +ENABLED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredDefOutcome.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredDefOutcome.cls new file mode 100644 index 0000000..2437020 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredDefOutcome.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryPredDefOutcome { + global ConnectApi.SmartDataDiscoveryOutcomeGoal goal; + global SmartDataDiscoveryPredDefOutcome() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredDefOutcomeInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredDefOutcomeInput.cls new file mode 100644 index 0000000..0210b28 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredDefOutcomeInput.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryPredDefOutcomeInput { + global ConnectApi.SmartDataDiscoveryOutcomeGoal goal; + global SmartDataDiscoveryPredDefOutcomeInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredDefPushbackFieldInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredDefPushbackFieldInput.cls new file mode 100644 index 0000000..c1422e5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredDefPushbackFieldInput.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryPredDefPushbackFieldInput { + global Boolean createNewField; + global SmartDataDiscoveryPredDefPushbackFieldInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredict.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredict.cls new file mode 100644 index 0000000..07e4e56 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredict.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryPredict { + global SmartDataDiscoveryPredict() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictAggregateFunctionEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictAggregateFunctionEnum.cls new file mode 100644 index 0000000..f6b7c24 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictAggregateFunctionEnum.cls @@ -0,0 +1,5 @@ +global enum SmartDataDiscoveryPredictAggregateFunctionEnum { +AVERAGE, +MEDIAN, +SUM +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictColumn.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictColumn.cls new file mode 100644 index 0000000..2588d37 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictColumn.cls @@ -0,0 +1,14 @@ +global class SmartDataDiscoveryPredictColumn { + global String columnLabel; + global String columnName; + global String columnValue; + global ConnectApi.SmartDataDiscoveryPredictColumnCustomText customText; + global String inputValue; + global SmartDataDiscoveryPredictColumn() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictColumnCustomText.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictColumnCustomText.cls new file mode 100644 index 0000000..91af726 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictColumnCustomText.cls @@ -0,0 +1,11 @@ +global class SmartDataDiscoveryPredictColumnCustomText { + global Map mapping; + global String templateText; + global SmartDataDiscoveryPredictColumnCustomText() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictCondition.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictCondition.cls new file mode 100644 index 0000000..033a483 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictCondition.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryPredictCondition { + global SmartDataDiscoveryPredictCondition() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictErrorObject.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictErrorObject.cls new file mode 100644 index 0000000..4b6d9a1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictErrorObject.cls @@ -0,0 +1,11 @@ +global class SmartDataDiscoveryPredictErrorObject { + global Integer errorCode; + global String message; + global SmartDataDiscoveryPredictErrorObject() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictImportWarnings.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictImportWarnings.cls new file mode 100644 index 0000000..cb63035 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictImportWarnings.cls @@ -0,0 +1,12 @@ +global class SmartDataDiscoveryPredictImportWarnings { + global List mismatchedColumns; + global List missingColumns; + global List outOfBoundsColumns; + global SmartDataDiscoveryPredictImportWarnings() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictInput.cls new file mode 100644 index 0000000..c522461 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictInput.cls @@ -0,0 +1,11 @@ +global class SmartDataDiscoveryPredictInput { + global String entityId; + global Map exploratoryValues; + global String predictionDefinitionId; + global SmartDataDiscoveryPredictInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictInputRawData.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictInputRawData.cls new file mode 100644 index 0000000..c43ab52 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictInputRawData.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryPredictInputRawData { + global List columnNames; + global List rows; + global SmartDataDiscoveryPredictInputRawData() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictInputRecordOverrides.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictInputRecordOverrides.cls new file mode 100644 index 0000000..10eb734 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictInputRecordOverrides.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryPredictInputRecordOverrides { + global List columnNames; + global List rows; + global SmartDataDiscoveryPredictInputRecordOverrides() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictInputRecords.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictInputRecords.cls new file mode 100644 index 0000000..f5535ad --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictInputRecords.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryPredictInputRecords { + global List records; + global SmartDataDiscoveryPredictInputRecords() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictInputRowObject.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictInputRowObject.cls new file mode 100644 index 0000000..186e637 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictInputRowObject.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryPredictInputRowObject { + global String record; + global List row; + global SmartDataDiscoveryPredictInputRowObject() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictJob.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictJob.cls new file mode 100644 index 0000000..328778b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictJob.cls @@ -0,0 +1,27 @@ +global class SmartDataDiscoveryPredictJob { + global Integer batchSize; + global ConnectApi.SmartDataDiscoveryUser createdBy; + global Datetime createdDate; + global Integer failedRecords; + global List filters; + global String id; + global String label; + global ConnectApi.SmartDataDiscoveryUser lastModifiedBy; + global Datetime lastModifiedDate; + global String message; + global String name; + global ConnectApi.SmartDataDiscoveryAssetReference predictionDefinition; + global Integer processedRecords; + global ConnectApi.SmartDataDiscoveryPredictJobStatusEnum status; + global String subscribedEntity; + global Integer totalRecords; + global String url; + global Boolean useTerminalStateFilter; + global SmartDataDiscoveryPredictJob() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictJobCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictJobCollection.cls new file mode 100644 index 0000000..589dabd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictJobCollection.cls @@ -0,0 +1,12 @@ +global class SmartDataDiscoveryPredictJobCollection { + global List predictJobs; + global Integer totalSize; + global String url; + global SmartDataDiscoveryPredictJobCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictJobInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictJobInput.cls new file mode 100644 index 0000000..0a00736 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictJobInput.cls @@ -0,0 +1,12 @@ +global class SmartDataDiscoveryPredictJobInput { + global ConnectApi.SmartDataDiscoveryComplexFilterInput filters; + global String label; + global ConnectApi.SmartDataDiscoveryAssetReferenceInput predictionDefinition; + global Boolean useTerminalStateFilter; + global SmartDataDiscoveryPredictJobInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictJobStatusEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictJobStatusEnum.cls new file mode 100644 index 0000000..d4ceef0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictJobStatusEnum.cls @@ -0,0 +1,8 @@ +global enum SmartDataDiscoveryPredictJobStatusEnum { +CANCELLED, +COMPLETED, +FAILED, +INPROGRESS, +NOTSTARTED, +PAUSED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictJobUpdate.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictJobUpdate.cls new file mode 100644 index 0000000..8594ce7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictJobUpdate.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryPredictJobUpdate { + global ConnectApi.SmartDataDiscoveryPredictJobStatusEnum status; + global SmartDataDiscoveryPredictJobUpdate() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictObject.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictObject.cls new file mode 100644 index 0000000..66859e6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictObject.cls @@ -0,0 +1,13 @@ +global class SmartDataDiscoveryPredictObject { + global ConnectApi.SmartDataDiscoveryAssetReference model; + global ConnectApi.SmartDataDiscoveryAbstractPredict prediction; + global List prescriptions; + global ConnectApi.SmartDataDiscoveryProjectedPredictions projectedPredictions; + global SmartDataDiscoveryPredictObject() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictOutOfBoundsFields.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictOutOfBoundsFields.cls new file mode 100644 index 0000000..69f921f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictOutOfBoundsFields.cls @@ -0,0 +1,11 @@ +global class SmartDataDiscoveryPredictOutOfBoundsFields { + global String field; + global String maskedValue; + global SmartDataDiscoveryPredictOutOfBoundsFields() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictSettings.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictSettings.cls new file mode 100644 index 0000000..142f9a6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictSettings.cls @@ -0,0 +1,14 @@ +global class SmartDataDiscoveryPredictSettings { + global List aggregateFunctions; + global Integer maxMiddleValues; + global Integer maxPrescriptions; + global Integer prescriptionImpactPercentage; + global ConnectApi.SmartDataDiscoveryProjectedPredictionSettings projectedPredictions; + global SmartDataDiscoveryPredictSettings() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictStatusEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictStatusEnum.cls new file mode 100644 index 0000000..5e141fa --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictStatusEnum.cls @@ -0,0 +1,4 @@ +global enum SmartDataDiscoveryPredictStatusEnum { +ERROR, +SUCCESS +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictTypeEnum.cls new file mode 100644 index 0000000..1b9c275 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictTypeEnum.cls @@ -0,0 +1,5 @@ +global enum SmartDataDiscoveryPredictTypeEnum { +RAWDATA, +RECORDOVERRIDES, +RECORDS +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPrediction.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPrediction.cls new file mode 100644 index 0000000..6406736 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPrediction.cls @@ -0,0 +1,19 @@ +global class SmartDataDiscoveryPrediction { + global List aggregatePredictions; + global String entityId; + global Map exploratoryValues; + global ConnectApi.SmartDataDiscoveryAbstractPredict prediction; + global String predictionDefinition; + global String predictionDefinitionId; + global ConnectApi.SmartDataDiscoveryPredictionTypeEnum predictionType; + global List predictions; + global List prescriptions; + global ConnectApi.SmartDataDiscoveryPredictSettings settings; + global SmartDataDiscoveryPrediction() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictionDefinition.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictionDefinition.cls new file mode 100644 index 0000000..fca2d0a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictionDefinition.cls @@ -0,0 +1,38 @@ +global class SmartDataDiscoveryPredictionDefinition { + global Integer countOfActiveModels; + global Integer countOfModels; + global ConnectApi.SmartDataDiscoveryUser createdBy; + global Datetime createdDate; + global String id; + global Boolean isActive; + global Boolean isWritingToEntity; + global String label; + global ConnectApi.SmartDataDiscoveryUser lastModifiedBy; + global Datetime lastModifiedDate; + global String mappedOutcomeField; + global String modelsUrl; + global String name; + global String namespace; + global Integer ninetyDayWarningsCount; + global ConnectApi.SmartDataDiscoveryPredDefOutcome outcome; + global String outcomeField; + global String outcomeFieldLabel; + global ConnectApi.SmartDataDiscoveryOutcomeGoal outcomeGoal; + global ConnectApi.SmartDataDiscoveryPredictionTypeEnum predictionType; + global ConnectApi.SmartDataDiscoveryPushbackField pushbackField; + global ConnectApi.SmartDataDiscoveryPushbackType pushbackType; + global ConnectApi.SmartDataDiscoveryRefreshConfig refreshConfig; + global ConnectApi.SmartDataDiscoveryPredDefModelStatus status; + global String subscribedEntity; + global ConnectApi.SmartDataDiscoveryFilterList terminalStateFilter; + global Integer totalPredictionsCount; + global Integer totalWarningsCount; + global String url; + global SmartDataDiscoveryPredictionDefinition() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictionDefinitionCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictionDefinitionCollection.cls new file mode 100644 index 0000000..e79c6e3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictionDefinitionCollection.cls @@ -0,0 +1,13 @@ +global class SmartDataDiscoveryPredictionDefinitionCollection { + global String nextPageUrl; + global List predictionDefinitions; + global Integer totalSize; + global String url; + global SmartDataDiscoveryPredictionDefinitionCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictionDefinitionInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictionDefinitionInput.cls new file mode 100644 index 0000000..603c4f2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictionDefinitionInput.cls @@ -0,0 +1,24 @@ +global class SmartDataDiscoveryPredictionDefinitionInput { + global Boolean isActive; + global Boolean isWritingToEntity; + global String label; + global String mappedOutcomeField; + global String name; + global ConnectApi.SmartDataDiscoveryPredDefOutcomeInput outcome; + global String outcomeField; + global String outcomeFieldLabel; + global ConnectApi.SmartDataDiscoveryOutcomeGoal outcomeGoal; + global ConnectApi.SmartDataDiscoveryPredictionTypeEnum predictionType; + global ConnectApi.SmartDataDiscoveryPredDefPushbackFieldInput pushbackField; + global ConnectApi.SmartDataDiscoveryPushbackType pushbackType; + global ConnectApi.SmartDataDiscoveryRefreshConfigInput refreshConfig; + global ConnectApi.SmartDataDiscoveryPredDefModelStatus status; + global String subscribedEntity; + global ConnectApi.SmartDataDiscoveryComplexFilterInput terminalStateFilter; + global SmartDataDiscoveryPredictionDefinitionInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictionTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictionTypeEnum.cls new file mode 100644 index 0000000..f8aed47 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictionTypeEnum.cls @@ -0,0 +1,6 @@ +global enum SmartDataDiscoveryPredictionTypeEnum { +CLASSIFICATION, +MULTICLASSCLASSIFICATION, +REGRESSION, +UNKNOWN +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPrescribableField.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPrescribableField.cls new file mode 100644 index 0000000..86e185f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPrescribableField.cls @@ -0,0 +1,11 @@ +global class SmartDataDiscoveryPrescribableField { + global List customDefinitions; + global ConnectApi.AbstractSmartDataDiscoveryModelField field; + global SmartDataDiscoveryPrescribableField() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPrescribableFieldInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPrescribableFieldInput.cls new file mode 100644 index 0000000..320a321 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPrescribableFieldInput.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryPrescribableFieldInput { + global List customDefinitions; + global String fieldName; + global SmartDataDiscoveryPrescribableFieldInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionField.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionField.cls new file mode 100644 index 0000000..8e6e9da --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionField.cls @@ -0,0 +1,13 @@ +global class SmartDataDiscoveryProjectedPredictionField { + global ConnectApi.SmartDataDiscoveryProjectedPredictionsIntervalTypeEnum intervalType; + global String name; + global Integer numberOfIntervals; + global List projectedValues; + global SmartDataDiscoveryProjectedPredictionField() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionSettings.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionSettings.cls new file mode 100644 index 0000000..688868d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionSettings.cls @@ -0,0 +1,12 @@ +global class SmartDataDiscoveryProjectedPredictionSettings { + global Integer confidenceInterval; + global Integer numberOfIntervalsToProjectAhead; + global Boolean showProjectedPredictionByInterval; + global SmartDataDiscoveryProjectedPredictionSettings() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionSettingsInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionSettingsInput.cls new file mode 100644 index 0000000..f28e761 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionSettingsInput.cls @@ -0,0 +1,11 @@ +global class SmartDataDiscoveryProjectedPredictionSettingsInput { + global Integer confidenceInterval; + global Integer numberOfIntervalsToProjectAhead; + global Boolean showProjectedPredictionByInterval; + global SmartDataDiscoveryProjectedPredictionSettingsInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictions.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictions.cls new file mode 100644 index 0000000..378320d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictions.cls @@ -0,0 +1,14 @@ +global class SmartDataDiscoveryProjectedPredictions { + global List fields; + global ConnectApi.AbstractSmartDataDiscoveryProjectedPredictionsIntervalSetting intervalSetting; + global ConnectApi.SmartDataDiscoveryProjectedPredictionsIntervalTypeEnum intervalType; + global Integer numberOfIntervalsProjectedAhead; + global List predictions; + global SmartDataDiscoveryProjectedPredictions() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsCountFromDateIntervalSetting.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsCountFromDateIntervalSetting.cls new file mode 100644 index 0000000..fdc220c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsCountFromDateIntervalSetting.cls @@ -0,0 +1,12 @@ +global class SmartDataDiscoveryProjectedPredictionsCountFromDateIntervalSetting { + global String dateField; + global String dateFieldLabel; + global Integer numIntervals; + global SmartDataDiscoveryProjectedPredictionsCountFromDateIntervalSetting() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsCountFromDateIntervalSettingInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsCountFromDateIntervalSettingInput.cls new file mode 100644 index 0000000..8572f63 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsCountFromDateIntervalSettingInput.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryProjectedPredictionsCountFromDateIntervalSettingInput { + global String dateField; + global Integer numIntervals; + global SmartDataDiscoveryProjectedPredictionsCountFromDateIntervalSettingInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsCountIntervalSetting.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsCountIntervalSetting.cls new file mode 100644 index 0000000..dc66f94 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsCountIntervalSetting.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryProjectedPredictionsCountIntervalSetting { + global Integer numIntervals; + global SmartDataDiscoveryProjectedPredictionsCountIntervalSetting() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsCountIntervalSettingInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsCountIntervalSettingInput.cls new file mode 100644 index 0000000..6686cfc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsCountIntervalSettingInput.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryProjectedPredictionsCountIntervalSettingInput { + global Integer numIntervals; + global SmartDataDiscoveryProjectedPredictionsCountIntervalSettingInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsDateIntervalSetting.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsDateIntervalSetting.cls new file mode 100644 index 0000000..a706e67 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsDateIntervalSetting.cls @@ -0,0 +1,11 @@ +global class SmartDataDiscoveryProjectedPredictionsDateIntervalSetting { + global String dateField; + global String dateFieldLabel; + global SmartDataDiscoveryProjectedPredictionsDateIntervalSetting() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsDateIntervalSettingInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsDateIntervalSettingInput.cls new file mode 100644 index 0000000..8d659dd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsDateIntervalSettingInput.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryProjectedPredictionsDateIntervalSettingInput { + global String dateField; + global SmartDataDiscoveryProjectedPredictionsDateIntervalSettingInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsHistoricalDatasetInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsHistoricalDatasetInput.cls new file mode 100644 index 0000000..a25bee3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsHistoricalDatasetInput.cls @@ -0,0 +1,11 @@ +global class SmartDataDiscoveryProjectedPredictionsHistoricalDatasetInput { + global String datasetId; + global String datasetVersionId; + global SmartDataDiscoveryProjectedPredictionsHistoricalDatasetInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsHistoricalDatasetSourceInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsHistoricalDatasetSourceInput.cls new file mode 100644 index 0000000..c11abe7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsHistoricalDatasetSourceInput.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryProjectedPredictionsHistoricalDatasetSourceInput { + global ConnectApi.SmartDataDiscoveryAssetReferenceInput dataset; + global ConnectApi.SmartDataDiscoveryAssetReferenceInput datasetVersion; + global SmartDataDiscoveryProjectedPredictionsHistoricalDatasetSourceInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsIntervalSettingType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsIntervalSettingType.cls new file mode 100644 index 0000000..df9a71b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsIntervalSettingType.cls @@ -0,0 +1,5 @@ +global enum SmartDataDiscoveryProjectedPredictionsIntervalSettingType { +COUNT, +COUNTFROMDATE, +DATE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsIntervalTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsIntervalTypeEnum.cls new file mode 100644 index 0000000..acf886a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsIntervalTypeEnum.cls @@ -0,0 +1,6 @@ +global enum SmartDataDiscoveryProjectedPredictionsIntervalTypeEnum { +DAY, +MONTH, +QUARTER, +WEEK +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsOverride.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsOverride.cls new file mode 100644 index 0000000..ba73650 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsOverride.cls @@ -0,0 +1,11 @@ +global class SmartDataDiscoveryProjectedPredictionsOverride { + global String assetIdField; + global ConnectApi.AbstractSmartDataDiscoveryProjectedPredictionsIntervalSetting intervalOverride; + global SmartDataDiscoveryProjectedPredictionsOverride() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsOverrideInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsOverrideInput.cls new file mode 100644 index 0000000..ec7f217 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsOverrideInput.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryProjectedPredictionsOverrideInput { + global String assetIdField; + global ConnectApi.AbstractSmartDataDiscoveryProjectedPredictionsIntervalSettingInput intervalOverride; + global SmartDataDiscoveryProjectedPredictionsOverrideInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsTransformation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsTransformation.cls new file mode 100644 index 0000000..814e9f7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsTransformation.cls @@ -0,0 +1,16 @@ +global class SmartDataDiscoveryProjectedPredictionsTransformation { + global String assetIdFieldName; + global String dateFieldName; + global ConnectApi.SmartDataDiscoveryProjectedPredictionsHistoricalDatasetInput input; + global Integer numIntervals; + global ConnectApi.SmartDataDiscoveryProjectedPredictionsIntervalTypeEnum projectedPredictionsIntervalType; + global String projectionFieldName; + global Integer seasonalityPeriod; + global SmartDataDiscoveryProjectedPredictionsTransformation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsTransformationInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsTransformationInput.cls new file mode 100644 index 0000000..58969ad --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsTransformationInput.cls @@ -0,0 +1,15 @@ +global class SmartDataDiscoveryProjectedPredictionsTransformationInput { + global String assetIdFieldName; + global String dateFieldName; + global ConnectApi.SmartDataDiscoveryProjectedPredictionsHistoricalDatasetSourceInput input; + global Integer numIntervals; + global ConnectApi.SmartDataDiscoveryProjectedPredictionsIntervalTypeEnum projectedPredictionsIntervalType; + global String projectionFieldName; + global Integer seasonalityPeriod; + global SmartDataDiscoveryProjectedPredictionsTransformationInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsType.cls new file mode 100644 index 0000000..21ba8cf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsType.cls @@ -0,0 +1,4 @@ +global enum SmartDataDiscoveryProjectedPredictionsType { +CATEGORICAL, +NUMERICAL +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedValue.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedValue.cls new file mode 100644 index 0000000..dc2f763 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedValue.cls @@ -0,0 +1,12 @@ +global class SmartDataDiscoveryProjectedValue { + global Double confidenceIntervalLowerBound; + global Double confidenceIntervalUpperBound; + global Double value; + global SmartDataDiscoveryProjectedValue() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPushbackField.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPushbackField.cls new file mode 100644 index 0000000..45dde8e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPushbackField.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryPushbackField { + global SmartDataDiscoveryPushbackField() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPushbackType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPushbackType.cls new file mode 100644 index 0000000..98c92d8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPushbackType.cls @@ -0,0 +1,4 @@ +global enum SmartDataDiscoveryPushbackType { +AIRECORDINSIGHT, +DIRECT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRecipient.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRecipient.cls new file mode 100644 index 0000000..599f998 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRecipient.cls @@ -0,0 +1,12 @@ +global class SmartDataDiscoveryRecipient { + global String displayName; + global String id; + global ConnectApi.SmartDataDiscoveryRecipientTypeEnum type; + global SmartDataDiscoveryRecipient() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRecipientInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRecipientInput.cls new file mode 100644 index 0000000..22949f4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRecipientInput.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryRecipientInput { + global String id; + global SmartDataDiscoveryRecipientInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRecipientTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRecipientTypeEnum.cls new file mode 100644 index 0000000..e4ee7a8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRecipientTypeEnum.cls @@ -0,0 +1,4 @@ +global enum SmartDataDiscoveryRecipientTypeEnum { +GROUP, +USER +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshConfig.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshConfig.cls new file mode 100644 index 0000000..9316e8d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshConfig.cls @@ -0,0 +1,14 @@ +global class SmartDataDiscoveryRefreshConfig { + global Boolean isEnabled; + global List recipientList; + global Boolean shouldScoreAfterRefresh; + global ConnectApi.SmartDataDiscoveryUser userContext; + global Double warningThresholdPercentage; + global SmartDataDiscoveryRefreshConfig() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshConfigInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshConfigInput.cls new file mode 100644 index 0000000..72dcdfb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshConfigInput.cls @@ -0,0 +1,13 @@ +global class SmartDataDiscoveryRefreshConfigInput { + global Boolean isEnabled; + global List recipientList; + global Boolean shouldScoreAfterRefresh; + global ConnectApi.SmartDataDiscoveryAssetReferenceInput userContext; + global Double warningThresholdPercentage; + global SmartDataDiscoveryRefreshConfigInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshJob.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshJob.cls new file mode 100644 index 0000000..3ad2528 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshJob.cls @@ -0,0 +1,20 @@ +global class SmartDataDiscoveryRefreshJob { + global ConnectApi.SmartDataDiscoveryUser createdBy; + global Datetime createdDate; + global Datetime endTime; + global String id; + global String message; + global ConnectApi.SmartDataDiscoveryAssetReference refreshTarget; + global String refreshTasksUrl; + global Datetime startTime; + global ConnectApi.SmartDataDiscoveryRefreshJobStatusEnum status; + global ConnectApi.SmartDataDiscoveryRefreshJobTypeEnum type; + global String url; + global SmartDataDiscoveryRefreshJob() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshJobCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshJobCollection.cls new file mode 100644 index 0000000..8895827 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshJobCollection.cls @@ -0,0 +1,12 @@ +global class SmartDataDiscoveryRefreshJobCollection { + global List refreshJobs; + global Integer totalSize; + global String url; + global SmartDataDiscoveryRefreshJobCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshJobInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshJobInput.cls new file mode 100644 index 0000000..65e28c8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshJobInput.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryRefreshJobInput { + global ConnectApi.SmartDataDiscoveryAssetReferenceInput refreshTarget; + global ConnectApi.SmartDataDiscoveryRefreshJobStatusEnum status; + global SmartDataDiscoveryRefreshJobInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshJobStatusEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshJobStatusEnum.cls new file mode 100644 index 0000000..361ec15 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshJobStatusEnum.cls @@ -0,0 +1,11 @@ +global enum SmartDataDiscoveryRefreshJobStatusEnum { +CANCELLED, +COMPLETEDWITHWARNINGS, +FAILURE, +NORUNNABLETASKS, +NOTSTARTED, +RUNNING, +SCORINGJOBFAILED, +SUCCESS, +USERNOTFOUND +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshJobTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshJobTypeEnum.cls new file mode 100644 index 0000000..b602151 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshJobTypeEnum.cls @@ -0,0 +1,4 @@ +global enum SmartDataDiscoveryRefreshJobTypeEnum { +SCHEDULED, +USERTRIGGERED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshTask.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshTask.cls new file mode 100644 index 0000000..79dbb9f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshTask.cls @@ -0,0 +1,20 @@ +global class SmartDataDiscoveryRefreshTask { + global ConnectApi.SmartDataDiscoveryUser createdBy; + global Datetime createdDate; + global Datetime endTime; + global String id; + global String message; + global ConnectApi.SmartDataDiscoveryAssetReference refreshTarget; + global ConnectApi.SmartDataDiscoveryAssetReference refreshedAIModel; + global ConnectApi.SmartDataDiscoveryRefreshTaskSource source; + global Datetime startTime; + global ConnectApi.SmartDataDiscoveryRefreshTaskStatusEnum status; + global String url; + global SmartDataDiscoveryRefreshTask() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshTaskCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshTaskCollection.cls new file mode 100644 index 0000000..410e9a9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshTaskCollection.cls @@ -0,0 +1,12 @@ +global class SmartDataDiscoveryRefreshTaskCollection { + global List refreshTasks; + global Integer totalSize; + global String url; + global SmartDataDiscoveryRefreshTaskCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshTaskSource.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshTaskSource.cls new file mode 100644 index 0000000..98ff5d6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshTaskSource.cls @@ -0,0 +1,12 @@ +global class SmartDataDiscoveryRefreshTaskSource { + global ConnectApi.SmartDataDiscoveryAssetReference datasetVersion; + global ConnectApi.SmartDataDiscoveryAssetReference story; + global ConnectApi.SmartDataDiscoveryAssetReference storyVersion; + global SmartDataDiscoveryRefreshTaskSource() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshTaskStatusEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshTaskStatusEnum.cls new file mode 100644 index 0000000..252bc19 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshTaskStatusEnum.cls @@ -0,0 +1,18 @@ +global enum SmartDataDiscoveryRefreshTaskStatusEnum { +ANALYSISNOTFOUND, +CANCELLED, +DATASETJOINFIELDSMISSING, +DATASETNOTFOUND, +DATASETNOTUPDATED, +FAILURE, +LIMITSREACHED, +MODELSCHEMACHANGED, +NOTSTARTED, +OUTCOMEVALUESCHANGED, +POISSONDISTRIBUTIONDISABLED, +RUNNING, +STORYCREATIONFAILURE, +SUCCESS, +USERNOTFOUND, +WARNINGTHRESHOLDREACHED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRegressionAlgorithmTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRegressionAlgorithmTypeEnum.cls new file mode 100644 index 0000000..6fd6d6d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRegressionAlgorithmTypeEnum.cls @@ -0,0 +1,6 @@ +global enum SmartDataDiscoveryRegressionAlgorithmTypeEnum { +DRF, +GBM, +GLM, +XGBOOST +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRegressionPredictionProperty.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRegressionPredictionProperty.cls new file mode 100644 index 0000000..45b2fd2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRegressionPredictionProperty.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryRegressionPredictionProperty { + global ConnectApi.SmartDataDiscoveryRegressionAlgorithmTypeEnum algorithmType; + global SmartDataDiscoveryRegressionPredictionProperty() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRegressionPredictionPropertyInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRegressionPredictionPropertyInput.cls new file mode 100644 index 0000000..44e93a6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRegressionPredictionPropertyInput.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryRegressionPredictionPropertyInput { + global ConnectApi.SmartDataDiscoveryRegressionAlgorithmTypeEnum algorithmType; + global SmartDataDiscoveryRegressionPredictionPropertyInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRowNestedList.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRowNestedList.cls new file mode 100644 index 0000000..63c292d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRowNestedList.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryRowNestedList { + global List row; + global SmartDataDiscoveryRowNestedList() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryScikitLearn102ModelRuntime.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryScikitLearn102ModelRuntime.cls new file mode 100644 index 0000000..bb5def6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryScikitLearn102ModelRuntime.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryScikitLearn102ModelRuntime { + global SmartDataDiscoveryScikitLearn102ModelRuntime() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryScikitlearn102ModelRuntimeInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryScikitlearn102ModelRuntimeInput.cls new file mode 100644 index 0000000..91bae39 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryScikitlearn102ModelRuntimeInput.cls @@ -0,0 +1,8 @@ +global class SmartDataDiscoveryScikitlearn102ModelRuntimeInput { + global SmartDataDiscoveryScikitlearn102ModelRuntimeInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoverySentimentAnalysisTransformation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoverySentimentAnalysisTransformation.cls new file mode 100644 index 0000000..835df5a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoverySentimentAnalysisTransformation.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoverySentimentAnalysisTransformation { + global SmartDataDiscoverySentimentAnalysisTransformation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoverySentimentAnalysisTransformationInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoverySentimentAnalysisTransformationInput.cls new file mode 100644 index 0000000..3b3574d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoverySentimentAnalysisTransformationInput.cls @@ -0,0 +1,8 @@ +global class SmartDataDiscoverySentimentAnalysisTransformationInput { + global SmartDataDiscoverySentimentAnalysisTransformationInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoverySetupPropertyTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoverySetupPropertyTypeEnum.cls new file mode 100644 index 0000000..1301a67 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoverySetupPropertyTypeEnum.cls @@ -0,0 +1,7 @@ +global enum SmartDataDiscoverySetupPropertyTypeEnum { +AUTOPILOT, +FIELDS, +INPUT, +MODELCONFIGURATION, +OUTCOME +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoverySortOrderEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoverySortOrderEnum.cls new file mode 100644 index 0000000..5e30588 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoverySortOrderEnum.cls @@ -0,0 +1,4 @@ +global enum SmartDataDiscoverySortOrderEnum { +ASCENDING, +DESCENDING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryStoryNarrativeElementTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryStoryNarrativeElementTypeEnum.cls new file mode 100644 index 0000000..1f1d982 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryStoryNarrativeElementTypeEnum.cls @@ -0,0 +1,14 @@ +global enum SmartDataDiscoveryStoryNarrativeElementTypeEnum { +BADSECTION, +BODY, +BUCKETSMISMATCHSECTION, +GOODSECTION, +HEADING, +MISSINGVALUESSECTION, +NEWVALUESSECTION, +NUMBEREDLIST, +OUTCOMEVALUE, +PARAGRAPH, +SUBHEADING, +UNORDEREDLIST +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTensorFlow27ModelRuntime.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTensorFlow27ModelRuntime.cls new file mode 100644 index 0000000..5cd13b2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTensorFlow27ModelRuntime.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryTensorFlow27ModelRuntime { + global SmartDataDiscoveryTensorFlow27ModelRuntime() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTensorFlow27ModelRuntimeInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTensorFlow27ModelRuntimeInput.cls new file mode 100644 index 0000000..e601875 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTensorFlow27ModelRuntimeInput.cls @@ -0,0 +1,8 @@ +global class SmartDataDiscoveryTensorFlow27ModelRuntimeInput { + global SmartDataDiscoveryTensorFlow27ModelRuntimeInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTensorFlowModelRuntime.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTensorFlowModelRuntime.cls new file mode 100644 index 0000000..f91dd36 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTensorFlowModelRuntime.cls @@ -0,0 +1,9 @@ +global class SmartDataDiscoveryTensorFlowModelRuntime { + global SmartDataDiscoveryTensorFlowModelRuntime() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTensorFlowModelRuntimeInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTensorFlowModelRuntimeInput.cls new file mode 100644 index 0000000..1ef7ef2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTensorFlowModelRuntimeInput.cls @@ -0,0 +1,8 @@ +global class SmartDataDiscoveryTensorFlowModelRuntimeInput { + global SmartDataDiscoveryTensorFlowModelRuntimeInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTextTransformationFilter.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTextTransformationFilter.cls new file mode 100644 index 0000000..340aebc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTextTransformationFilter.cls @@ -0,0 +1,11 @@ +global class SmartDataDiscoveryTextTransformationFilter { + global List clusters; + global Boolean includeOthers; + global SmartDataDiscoveryTextTransformationFilter() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTextTransformationFilterInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTextTransformationFilterInput.cls new file mode 100644 index 0000000..6311bfd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTextTransformationFilterInput.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryTextTransformationFilterInput { + global List clusters; + global Boolean includeOthers; + global SmartDataDiscoveryTextTransformationFilterInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTrainingMetricsRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTrainingMetricsRepresentation.cls new file mode 100644 index 0000000..f795aca --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTrainingMetricsRepresentation.cls @@ -0,0 +1,12 @@ +global class SmartDataDiscoveryTrainingMetricsRepresentation { + global Double mae; + global Integer rowCount; + global Map value; + global SmartDataDiscoveryTrainingMetricsRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTransformationFilterInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTransformationFilterInput.cls new file mode 100644 index 0000000..f5488c3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTransformationFilterInput.cls @@ -0,0 +1,8 @@ +global class SmartDataDiscoveryTransformationFilterInput { + global ConnectApi.SmartDataDiscoveryTransformationFilterTypeEnum type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTransformationFilterTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTransformationFilterTypeEnum.cls new file mode 100644 index 0000000..21fc76b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTransformationFilterTypeEnum.cls @@ -0,0 +1,4 @@ +global enum SmartDataDiscoveryTransformationFilterTypeEnum { +NUMBER, +TEXT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTransformationInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTransformationInput.cls new file mode 100644 index 0000000..4c5916a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTransformationInput.cls @@ -0,0 +1,8 @@ +global class SmartDataDiscoveryTransformationInput { + global ConnectApi.SmartDataDiscoveryAIModelTransformationTypeEnum type; + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTypographicClusteringTransformation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTypographicClusteringTransformation.cls new file mode 100644 index 0000000..5575277 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTypographicClusteringTransformation.cls @@ -0,0 +1,11 @@ +global class SmartDataDiscoveryTypographicClusteringTransformation { + global Integer distanceThreshold; + global Boolean ignoreCase; + global SmartDataDiscoveryTypographicClusteringTransformation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTypographicClusteringTransformationInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTypographicClusteringTransformationInput.cls new file mode 100644 index 0000000..87ad0ef --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTypographicClusteringTransformationInput.cls @@ -0,0 +1,10 @@ +global class SmartDataDiscoveryTypographicClusteringTransformationInput { + global Integer distanceThreshold; + global Boolean ignoreCase; + global SmartDataDiscoveryTypographicClusteringTransformationInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryUser.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryUser.cls new file mode 100644 index 0000000..405fa91 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartDataDiscoveryUser.cls @@ -0,0 +1,12 @@ +global class SmartDataDiscoveryUser { + global String id; + global String name; + global String profilePhotoUrl; + global SmartDataDiscoveryUser() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartResponseInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartResponseInput.cls new file mode 100644 index 0000000..bcc43d3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartResponseInput.cls @@ -0,0 +1,10 @@ +global class SmartResponseInput { + global ConnectApi.EinsteinResponseSpeakerType speaker; + global String text; + global SmartResponseInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartResponses.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartResponses.cls new file mode 100644 index 0000000..a51ac30 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SmartResponses.cls @@ -0,0 +1,3 @@ +global class SmartResponses { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Smartdatadiscovery.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Smartdatadiscovery.cls new file mode 100644 index 0000000..d179216 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Smartdatadiscovery.cls @@ -0,0 +1,3 @@ +global class Smartdatadiscovery { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialAccount.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialAccount.cls new file mode 100644 index 0000000..71969eb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialAccount.cls @@ -0,0 +1,14 @@ +global class SocialAccount { + global String externalSocialAccountId; + global String handle; + global String name; + global String profileUrl; + global String socialPersonaId; + global SocialAccount() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialAccountRelationship.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialAccountRelationship.cls new file mode 100644 index 0000000..542b117 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialAccountRelationship.cls @@ -0,0 +1,13 @@ +global class SocialAccountRelationship { + global Boolean isFollowed; + global Boolean isFollowing; + global String socialAccountId; + global String socialPersonaId; + global SocialAccountRelationship() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialCustomerServiceConfig.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialCustomerServiceConfig.cls new file mode 100644 index 0000000..04df899 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialCustomerServiceConfig.cls @@ -0,0 +1,22 @@ +global class SocialCustomerServiceConfig { + global String inboundApexHandlerId; + global Boolean isAllFBResponseAccountsEnabled; + global Boolean isInboundParentPostEnabled; + global Boolean isInboundProcessingConcurrencyEnabled; + global Boolean isPackageInstalled; + global Boolean isSocialPublishingApprovalEnabled; + global Boolean isTenantConnectionValid; + global Integer managedSocialAccountCount; + global Integer managedSocialAccountLimit; + global List providerSettings; + global String runAsUserId; + global String setupTenantUrl; + global String tenantType; + global SocialCustomerServiceConfig() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialCustomerServiceInboundErrors.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialCustomerServiceInboundErrors.cls new file mode 100644 index 0000000..9208d91 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialCustomerServiceInboundErrors.cls @@ -0,0 +1,10 @@ +global class SocialCustomerServiceInboundErrors { + global List scsInboundErrors; + global SocialCustomerServiceInboundErrors() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialCustomerServiceInboundPost.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialCustomerServiceInboundPost.cls new file mode 100644 index 0000000..7597468 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialCustomerServiceInboundPost.cls @@ -0,0 +1,13 @@ +global class SocialCustomerServiceInboundPost { + global Datetime createdDate; + global String errorDetail; + global String errorMessage; + global String id; + global SocialCustomerServiceInboundPost() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialCustomerServiceMessageTypeSettings.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialCustomerServiceMessageTypeSettings.cls new file mode 100644 index 0000000..3227309 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialCustomerServiceMessageTypeSettings.cls @@ -0,0 +1,11 @@ +global class SocialCustomerServiceMessageTypeSettings { + global Boolean isEnabled; + global ConnectApi.SocialPostMessageType messageType; + global SocialCustomerServiceMessageTypeSettings() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialCustomerServiceProviderSettings.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialCustomerServiceProviderSettings.cls new file mode 100644 index 0000000..7bb490c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialCustomerServiceProviderSettings.cls @@ -0,0 +1,11 @@ +global class SocialCustomerServiceProviderSettings { + global List messageTypeSettings; + global ConnectApi.SocialNetworkProvider provider; + global SocialCustomerServiceProviderSettings() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialEngagement.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialEngagement.cls new file mode 100644 index 0000000..2e38e7b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialEngagement.cls @@ -0,0 +1,3 @@ +global class SocialEngagement { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialNetworkAutenticationInformation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialNetworkAutenticationInformation.cls new file mode 100644 index 0000000..06c377b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialNetworkAutenticationInformation.cls @@ -0,0 +1,11 @@ +global class SocialNetworkAutenticationInformation { + global String oauthJWT; + global String oauthUrl; + global SocialNetworkAutenticationInformation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialNetworkProvider.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialNetworkProvider.cls new file mode 100644 index 0000000..74e5a0a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialNetworkProvider.cls @@ -0,0 +1,24 @@ +global enum SocialNetworkProvider { +FACEBOOK, +GOOGLEPLUS, +INSTAGRAM, +INSTAGRAMBUSINESS, +KAKAOTALK, +KIK, +LINE, +LINKEDIN, +MESSENGER, +OTHER, +PINTEREST, +QQ, +RYPPLE, +SMS, +SINAWEIBO, +SNAPCHAT, +TELEGRAM, +TWITTER, +VKONTAKTE, +WECHAT, +WHATSAPP, +YOUTUBE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialPostCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialPostCapability.cls new file mode 100644 index 0000000..a3fad4e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialPostCapability.cls @@ -0,0 +1,26 @@ +global class SocialPostCapability { + global ConnectApi.SocialAccount author; + global String content; + global ConnectApi.UserSummary deletedBy; + global ConnectApi.UserSummary hiddenBy; + global ConnectApi.Icon icon; + global String id; + global Boolean isOutbound; + global String likedBy; + global ConnectApi.SocialPostMessageType messageType; + global String name; + global String postUrl; + global ConnectApi.SocialNetworkProvider provider; + global ConnectApi.SocialAccount recipient; + global String recipientId; + global Double reviewScale; + global Double reviewScore; + global ConnectApi.SocialPostStatus status; + global SocialPostCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialPostIntents.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialPostIntents.cls new file mode 100644 index 0000000..82d8969 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialPostIntents.cls @@ -0,0 +1,15 @@ +global class SocialPostIntents { + global ConnectApi.ApprovalIntent approvalIntent; + global ConnectApi.DeleteIntents deleteIntent; + global ConnectApi.FollowIntents followIntent; + global ConnectApi.HideSocialPostIntent hideIntent; + global ConnectApi.LikeIntents likeIntent; + global ConnectApi.ReplyIntents replyIntent; + global SocialPostIntents() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialPostMassApprovalInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialPostMassApprovalInput.cls new file mode 100644 index 0000000..942fd09 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialPostMassApprovalInput.cls @@ -0,0 +1,10 @@ +global class SocialPostMassApprovalInput { + global Boolean isApproved; + global List socialPostIdList; + global SocialPostMassApprovalInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialPostMassApprovalOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialPostMassApprovalOutput.cls new file mode 100644 index 0000000..85a058e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialPostMassApprovalOutput.cls @@ -0,0 +1,10 @@ +global class SocialPostMassApprovalOutput { + global Boolean isApproved; + global SocialPostMassApprovalOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialPostMessageType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialPostMessageType.cls new file mode 100644 index 0000000..6b75a2a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialPostMessageType.cls @@ -0,0 +1,9 @@ +global enum SocialPostMessageType { +COMMENT, +DIRECT, +POST, +PRIVATEMESSAGE, +REPLY, +RETWEET, +TWEET +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialPostStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialPostStatus.cls new file mode 100644 index 0000000..e6be7e1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialPostStatus.cls @@ -0,0 +1,11 @@ +global class SocialPostStatus { + global String message; + global ConnectApi.SocialPostStatusType type; + global SocialPostStatus() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialPostStatusType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialPostStatusType.cls new file mode 100644 index 0000000..b53d3d4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SocialPostStatusType.cls @@ -0,0 +1,12 @@ +global enum SocialPostStatusType { +APPROVALPENDING, +APPROVALRECALLED, +APPROVALREJECTED, +DELETED, +FAILED, +HIDDEN, +PENDING, +REPLIED, +SENT, +UNKNOWN +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SortOrder.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SortOrder.cls new file mode 100644 index 0000000..372b58e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SortOrder.cls @@ -0,0 +1,5 @@ +global enum SortOrder { +ASCENDING, +DESCENDING, +MOSTRECENTLYVIEWED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SortOrderEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SortOrderEnum.cls new file mode 100644 index 0000000..78c8b6a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SortOrderEnum.cls @@ -0,0 +1,4 @@ +global enum SortOrderEnum { +ASCENDING, +DESCENDING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SortRule.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SortRule.cls new file mode 100644 index 0000000..3053942 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SortRule.cls @@ -0,0 +1,16 @@ +global class SortRule { + global ConnectApi.CommerceSearchSortRuleDirection direction; + global String label; + global ConnectApi.ConnectCommerceSearchSortRuleLabelSuffix labelSuffix; + global String nameOrId; + global Integer sortOrder; + global String sortRuleId; + global ConnectApi.CommerceSearchSortRuleType type; + global SortRule() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SortRulesCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SortRulesCollection.cls new file mode 100644 index 0000000..955c85a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SortRulesCollection.cls @@ -0,0 +1,10 @@ +global class SortRulesCollection { + global List sortRules; + global SortRulesCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Stamp.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Stamp.cls new file mode 100644 index 0000000..7542e80 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Stamp.cls @@ -0,0 +1,13 @@ +global class Stamp { + global String description; + global String id; + global String imageUrl; + global String label; + global Stamp() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StandaloneCreditMemoAdjustmentInputRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StandaloneCreditMemoAdjustmentInputRequest.cls new file mode 100644 index 0000000..0931c0e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StandaloneCreditMemoAdjustmentInputRequest.cls @@ -0,0 +1,9 @@ +global class StandaloneCreditMemoAdjustmentInputRequest { + global Double adjustmentAmount; + global StandaloneCreditMemoAdjustmentInputRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StandaloneCreditMemoChargeInputRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StandaloneCreditMemoChargeInputRequest.cls new file mode 100644 index 0000000..8f94fa5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StandaloneCreditMemoChargeInputRequest.cls @@ -0,0 +1,10 @@ +global class StandaloneCreditMemoChargeInputRequest { + global List adjustments; + global Double chargeAmount; + global StandaloneCreditMemoChargeInputRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StandaloneCreditMemoInputRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StandaloneCreditMemoInputRequest.cls new file mode 100644 index 0000000..6db3463 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StandaloneCreditMemoInputRequest.cls @@ -0,0 +1,20 @@ +global class StandaloneCreditMemoInputRequest { + global List adjustments; + global String billToContactId; + global String billingAccountId; + global List charges; + global String currencyIsoCode; + global String description; + global String effectiveDate; + global String externalReference; + global String externalReferenceDataSource; + global String taxEffectiveDate; + global ConnectApi.StandaloneTaxStrategyEnum taxStrategy; + global ConnectApi.CreditMemoTypeEnum type; + global StandaloneCreditMemoInputRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StandaloneCreditMemoTaxInputRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StandaloneCreditMemoTaxInputRequest.cls new file mode 100644 index 0000000..62a4668 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StandaloneCreditMemoTaxInputRequest.cls @@ -0,0 +1,12 @@ +global class StandaloneCreditMemoTaxInputRequest { + global Double taxAmount; + global String taxCode; + global String taxName; + global Double taxRate; + global StandaloneCreditMemoTaxInputRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StandaloneTaxStrategyEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StandaloneTaxStrategyEnum.cls new file mode 100644 index 0000000..7fbabb3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StandaloneTaxStrategyEnum.cls @@ -0,0 +1,5 @@ +global enum StandaloneTaxStrategyEnum { +CALCULATE, +IGNORE, +MANUALOVERRIDE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StatementFrequencyResource.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StatementFrequencyResource.cls new file mode 100644 index 0000000..61ac391 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StatementFrequencyResource.cls @@ -0,0 +1,4 @@ +global enum StatementFrequencyResource { +MONTHLY, +QUARTERLY +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StatementMethodResource.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StatementMethodResource.cls new file mode 100644 index 0000000..331f844 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StatementMethodResource.cls @@ -0,0 +1,4 @@ +global enum StatementMethodResource { +EMAIL, +MAIL +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Status.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Status.cls new file mode 100644 index 0000000..9335ea5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Status.cls @@ -0,0 +1,11 @@ +global class Status { + global Integer code; + global String message; + global Status() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StatusCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StatusCapability.cls new file mode 100644 index 0000000..8be4fc8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StatusCapability.cls @@ -0,0 +1,11 @@ +global class StatusCapability { + global ConnectApi.FeedEntityStatus feedEntityStatus; + global Boolean isApprovableByMe; + global StatusCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StatusCapabilityInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StatusCapabilityInput.cls new file mode 100644 index 0000000..5acb411 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StatusCapabilityInput.cls @@ -0,0 +1,9 @@ +global class StatusCapabilityInput { + global ConnectApi.FeedEntityStatus feedEntityStatus; + global StatusCapabilityInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StoryAnalysisTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StoryAnalysisTypeEnum.cls new file mode 100644 index 0000000..05fed67 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StoryAnalysisTypeEnum.cls @@ -0,0 +1,4 @@ +global enum StoryAnalysisTypeEnum { +COUNT, +DESCRIPTIVE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StoryChartValueTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StoryChartValueTypeEnum.cls new file mode 100644 index 0000000..d38e681 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StoryChartValueTypeEnum.cls @@ -0,0 +1,9 @@ +global enum StoryChartValueTypeEnum { +AVERAGE, +BASELINE, +IMPACT, +PREDICTION, +SMALLTERMS, +UNEXPLAINED, +VALUE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StoryCountInsightsFrequencyChangeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StoryCountInsightsFrequencyChangeEnum.cls new file mode 100644 index 0000000..b478dc2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StoryCountInsightsFrequencyChangeEnum.cls @@ -0,0 +1,4 @@ +global enum StoryCountInsightsFrequencyChangeEnum { +DOWN, +UP +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StoryCountInsightsFrequencyEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StoryCountInsightsFrequencyEnum.cls new file mode 100644 index 0000000..32b6510 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StoryCountInsightsFrequencyEnum.cls @@ -0,0 +1,4 @@ +global enum StoryCountInsightsFrequencyEnum { +LESSOFTEN, +MOREOFTEN +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StoryDescriptiveInsightsImpactEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StoryDescriptiveInsightsImpactEnum.cls new file mode 100644 index 0000000..5f81266 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StoryDescriptiveInsightsImpactEnum.cls @@ -0,0 +1,4 @@ +global enum StoryDescriptiveInsightsImpactEnum { +IMPROVED, +WORSENED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StoryDescriptiveInsightsRatingEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StoryDescriptiveInsightsRatingEnum.cls new file mode 100644 index 0000000..391694a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StoryDescriptiveInsightsRatingEnum.cls @@ -0,0 +1,6 @@ +global enum StoryDescriptiveInsightsRatingEnum { +ABOVEAVERAGE, +BELOWAVERAGE, +HIGHER, +LOWER +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StrategyTrace.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StrategyTrace.cls new file mode 100644 index 0000000..60fbfb1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StrategyTrace.cls @@ -0,0 +1,11 @@ +global class StrategyTrace { + global List messages; + global List nodes; + global StrategyTrace() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StrategyTraceNode.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StrategyTraceNode.cls new file mode 100644 index 0000000..c0b042b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StrategyTraceNode.cls @@ -0,0 +1,17 @@ +global class StrategyTraceNode { + global Integer inputCount; + global List messages; + global String nodeName; + global Long nodeTime; + global String nodeType; + global Integer outputCount; + global List outputs; + global Long totalTime; + global StrategyTraceNode() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StreamSubscriptionInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StreamSubscriptionInput.cls new file mode 100644 index 0000000..f7a56b9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/StreamSubscriptionInput.cls @@ -0,0 +1,9 @@ +global class StreamSubscriptionInput { + global String entityId; + global StreamSubscriptionInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SubmitCancelOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SubmitCancelOutputRepresentation.cls new file mode 100644 index 0000000..32b3eb7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SubmitCancelOutputRepresentation.cls @@ -0,0 +1,12 @@ +global class SubmitCancelOutputRepresentation { + global ConnectApi.ChangeItemOutputRepresentation changeBalances; + global String changeOrderId; + global String feeChangeOrderId; + global SubmitCancelOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SubmitReturnOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SubmitReturnOutputRepresentation.cls new file mode 100644 index 0000000..85260e6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SubmitReturnOutputRepresentation.cls @@ -0,0 +1,12 @@ +global class SubmitReturnOutputRepresentation { + global ConnectApi.ChangeItemOutputRepresentation changeBalances; + global String changeOrderId; + global String feeChangeOrderId; + global SubmitReturnOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SubscriberOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SubscriberOutput.cls new file mode 100644 index 0000000..4b2a631 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SubscriberOutput.cls @@ -0,0 +1,12 @@ +global class SubscriberOutput { + global String firstName; + global String lastName; + global String memberID; + global SubscriberOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Subscription.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Subscription.cls new file mode 100644 index 0000000..853c30b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Subscription.cls @@ -0,0 +1,14 @@ +global class Subscription { + global ConnectApi.Reference community; + global String id; + global ConnectApi.ActorWithId subject; + global ConnectApi.ActorWithId subscriber; + global String url; + global Subscription() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Suggestion.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Suggestion.cls new file mode 100644 index 0000000..78cf9d0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Suggestion.cls @@ -0,0 +1,11 @@ +global class Suggestion { + global List columns; + global Double value; + global Suggestion() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SupportedEmojis.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SupportedEmojis.cls new file mode 100644 index 0000000..992019e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SupportedEmojis.cls @@ -0,0 +1,10 @@ +global class SupportedEmojis { + global ConnectApi.EmojiCollection supportedEmojis; + global SupportedEmojis() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SurveyEmailStatusEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SurveyEmailStatusEnum.cls new file mode 100644 index 0000000..311b86b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SurveyEmailStatusEnum.cls @@ -0,0 +1,4 @@ +global enum SurveyEmailStatusEnum { +FAILED, +QUEUED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SurveyInvitationEmailInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SurveyInvitationEmailInput.cls new file mode 100644 index 0000000..307b5ed --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SurveyInvitationEmailInput.cls @@ -0,0 +1,24 @@ +global class SurveyInvitationEmailInput { + global Boolean allowGuestUserResponse; + global Boolean allowParticipantsAccessTheirResponse; + global List associateRecordsWithRecipients; + global String body; + global Boolean collectAnonymousResponse; + global String communityId; + global String emailTemplateId; + global String fromEmailAddress; + global Datetime invitationExpirationDate; + global String invitationOwner; + global Boolean isPersonalInvitation; + global List recipientEngagementContexts; + global List recipients; + global List shareInvitationsWith; + global String subject; + global List surveyQuestionIds; + global SurveyInvitationEmailInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SurveyInvitationEmailOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SurveyInvitationEmailOutput.cls new file mode 100644 index 0000000..24c9337 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SurveyInvitationEmailOutput.cls @@ -0,0 +1,12 @@ +global class SurveyInvitationEmailOutput { + global Integer errorCode; + global String errorMessage; + global ConnectApi.SurveyEmailStatusEnum status; + global SurveyInvitationEmailOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SurveyMassInvitationEmailInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SurveyMassInvitationEmailInput.cls new file mode 100644 index 0000000..6f5679d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SurveyMassInvitationEmailInput.cls @@ -0,0 +1,24 @@ +global class SurveyMassInvitationEmailInput { + global Boolean allowGuestUserResponse; + global Boolean allowParticipantsAccessTheirResponse; + global String body; + global Boolean collectAnonymousResponse; + global String communityId; + global String emailTemplateId; + global String fromEmailAddress; + global Datetime invitationExpirationDate; + global String invitationOwner; + global Boolean isPersonalInvitation; + global String listViewId; + global String recipientPath; + global List shareInvitationsWith; + global String subject; + global List surveyQuestionIds; + global String surveySubjectPath; + global SurveyMassInvitationEmailInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SurveyNavigationActionEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SurveyNavigationActionEnum.cls new file mode 100644 index 0000000..ced4859 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SurveyNavigationActionEnum.cls @@ -0,0 +1,4 @@ +global enum SurveyNavigationActionEnum { +BACK, +NEXT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SurveyResponseApiStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SurveyResponseApiStatus.cls new file mode 100644 index 0000000..7a99f51 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/SurveyResponseApiStatus.cls @@ -0,0 +1,4 @@ +global enum SurveyResponseApiStatus { +FAILURE, +SUCCESS +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Surveys.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Surveys.cls new file mode 100644 index 0000000..d2bd6e0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Surveys.cls @@ -0,0 +1,5 @@ +global class Surveys { + global Object clone() { } + global static ConnectApi.SurveyInvitationEmailOutput sendSurveyInvitationEmail(String surveyID, ConnectApi.SurveyInvitationEmailInput SurveyEmailInput) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Target.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Target.cls new file mode 100644 index 0000000..ddc0883 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Target.cls @@ -0,0 +1,19 @@ +global class Target { + global ConnectApi.AudienceTarget audience; + global ConnectApi.FormulaScope formulaScope; + global String groupName; + global String id; + global Integer priority; + global ConnectApi.PublishStatus publishStatus; + global List scope; + global String targetType; + global String targetValue; + global String url; + global Target() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TargetCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TargetCollection.cls new file mode 100644 index 0000000..dec175f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TargetCollection.cls @@ -0,0 +1,10 @@ +global class TargetCollection { + global List targets; + global TargetCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TargetCollectionInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TargetCollectionInput.cls new file mode 100644 index 0000000..65f6d0a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TargetCollectionInput.cls @@ -0,0 +1,9 @@ +global class TargetCollectionInput { + global List targets; + global TargetCollectionInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TargetCollectionUpdateInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TargetCollectionUpdateInput.cls new file mode 100644 index 0000000..ce480e6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TargetCollectionUpdateInput.cls @@ -0,0 +1,9 @@ +global class TargetCollectionUpdateInput { + global List targets; + global TargetCollectionUpdateInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TargetInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TargetInput.cls new file mode 100644 index 0000000..f6b0c16 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TargetInput.cls @@ -0,0 +1,14 @@ +global class TargetInput { + global String audienceId; + global String groupName; + global Integer priority; + global ConnectApi.PublishStatus publishStatus; + global String targetType; + global String targetValue; + global TargetInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TargetLocationInputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TargetLocationInputRepresentation.cls new file mode 100644 index 0000000..af0c39c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TargetLocationInputRepresentation.cls @@ -0,0 +1,9 @@ +global class TargetLocationInputRepresentation { + global List locations; + global TargetLocationInputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TargetUpdateInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TargetUpdateInput.cls new file mode 100644 index 0000000..34518e1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TargetUpdateInput.cls @@ -0,0 +1,11 @@ +global class TargetUpdateInput { + global String audienceId; + global Integer priority; + global String targetId; + global TargetUpdateInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxAddressRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxAddressRequest.cls new file mode 100644 index 0000000..eb9c99d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxAddressRequest.cls @@ -0,0 +1,16 @@ +global class TaxAddressRequest { + global String city; + global String country; + global Double latitude; + global String locationCode; + global Double longitude; + global String postalCode; + global String state; + global String street; + global TaxAddressRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxAddressResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxAddressResponse.cls new file mode 100644 index 0000000..3c9cb24 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxAddressResponse.cls @@ -0,0 +1,10 @@ +global class TaxAddressResponse { + global String locationCode; + global TaxAddressResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxAddressesRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxAddressesRequest.cls new file mode 100644 index 0000000..1d6e043 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxAddressesRequest.cls @@ -0,0 +1,12 @@ +global class TaxAddressesRequest { + global ConnectApi.TaxAddressRequest billTo; + global ConnectApi.TaxAddressRequest shipFrom; + global ConnectApi.TaxAddressRequest shipTo; + global ConnectApi.TaxAddressRequest soldTo; + global TaxAddressesRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxAddressesResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxAddressesResponse.cls new file mode 100644 index 0000000..ff3bb4b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxAddressesResponse.cls @@ -0,0 +1,12 @@ +global class TaxAddressesResponse { + global ConnectApi.TaxAddressResponse shipFrom; + global ConnectApi.TaxAddressResponse shipTo; + global ConnectApi.TaxAddressResponse soldTo; + global TaxAddressesResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxAmountDetailsResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxAmountDetailsResponse.cls new file mode 100644 index 0000000..cbac705 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxAmountDetailsResponse.cls @@ -0,0 +1,13 @@ +global class TaxAmountDetailsResponse { + global Double exemptAmount; + global Double taxAmount; + global Double totalAmount; + global Double totalAmountWithTax; + global TaxAmountDetailsResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxCustomerDetailsRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxCustomerDetailsRequest.cls new file mode 100644 index 0000000..29718f3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxCustomerDetailsRequest.cls @@ -0,0 +1,12 @@ +global class TaxCustomerDetailsRequest { + global String accountId; + global String code; + global String exemptionNo; + global String exemptionReason; + global TaxCustomerDetailsRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxDetailsResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxDetailsResponse.cls new file mode 100644 index 0000000..a6237e6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxDetailsResponse.cls @@ -0,0 +1,17 @@ +global class TaxDetailsResponse { + global Double exemptAmount; + global String exemptReason; + global ConnectApi.TaxImpositionResponse imposition; + global ConnectApi.TaxJurisdictionResponse jurisdiction; + global Double rate; + global Double tax; + global String taxId; + global Double taxableAmount; + global TaxDetailsResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxEngineLogResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxEngineLogResponse.cls new file mode 100644 index 0000000..6403150 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxEngineLogResponse.cls @@ -0,0 +1,12 @@ +global class TaxEngineLogResponse { + global Datetime createdDate; + global String id; + global String resultCode; + global TaxEngineLogResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxImpositionResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxImpositionResponse.cls new file mode 100644 index 0000000..6c3fb06 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxImpositionResponse.cls @@ -0,0 +1,11 @@ +global class TaxImpositionResponse { + global String name; + global String type; + global TaxImpositionResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxJurisdictionResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxJurisdictionResponse.cls new file mode 100644 index 0000000..080cbc0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxJurisdictionResponse.cls @@ -0,0 +1,15 @@ +global class TaxJurisdictionResponse { + global String country; + global String id; + global String level; + global String name; + global String region; + global String stateAssignedNo; + global TaxJurisdictionResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxLineItemRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxLineItemRequest.cls new file mode 100644 index 0000000..0cb7cf1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxLineItemRequest.cls @@ -0,0 +1,16 @@ +global class TaxLineItemRequest { + global ConnectApi.TaxAddressesRequest addresses; + global Double amount; + global String description; + global Datetime effectiveDate; + global String lineNumber; + global String productCode; + global Double quantity; + global String taxCode; + global TaxLineItemRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxLocaleType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxLocaleType.cls new file mode 100644 index 0000000..8006279 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxLocaleType.cls @@ -0,0 +1,4 @@ +global enum TaxLocaleType { +GROSS, +NET +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxPlatform.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxPlatform.cls new file mode 100644 index 0000000..e99e2a4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxPlatform.cls @@ -0,0 +1,3 @@ +global class TaxPlatform { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxStrategyEnum.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxStrategyEnum.cls new file mode 100644 index 0000000..7c161fc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxStrategyEnum.cls @@ -0,0 +1,6 @@ +global enum TaxStrategyEnum { +CALCULATE, +COPYFROMINVOICELINE, +IGNORE, +MANUALOVERRIDE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxTransactionRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxTransactionRequest.cls new file mode 100644 index 0000000..a80e9b7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxTransactionRequest.cls @@ -0,0 +1,17 @@ +global class TaxTransactionRequest { + global ConnectApi.TaxAddressesRequest addresses; + global String currencyIsoCode; + global ConnectApi.TaxCustomerDetailsRequest customerDetails; + global String description; + global String documentCode; + global Datetime effectiveDate; + global List lineItems; + global String referenceDocumentCode; + global String referenceEntityId; + global Datetime transactionDate; + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxTransactionResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxTransactionResponse.cls new file mode 100644 index 0000000..ab7cb88 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxTransactionResponse.cls @@ -0,0 +1,19 @@ +global class TaxTransactionResponse { + global ConnectApi.TaxAddressesResponse addresses; + global ConnectApi.TaxAmountDetailsResponse amountDetails; + global String currencyIsoCode; + global String description; + global String documentCode; + global Datetime effectiveDate; + global List lineItems; + global String referenceDocumentCode; + global String referenceEntityId; + global String taxTransactionId; + global Datetime transactionDate; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxTransactionState.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxTransactionState.cls new file mode 100644 index 0000000..7301687 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxTransactionState.cls @@ -0,0 +1,4 @@ +global enum TaxTransactionState { +COMMITTED, +UNCOMMITTED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxTransactionType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxTransactionType.cls new file mode 100644 index 0000000..d26664f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxTransactionType.cls @@ -0,0 +1,4 @@ +global enum TaxTransactionType { +CREDIT, +DEBIT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxType.cls new file mode 100644 index 0000000..15645d7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TaxType.cls @@ -0,0 +1,4 @@ +global enum TaxType { +ACTUAL, +ESTIMATED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TermsOfService.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TermsOfService.cls new file mode 100644 index 0000000..23e0dd8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TermsOfService.cls @@ -0,0 +1,11 @@ +global class TermsOfService { + global String acceptingUserId; + global String termsOfServiceUrl; + global TermsOfService() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TextSegment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TextSegment.cls new file mode 100644 index 0000000..37070f4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TextSegment.cls @@ -0,0 +1,9 @@ +global class TextSegment { + global TextSegment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TextSegmentInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TextSegmentInput.cls new file mode 100644 index 0000000..8fc48bc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TextSegmentInput.cls @@ -0,0 +1,9 @@ +global class TextSegmentInput { + global String text; + global TextSegmentInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TextSmartResponse.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TextSmartResponse.cls new file mode 100644 index 0000000..fac8f4f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TextSmartResponse.cls @@ -0,0 +1,10 @@ +global class TextSmartResponse { + global String predefinedAgentResponseId; + global TextSmartResponse() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TimeZone.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TimeZone.cls new file mode 100644 index 0000000..8bc9ee7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TimeZone.cls @@ -0,0 +1,11 @@ +global class TimeZone { + global Double gmtOffset; + global String name; + global TimeZone() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ToggleCallTranscriptionResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ToggleCallTranscriptionResult.cls new file mode 100644 index 0000000..6f02d76 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ToggleCallTranscriptionResult.cls @@ -0,0 +1,12 @@ +global class ToggleCallTranscriptionResult { + global String errorMessage; + global Boolean isSuccess; + global Boolean isTranscriptionEnabled; + global ToggleCallTranscriptionResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Topic.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Topic.cls new file mode 100644 index 0000000..b7d83f2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Topic.cls @@ -0,0 +1,18 @@ +global class Topic { + global Datetime createdDate; + global String description; + global String id; + global ConnectApi.TopicImages images; + global Boolean isBeingDeleted; + global String name; + global String nonLocalizedName; + global Integer talkingAbout; + global String url; + global Topic() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicEndorsementSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicEndorsementSummary.cls new file mode 100644 index 0000000..01296ea --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicEndorsementSummary.cls @@ -0,0 +1,10 @@ +global class TopicEndorsementSummary { + global String endorsementId; + global TopicEndorsementSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicImages.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicImages.cls new file mode 100644 index 0000000..843b640 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicImages.cls @@ -0,0 +1,11 @@ +global class TopicImages { + global String coverImageUrl; + global String featuredImageUrl; + global TopicImages() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicInput.cls new file mode 100644 index 0000000..ae63bd8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicInput.cls @@ -0,0 +1,11 @@ +global class TopicInput { + global String description; + global List idsToMerge; + global String name; + global TopicInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicNamesInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicNamesInput.cls new file mode 100644 index 0000000..f0afd79 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicNamesInput.cls @@ -0,0 +1,10 @@ +global class TopicNamesInput { + global List topicNames; + global List topicSuggestions; + global TopicNamesInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicPage.cls new file mode 100644 index 0000000..fa7b6a0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicPage.cls @@ -0,0 +1,12 @@ +global class TopicPage { + global String currentPageUrl; + global String nextPageUrl; + global List topics; + global TopicPage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicSort.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicSort.cls new file mode 100644 index 0000000..53baf95 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicSort.cls @@ -0,0 +1,4 @@ +global enum TopicSort { +ALPHAASC, +POPULARDESC +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicSuggestion.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicSuggestion.cls new file mode 100644 index 0000000..8034c9e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicSuggestion.cls @@ -0,0 +1,11 @@ +global class TopicSuggestion { + global ConnectApi.Topic existingTopic; + global String name; + global TopicSuggestion() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicSuggestionPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicSuggestionPage.cls new file mode 100644 index 0000000..b3e57cc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicSuggestionPage.cls @@ -0,0 +1,10 @@ +global class TopicSuggestionPage { + global List topicSuggestions; + global TopicSuggestionPage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicSummary.cls new file mode 100644 index 0000000..3d3d104 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicSummary.cls @@ -0,0 +1,11 @@ +global class TopicSummary { + global String id; + global String name; + global TopicSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Topics.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Topics.cls new file mode 100644 index 0000000..84fe7fe --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Topics.cls @@ -0,0 +1,47 @@ +global class Topics { + global static ConnectApi.Topic assignTopic(String communityId, String recordId, String topicId) { } + global static ConnectApi.Topic assignTopicByName(String communityId, String recordId, String topicName) { } + global Object clone() { } + global static ConnectApi.Topic createTopic(String communityId, String name, String description) { } + global static ConnectApi.TopicPage createTopicDataCategoryRules(String communityId, String dataCategoryGroup, String dataCategory, ConnectApi.TopicNamesInput topicNames) { } + global static void deleteTopic(String communityId, String topicId) { } + global static ConnectApi.ChatterGroupSummaryPage getGroupsRecentlyTalkingAboutTopic(String communityId, String topicId) { } + global static ConnectApi.TopicPage getRecentlyTalkingAboutTopicsForGroup(String communityId, String groupId) { } + global static ConnectApi.TopicPage getRecentlyTalkingAboutTopicsForUser(String communityId, String userId) { } + global static ConnectApi.TopicPage getRelatedTopics(String communityId, String topicId) { } + global static ConnectApi.Topic getTopic(String communityId, String topicId) { } + global static ConnectApi.TopicPage getTopicDataCategoryRules(String communityId, String dataCategoryGroup, String dataCategory) { } + global static ConnectApi.TopicSuggestionPage getTopicSuggestions(String communityId, String recordId, Integer maxResults) { } + global static ConnectApi.TopicSuggestionPage getTopicSuggestions(String communityId, String recordId) { } + global static ConnectApi.TopicSuggestionPage getTopicSuggestionsForText(String communityId, String text, Integer maxResults) { } + global static ConnectApi.TopicSuggestionPage getTopicSuggestionsForText(String communityId, String text) { } + global static ConnectApi.TopicPage getTopics(String communityId, String q, Integer pageParam, Integer pageSize, ConnectApi.TopicSort sortParam) { } + global static ConnectApi.TopicPage getTopics(String communityId, Integer pageParam, Integer pageSize, ConnectApi.TopicSort sortParam) { } + global static ConnectApi.TopicPage getTopics(String communityId, String q, Integer pageParam, Integer pageSize) { } + global static ConnectApi.TopicPage getTopics(String communityId, Integer pageParam, Integer pageSize) { } + global static ConnectApi.TopicPage getTopics(String communityId, String q, Boolean exactMatch) { } + global static ConnectApi.TopicPage getTopics(String communityId, String q, ConnectApi.TopicSort sortParam) { } + global static ConnectApi.TopicPage getTopics(String communityId, ConnectApi.TopicSort sortParam) { } + global static ConnectApi.TopicPage getTopics(String communityId, String recordId) { } + global static ConnectApi.TopicPage getTopics(String communityId) { } + global static ConnectApi.TopicPage getTopicsOrFallBackToRenamedTopics(String communityId, String q, Boolean exactMatch, Boolean fallBackToRenamedTopics) { } + global static ConnectApi.TopicPage getTrendingTopics(String communityId, Integer maxResults) { } + global static ConnectApi.TopicPage getTrendingTopics(String communityId) { } + global static ConnectApi.Topic mergeTopics(String communityId, String topicId, List idsToMerge) { } + global static ConnectApi.TopicPage reassignTopicDataCategoryRules(String communityId, String dataCategoryGroup, String dataCategory, ConnectApi.TopicNamesInput topicNames) { } + global static ConnectApi.TopicPage reassignTopicsByName(String communityId, String recordId, ConnectApi.TopicNamesInput topicNames) { } + global static void setTestGetGroupsRecentlyTalkingAboutTopic(String communityId, String topicId, ConnectApi.ChatterGroupSummaryPage result) { } + global static void setTestGetRecentlyTalkingAboutTopicsForGroup(String communityId, String groupId, ConnectApi.TopicPage result) { } + global static void setTestGetRecentlyTalkingAboutTopicsForUser(String communityId, String userId, ConnectApi.TopicPage result) { } + global static void setTestGetRelatedTopics(String communityId, String topicId, ConnectApi.TopicPage result) { } + global static void setTestGetTopicSuggestions(String communityId, String recordId, Integer maxResults, ConnectApi.TopicSuggestionPage result) { } + global static void setTestGetTopicSuggestions(String communityId, String recordId, ConnectApi.TopicSuggestionPage result) { } + global static void setTestGetTopicSuggestionsForText(String communityId, String text, Integer maxResults, ConnectApi.TopicSuggestionPage result) { } + global static void setTestGetTopicSuggestionsForText(String communityId, String text, ConnectApi.TopicSuggestionPage result) { } + global static void setTestGetTrendingTopics(String communityId, Integer maxResults, ConnectApi.TopicPage result) { } + global static void setTestGetTrendingTopics(String communityId, ConnectApi.TopicPage result) { } + global static void unassignTopic(String communityId, String recordId, String topicId) { } + global static ConnectApi.Topic updateTopic(String communityId, String topicId, ConnectApi.TopicInput topic) { } + global static ConnectApi.TopicPage updateTopicsForArticlesInDataCategory(String communityId, String dataCategoryGroup, String dataCategory, ConnectApi.ArticleTopicAssignmentJobInput articleTopicAssignmentJob) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicsCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicsCapability.cls new file mode 100644 index 0000000..ea5116d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicsCapability.cls @@ -0,0 +1,11 @@ +global class TopicsCapability { + global Boolean canAssignTopics; + global List items; + global TopicsCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicsCapabilityInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicsCapabilityInput.cls new file mode 100644 index 0000000..7f8259e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TopicsCapabilityInput.cls @@ -0,0 +1,10 @@ +global class TopicsCapabilityInput { + global String contextTopicName; + global List topics; + global TopicsCapabilityInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TrackedChangeAttachment.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TrackedChangeAttachment.cls new file mode 100644 index 0000000..93f2bff --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TrackedChangeAttachment.cls @@ -0,0 +1,10 @@ +global class TrackedChangeAttachment { + global List changes; + global TrackedChangeAttachment() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TrackedChangeBundleCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TrackedChangeBundleCapability.cls new file mode 100644 index 0000000..14917e5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TrackedChangeBundleCapability.cls @@ -0,0 +1,10 @@ +global class TrackedChangeBundleCapability { + global List changes; + global TrackedChangeBundleCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TrackedChangeItem.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TrackedChangeItem.cls new file mode 100644 index 0000000..556fccd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TrackedChangeItem.cls @@ -0,0 +1,12 @@ +global class TrackedChangeItem { + global String fieldName; + global String newValue; + global String oldValue; + global TrackedChangeItem() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TrackedChangesCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TrackedChangesCapability.cls new file mode 100644 index 0000000..106a65b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TrackedChangesCapability.cls @@ -0,0 +1,10 @@ +global class TrackedChangesCapability { + global List changes; + global TrackedChangesCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TrackedCommunicationOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TrackedCommunicationOutput.cls new file mode 100644 index 0000000..ec49673 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TrackedCommunicationOutput.cls @@ -0,0 +1,27 @@ +global class TrackedCommunicationOutput { + global List categories; + global String communicatorReference; + global String contextReference; + global List mediums; + global String name; + global List notes; + global Datetime occurrenceEndDateTime; + global Datetime occurrenceStartDateTime; + global List payloads; + global String priority; + global List reasonCodes; + global List recipients; + global List replacedItems; + global String requesterReference; + global String status; + global String statusReason; + global String subject; + global String type; + global TrackedCommunicationOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TransactionEventInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TransactionEventInput.cls new file mode 100644 index 0000000..045b24c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TransactionEventInput.cls @@ -0,0 +1,15 @@ +global class TransactionEventInput { + global String contractAddress; + global List fieldNames; + global List fieldTypes; + global List fieldsIndexedInfo; + global String fromBlock; + global String methodName; + global String url; + global TransactionEventInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TransactionEventOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TransactionEventOutput.cls new file mode 100644 index 0000000..42e0eae --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TransactionEventOutput.cls @@ -0,0 +1,11 @@ +global class TransactionEventOutput { + global List events; + global String latestBlockNumber; + global TransactionEventOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TransactionJournalOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TransactionJournalOutput.cls new file mode 100644 index 0000000..a6cb903 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TransactionJournalOutput.cls @@ -0,0 +1,17 @@ +global class TransactionJournalOutput { + global Datetime activityDate; + global String journalSubType; + global String journalType; + global String loyaltyProgram; + global String loyaltyProgramMember; + global String referredMember; + global ConnectApi.JournalStatusResource status; + global String transactionJournalId; + global TransactionJournalOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TransactionReceiptInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TransactionReceiptInput.cls new file mode 100644 index 0000000..5f68dbd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TransactionReceiptInput.cls @@ -0,0 +1,14 @@ +global class TransactionReceiptInput { + global List fieldNames; + global List fieldTypes; + global List fieldsIndexedInfo; + global String methodName; + global String transactionId; + global String url; + global TransactionReceiptInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TransactionReceiptOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TransactionReceiptOutput.cls new file mode 100644 index 0000000..c588c17 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TransactionReceiptOutput.cls @@ -0,0 +1,15 @@ +global class TransactionReceiptOutput { + global String blockNumber; + global String cumulativeGasUsed; + global String gasUsed; + global String status; + global String transactionId; + global List values; + global TransactionReceiptOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Transactiondetailsoutputrepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Transactiondetailsoutputrepresentation.cls new file mode 100644 index 0000000..740126b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Transactiondetailsoutputrepresentation.cls @@ -0,0 +1,3 @@ +global class Transactiondetailsoutputrepresentation { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Transactionledgersoutputrepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Transactionledgersoutputrepresentation.cls new file mode 100644 index 0000000..7f7bcb1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Transactionledgersoutputrepresentation.cls @@ -0,0 +1,3 @@ +global class Transactionledgersoutputrepresentation { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TransportLocationOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TransportLocationOutput.cls new file mode 100644 index 0000000..2d35551 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/TransportLocationOutput.cls @@ -0,0 +1,13 @@ +global class TransportLocationOutput { + global Double ambulanceTransportDistance; + global String ambulanceTransportReason; + global String ambulanceTransportType; + global String name; + global TransportLocationOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UiObjectRepresentationCardDetailGetResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UiObjectRepresentationCardDetailGetResult.cls new file mode 100644 index 0000000..5f256fd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UiObjectRepresentationCardDetailGetResult.cls @@ -0,0 +1,12 @@ +global class UiObjectRepresentationCardDetailGetResult { + global ConnectApi.CardDetailOutput cardDetail; + global String errorMessage; + global Boolean isSuccess; + global UiObjectRepresentationCardDetailGetResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UiObjectRepresentationCardsGetResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UiObjectRepresentationCardsGetResult.cls new file mode 100644 index 0000000..60076fd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UiObjectRepresentationCardsGetResult.cls @@ -0,0 +1,15 @@ +global class UiObjectRepresentationCardsGetResult { + global List cards; + global String currentConfigName; + global Integer currentConfigOffset; + global String errorMessage; + global Boolean hasMoreData; + global Boolean isSuccess; + global UiObjectRepresentationCardsGetResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UnapplyCreditResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UnapplyCreditResult.cls new file mode 100644 index 0000000..c9e901c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UnapplyCreditResult.cls @@ -0,0 +1,12 @@ +global class UnapplyCreditResult { + global List errors; + global String id; + global Boolean success; + global UnapplyCreditResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UnauthenticatedUser.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UnauthenticatedUser.cls new file mode 100644 index 0000000..24f87f7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UnauthenticatedUser.cls @@ -0,0 +1,9 @@ +global class UnauthenticatedUser { + global UnauthenticatedUser() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UnreadConversationCount.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UnreadConversationCount.cls new file mode 100644 index 0000000..c68e758 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UnreadConversationCount.cls @@ -0,0 +1,11 @@ +global class UnreadConversationCount { + global Boolean hasMore; + global Integer unreadCount; + global UnreadConversationCount() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UpDownVoteCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UpDownVoteCapability.cls new file mode 100644 index 0000000..6b794b0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UpDownVoteCapability.cls @@ -0,0 +1,12 @@ +global class UpDownVoteCapability { + global Long downVoteCount; + global ConnectApi.UpDownVoteValue myVote; + global Long upVoteCount; + global UpDownVoteCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UpDownVoteCapabilityInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UpDownVoteCapabilityInput.cls new file mode 100644 index 0000000..65860b5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UpDownVoteCapabilityInput.cls @@ -0,0 +1,9 @@ +global class UpDownVoteCapabilityInput { + global ConnectApi.UpDownVoteValue vote; + global UpDownVoteCapabilityInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UpDownVoteValue.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UpDownVoteValue.cls new file mode 100644 index 0000000..a8468cf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UpDownVoteValue.cls @@ -0,0 +1,5 @@ +global enum UpDownVoteValue { +DOWN, +NONE, +UP +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UpVoteSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UpVoteSummary.cls new file mode 100644 index 0000000..f97bfb9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UpVoteSummary.cls @@ -0,0 +1,9 @@ +global class UpVoteSummary { + global UpVoteSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UpdateServiceAppointmentInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UpdateServiceAppointmentInput.cls new file mode 100644 index 0000000..0bda7e9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UpdateServiceAppointmentInput.cls @@ -0,0 +1,9 @@ +global class UpdateServiceAppointmentInput { + global String serviceAppointmentId; + global UpdateServiceAppointmentInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UpdateVideoCallResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UpdateVideoCallResult.cls new file mode 100644 index 0000000..da1c6a3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UpdateVideoCallResult.cls @@ -0,0 +1,11 @@ +global class UpdateVideoCallResult { + global String errorMessage; + global Boolean isSuccess; + global UpdateVideoCallResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/User.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/User.cls new file mode 100644 index 0000000..e1f0596 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/User.cls @@ -0,0 +1,21 @@ +global class User { + global String additionalLabel; + global String communityNickname; + global String companyName; + global String displayName; + global String firstName; + global Boolean isInThisCommunity; + global String lastName; + global ConnectApi.OutOfOffice outOfOffice; + global ConnectApi.Photo photo; + global ConnectApi.Reputation reputation; + global List stamps; + global String title; + global ConnectApi.UserType userType; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserActivitiesJob.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserActivitiesJob.cls new file mode 100644 index 0000000..71ead8a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserActivitiesJob.cls @@ -0,0 +1,12 @@ +global class UserActivitiesJob { + global String jobToken; + global String jobType; + global String message; + global UserActivitiesJob() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserActivityCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserActivityCollection.cls new file mode 100644 index 0000000..49a8f01 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserActivityCollection.cls @@ -0,0 +1,11 @@ +global class UserActivityCollection { + global String activityType; + global List userActivities; + global UserActivityCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserActivitySummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserActivitySummary.cls new file mode 100644 index 0000000..55d6997 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserActivitySummary.cls @@ -0,0 +1,12 @@ +global class UserActivitySummary { + global Datetime activityDate; + global String activityType; + global String activityUrl; + global ConnectApi.CommunitySummary community; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserActivityType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserActivityType.cls new file mode 100644 index 0000000..1fb3e16 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserActivityType.cls @@ -0,0 +1,14 @@ +global enum UserActivityType { +BOOKMARK, +CHATTERACTIVITY, +CHATTERLIKE, +COMMENT, +COMPANYVERIFY, +DOWNVOTE, +FEEDENTITYREAD, +FEEDREAD, +MUTE, +POST, +TOPICENDORSEMENT, +UPVOTE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserCapabilities.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserCapabilities.cls new file mode 100644 index 0000000..54b93c7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserCapabilities.cls @@ -0,0 +1,16 @@ +global class UserCapabilities { + global Boolean canChat; + global Boolean canDirectMessage; + global Boolean canEdit; + global Boolean canFollow; + global Boolean canViewFeed; + global Boolean canViewFullProfile; + global Boolean isModerator; + global UserCapabilities() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserChatterSettings.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserChatterSettings.cls new file mode 100644 index 0000000..2dd0419 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserChatterSettings.cls @@ -0,0 +1,10 @@ +global class UserChatterSettings { + global ConnectApi.GroupEmailFrequency defaultGroupEmailFrequency; + global UserChatterSettings() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserDetail.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserDetail.cls new file mode 100644 index 0000000..6dbd5a0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserDetail.cls @@ -0,0 +1,25 @@ +global class UserDetail { + global String aboutMe; + global ConnectApi.Address address; + global ConnectApi.BannerPhoto bannerPhoto; + global ConnectApi.ChatterActivity chatterActivity; + global ConnectApi.GlobalInfluence chatterInfluence; + global String email; + global Integer followersCount; + global ConnectApi.FollowingCounts followingCounts; + global Integer groupCount; + global Boolean hasChatter; + global Boolean isActive; + global String managerId; + global String managerName; + global List phoneNumbers; + global Integer thanksReceived; + global String username; + global UserDetail() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserFeedEntityActivitySummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserFeedEntityActivitySummary.cls new file mode 100644 index 0000000..e8ac88e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserFeedEntityActivitySummary.cls @@ -0,0 +1,9 @@ +global class UserFeedEntityActivitySummary { + global String feedEntityId; + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserGroupDetailPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserGroupDetailPage.cls new file mode 100644 index 0000000..bb054d5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserGroupDetailPage.cls @@ -0,0 +1,14 @@ +global class UserGroupDetailPage { + global String currentPageUrl; + global List groups; + global String nextPageUrl; + global String previousPageUrl; + global Integer total; + global UserGroupDetailPage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserGroupPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserGroupPage.cls new file mode 100644 index 0000000..57d0b30 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserGroupPage.cls @@ -0,0 +1,14 @@ +global class UserGroupPage { + global String currentPageUrl; + global List groups; + global String nextPageUrl; + global String previousPageUrl; + global Integer total; + global UserGroupPage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserInput.cls new file mode 100644 index 0000000..a224b61 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserInput.cls @@ -0,0 +1,9 @@ +global class UserInput { + global String aboutMe; + global UserInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserMission.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserMission.cls new file mode 100644 index 0000000..1f5ac64 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserMission.cls @@ -0,0 +1,11 @@ +global class UserMission { + global String missionName; + global Integer missionThreshold; + global UserMission() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserMissionActivitiesJob.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserMissionActivitiesJob.cls new file mode 100644 index 0000000..ca61b6e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserMissionActivitiesJob.cls @@ -0,0 +1,12 @@ +global class UserMissionActivitiesJob { + global String jobToken; + global String jobType; + global String message; + global UserMissionActivitiesJob() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserMissionActivity.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserMissionActivity.cls new file mode 100644 index 0000000..b08ce0e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserMissionActivity.cls @@ -0,0 +1,9 @@ +global class UserMissionActivity { + global UserMissionActivity() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserMissionActivityCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserMissionActivityCollection.cls new file mode 100644 index 0000000..8e6a1a9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserMissionActivityCollection.cls @@ -0,0 +1,13 @@ +global class UserMissionActivityCollection { + global ConnectApi.CommunitySummary community; + global String userId; + global List userMissionActivities; + global String userName; + global UserMissionActivityCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserMissionActivityStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserMissionActivityStatus.cls new file mode 100644 index 0000000..da13b41 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserMissionActivityStatus.cls @@ -0,0 +1,11 @@ +global class UserMissionActivityStatus { + global String message; + global String status; + global UserMissionActivityStatus() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserMissionActivityType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserMissionActivityType.cls new file mode 100644 index 0000000..bcfc376 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserMissionActivityType.cls @@ -0,0 +1,12 @@ +global enum UserMissionActivityType { +FEEDITEMANSWERAQUESTION, +FEEDITEMLIKESOMETHING, +FEEDITEMMARKANSWERASBEST, +FEEDITEMPOSTQUESTION, +FEEDITEMRECEIVEACOMMENT, +FEEDITEMRECEIVEALIKE, +FEEDITEMRECEIVEANANSWER, +FEEDITEMWRITEACOMMENT, +FEEDITEMWRITEAPOST, +FEEDITEMYOURANSWERMARKEDBEST +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserOauthInfo.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserOauthInfo.cls new file mode 100644 index 0000000..b4297c8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserOauthInfo.cls @@ -0,0 +1,11 @@ +global class UserOauthInfo { + global ConnectApi.OauthProviderInfo availableExternalEmailService; + global Boolean isAuthenticated; + global UserOauthInfo() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserOrGroupRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserOrGroupRepresentation.cls new file mode 100644 index 0000000..944b032 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserOrGroupRepresentation.cls @@ -0,0 +1,11 @@ +global class UserOrGroupRepresentation { + global String id; + global String name; + global UserOrGroupRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserPage.cls new file mode 100644 index 0000000..65911df --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserPage.cls @@ -0,0 +1,16 @@ +global class UserPage { + global Integer currentPageToken; + global String currentPageUrl; + global Integer nextPageToken; + global String nextPageUrl; + global Integer previousPageToken; + global String previousPageUrl; + global List users; + global UserPage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserProfile.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserProfile.cls new file mode 100644 index 0000000..212bd3d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserProfile.cls @@ -0,0 +1,14 @@ +global class UserProfile { + global ConnectApi.UserCapabilities capabilities; + global String id; + global List tabs; + global String url; + global ConnectApi.UserDetail userDetail; + global UserProfile() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserProfileTab.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserProfileTab.cls new file mode 100644 index 0000000..2a78c3c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserProfileTab.cls @@ -0,0 +1,13 @@ +global class UserProfileTab { + global String id; + global Boolean isDefault; + global ConnectApi.UserProfileTabType tabType; + global String tabUrl; + global UserProfileTab() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserProfileTabType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserProfileTabType.cls new file mode 100644 index 0000000..e814017 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserProfileTabType.cls @@ -0,0 +1,7 @@ +global enum UserProfileTabType { +CUSTOMVISUALFORCE, +CUSTOMWEB, +ELEMENT, +FEED, +OVERVIEW +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserProfiles.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserProfiles.cls new file mode 100644 index 0000000..5bd9597 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserProfiles.cls @@ -0,0 +1,17 @@ +global class UserProfiles { + global Object clone() { } + global static void deleteBannerPhoto(String communityId, String userId) { } + global static void deletePhoto(String communityId, String userId) { } + global static ConnectApi.BannerPhoto getBannerPhoto(String communityId, String userId) { } + global static ConnectApi.Photo getPhoto(String communityId, String userId) { } + global static ConnectApi.UserProfile getUserProfile(String communityId, String userId) { } + global static ConnectApi.BannerPhoto setBannerPhoto(String communityId, String userId, String fileId, Integer versionNumber) { } + global static ConnectApi.BannerPhoto setBannerPhoto(String communityId, String userId, ConnectApi.BinaryInput fileUpload) { } + global static ConnectApi.BannerPhoto setBannerPhotoWithAttributes(String communityId, String userId, ConnectApi.BannerPhotoInput bannerPhoto, ConnectApi.BinaryInput fileUpload) { } + global static ConnectApi.BannerPhoto setBannerPhotoWithAttributes(String communityId, String userId, ConnectApi.BannerPhotoInput bannerPhoto) { } + global static ConnectApi.Photo setPhoto(String communityId, String userId, String fileId, Integer versionNumber) { } + global static ConnectApi.Photo setPhoto(String communityId, String userId, ConnectApi.BinaryInput fileUpload) { } + global static ConnectApi.Photo setPhotoWithAttributes(String communityId, String userId, ConnectApi.PhotoInput photo, ConnectApi.BinaryInput fileUpload) { } + global static ConnectApi.Photo setPhotoWithAttributes(String communityId, String userId, ConnectApi.PhotoInput photo) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserReferencePage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserReferencePage.cls new file mode 100644 index 0000000..bc941f6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserReferencePage.cls @@ -0,0 +1,14 @@ +global class UserReferencePage { + global String currentPageUrl; + global String nextPageUrl; + global String previousPageUrl; + global Integer userCount; + global List users; + global UserReferencePage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserSettings.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserSettings.cls new file mode 100644 index 0000000..e8d08b0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserSettings.cls @@ -0,0 +1,36 @@ +global class UserSettings { + global Boolean approvalPosts; + global Boolean canAccessPersonalStreams; + global Boolean canFollow; + global Boolean canModifyAllData; + global Boolean canOwnGroups; + global Boolean canViewAllData; + global Boolean canViewAllGroups; + global Boolean canViewAllUsers; + global Boolean canViewCommunitySwitcher; + global Boolean canViewFullUserProfile; + global Boolean canViewPublicFiles; + global String currencySymbol; + global Boolean externalUser; + global Integer fileSyncLimit; + global Integer fileSyncStorageLimit; + global Integer folderSyncLimit; + global Boolean hasAccessToInternalOrg; + global Boolean hasChatter; + global Boolean hasFieldServiceLocationTracking; + global Boolean hasFieldServiceMobileAccess; + global Boolean hasFileSync; + global Boolean hasFileSyncManagedClientAutoUpdate; + global Boolean hasRestDataApiAccess; + global ConnectApi.TimeZone timeZone; + global String userDefaultCurrencyIsoCode; + global String userId; + global String userLocale; + global UserSettings() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserSummary.cls new file mode 100644 index 0000000..d8590f9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserSummary.cls @@ -0,0 +1,10 @@ +global class UserSummary { + global Boolean isActive; + global UserSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserType.cls new file mode 100644 index 0000000..6bf70e0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/UserType.cls @@ -0,0 +1,9 @@ +global enum UserType { +CHATTERGUEST, +CHATTERONLY, +GUEST, +INTERNAL, +PORTAL, +SYSTEM, +UNDEFINED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ValidateSignatureResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ValidateSignatureResult.cls new file mode 100644 index 0000000..617030d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ValidateSignatureResult.cls @@ -0,0 +1,12 @@ +global class ValidateSignatureResult { + global String errorMessage; + global String externalMeetingId; + global Boolean isValid; + global ValidateSignatureResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ValidationErrorOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ValidationErrorOutputRepresentation.cls new file mode 100644 index 0000000..904b4ea --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ValidationErrorOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class ValidationErrorOutputRepresentation { + global List errors; + global ValidationErrorOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerificationContextInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerificationContextInput.cls new file mode 100644 index 0000000..f3fea31 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerificationContextInput.cls @@ -0,0 +1,12 @@ +global class VerificationContextInput { + global ConnectApi.ProcessDefinitionInput processDefinition; + global ConnectApi.SelectedSearchResultInput selectedSearchResult; + global ConnectApi.SelectedVerifiedResultInput selectedVerifiedResult; + global ConnectApi.VerifiedResultInput verifiedResult; + global VerificationContextInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerificationContextOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerificationContextOutputRepresentation.cls new file mode 100644 index 0000000..a70a521 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerificationContextOutputRepresentation.cls @@ -0,0 +1,15 @@ +global class VerificationContextOutputRepresentation { + global Boolean isSuccess; + global String message; + global ConnectApi.ProcessDefinitionOutputRepresentation processDefinition; + global ConnectApi.SelectedSearchResultOutputRepresentation selectedSearchResult; + global ConnectApi.SelectedVerifiedResultOutputRepresentation selectedVerifiedResult; + global ConnectApi.VerifiedResultOutputRepresentation verifiedResult; + global VerificationContextOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerificationProcessFieldInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerificationProcessFieldInput.cls new file mode 100644 index 0000000..17d9346 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerificationProcessFieldInput.cls @@ -0,0 +1,16 @@ +global class VerificationProcessFieldInput { + global String dataSourceType; + global String dataType; + global String developerName; + global String fieldName; + global String fieldType; + global String fieldValueFormula; + global Boolean isManualInput; + global String label; + global VerificationProcessFieldInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerificationProcessFieldListOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerificationProcessFieldListOutputRepresentation.cls new file mode 100644 index 0000000..2d4337e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerificationProcessFieldListOutputRepresentation.cls @@ -0,0 +1,10 @@ +global class VerificationProcessFieldListOutputRepresentation { + global List verificationProcessFields; + global VerificationProcessFieldListOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerificationProcessFieldOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerificationProcessFieldOutputRepresentation.cls new file mode 100644 index 0000000..9829857 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerificationProcessFieldOutputRepresentation.cls @@ -0,0 +1,17 @@ +global class VerificationProcessFieldOutputRepresentation { + global String dataSourceType; + global String dataType; + global String developerName; + global String fieldName; + global String fieldType; + global String fieldValueFormula; + global Boolean isManualInput; + global String label; + global VerificationProcessFieldOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerifiedCapability.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerifiedCapability.cls new file mode 100644 index 0000000..ee2caef --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerifiedCapability.cls @@ -0,0 +1,14 @@ +global class VerifiedCapability { + global Boolean isVerifiableByMe; + global Boolean isVerified; + global Boolean isVerifiedByAnonymized; + global ConnectApi.UserSummary lastVerifiedByUser; + global Datetime lastVerifiedDate; + global VerifiedCapability() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerifiedCapabilityInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerifiedCapabilityInput.cls new file mode 100644 index 0000000..7a84705 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerifiedCapabilityInput.cls @@ -0,0 +1,10 @@ +global class VerifiedCapabilityInput { + global Boolean isVerified; + global Boolean isVerifiedByAnonymized; + global VerifiedCapabilityInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerifiedDetailsInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerifiedDetailsInput.cls new file mode 100644 index 0000000..cf9d97c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerifiedDetailsInput.cls @@ -0,0 +1,14 @@ +global class VerifiedDetailsInput { + global String displayRecordId; + global String displayRecordName; + global String label; + global String processDetailName; + global String searchObjectName; + global String verifiedId; + global VerifiedDetailsInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerifiedDetailsOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerifiedDetailsOutputRepresentation.cls new file mode 100644 index 0000000..1f4fc2b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerifiedDetailsOutputRepresentation.cls @@ -0,0 +1,15 @@ +global class VerifiedDetailsOutputRepresentation { + global String displayRecordId; + global String displayRecordName; + global String label; + global String processDetailName; + global String searchObjectName; + global String verifiedId; + global VerifiedDetailsOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerifiedResultInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerifiedResultInput.cls new file mode 100644 index 0000000..a5d34a8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerifiedResultInput.cls @@ -0,0 +1,10 @@ +global class VerifiedResultInput { + global List optionalVerifiers; + global List requiredVerifiers; + global VerifiedResultInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerifiedResultOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerifiedResultOutputRepresentation.cls new file mode 100644 index 0000000..2148431 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerifiedResultOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class VerifiedResultOutputRepresentation { + global List optionalVerifiers; + global List requiredVerifiers; + global VerifiedResultOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerifierInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerifierInput.cls new file mode 100644 index 0000000..62a9135 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerifierInput.cls @@ -0,0 +1,10 @@ +global class VerifierInput { + global String developerName; + global String verificationState; + global VerifierInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerifierOutputRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerifierOutputRepresentation.cls new file mode 100644 index 0000000..4551dd2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VerifierOutputRepresentation.cls @@ -0,0 +1,11 @@ +global class VerifierOutputRepresentation { + global String developerName; + global String verificationState; + global VerifierOutputRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VideoCallParticipant.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VideoCallParticipant.cls new file mode 100644 index 0000000..ca14099 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VideoCallParticipant.cls @@ -0,0 +1,12 @@ +global class VideoCallParticipant { + global List fields; + global String participantId; + global String participantName; + global VideoCallParticipant() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VideoCallParticipantField.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VideoCallParticipantField.cls new file mode 100644 index 0000000..df83479 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VideoCallParticipantField.cls @@ -0,0 +1,13 @@ +global class VideoCallParticipantField { + global String contactFieldValue; + global Boolean doesFieldValuesMatch; + global String fieldLabel; + global String intakeFormFieldValue; + global VideoCallParticipantField() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VideoCallParticipantResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VideoCallParticipantResult.cls new file mode 100644 index 0000000..3225d21 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VideoCallParticipantResult.cls @@ -0,0 +1,13 @@ +global class VideoCallParticipantResult { + global String errorMessage; + global List inCallParticipants; + global Boolean isSuccess; + global List waitingParticipants; + global VideoCallParticipantResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VoidPostedInvoiceInputRequest.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VoidPostedInvoiceInputRequest.cls new file mode 100644 index 0000000..f373ae5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VoidPostedInvoiceInputRequest.cls @@ -0,0 +1,9 @@ +global class VoidPostedInvoiceInputRequest { + global String invoiceId; + global VoidPostedInvoiceInputRequest() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Vote.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Vote.cls new file mode 100644 index 0000000..780c073 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Vote.cls @@ -0,0 +1,12 @@ +global class Vote { + global ConnectApi.UpDownVoteValue type; + global ConnectApi.UserSummary user; + global ConnectApi.Reference votedItem; + global Vote() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VotePage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VotePage.cls new file mode 100644 index 0000000..ea9893f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VotePage.cls @@ -0,0 +1,17 @@ +global class VotePage { + global Integer currentPageToken; + global String currentPageUrl; + global List items; + global Integer nextPageToken; + global String nextPageUrl; + global Integer previousPageToken; + global String previousPageUrl; + global Long total; + global VotePage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Voucher.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Voucher.cls new file mode 100644 index 0000000..5aaee1d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Voucher.cls @@ -0,0 +1,3 @@ +global class Voucher { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VoucherInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VoucherInput.cls new file mode 100644 index 0000000..a9888b6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VoucherInput.cls @@ -0,0 +1,11 @@ +global class VoucherInput { + global String buyer; + global Long pricePerToken; + global Long tokenId; + global VoucherInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VoucherOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VoucherOutput.cls new file mode 100644 index 0000000..e10fba6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VoucherOutput.cls @@ -0,0 +1,15 @@ +global class VoucherOutput { + global String buyer; + global Integer expirationDuration; + global Long issueTime; + global Long nonce; + global String pricePerToken; + global String signature; + global VoucherOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VoucherPublicKeyOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VoucherPublicKeyOutput.cls new file mode 100644 index 0000000..2f1635e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VoucherPublicKeyOutput.cls @@ -0,0 +1,10 @@ +global class VoucherPublicKeyOutput { + global String publicKey; + global VoucherPublicKeyOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VoucherRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VoucherRepresentation.cls new file mode 100644 index 0000000..48ae681 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VoucherRepresentation.cls @@ -0,0 +1,34 @@ +global class VoucherRepresentation { + global String currencyIsoCode; + global String description; + global Integer discountPercent; + global Datetime effectiveDate; + global Datetime expirationDate; + global Double faceValue; + global Boolean isVoucherDefinitionActive; + global Boolean isVoucherPartiallyRedeemable; + global String partnerAccountName; + global String productCategoryId; + global String productCategoryName; + global String productId; + global String productName; + global String promotionId; + global String promotionName; + global Double redeemedValue; + global Double remainingValue; + global String status; + global String type; + global Datetime useDate; + global String voucherCode; + global String voucherDefinition; + global String voucherId; + global String voucherImageUrl; + global String voucherNumber; + global VoucherRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VoucherWithPriceInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VoucherWithPriceInput.cls new file mode 100644 index 0000000..d35ed8b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VoucherWithPriceInput.cls @@ -0,0 +1,11 @@ +global class VoucherWithPriceInput { + global String priceField; + global Long tokenId; + global String walletId; + global VoucherWithPriceInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VoucherWithPriceOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VoucherWithPriceOutput.cls new file mode 100644 index 0000000..be56c48 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VoucherWithPriceOutput.cls @@ -0,0 +1,18 @@ +global class VoucherWithPriceOutput { + global Double discountPercentage; + global Integer expirationDuration; + global Long issueTime; + global Long nonce; + global Double originalPricePerToken; + global Double pricePerToken; + global String signature; + global String walletId; + global Long weiPerToken; + global VoucherWithPriceOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VouchersListRepresentation.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VouchersListRepresentation.cls new file mode 100644 index 0000000..6c4da73 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/VouchersListRepresentation.cls @@ -0,0 +1,11 @@ +global class VouchersListRepresentation { + global Integer voucherCount; + global List vouchers; + global VouchersListRepresentation() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistAnalytics.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistAnalytics.cls new file mode 100644 index 0000000..0db5f65 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistAnalytics.cls @@ -0,0 +1,13 @@ +global class WaitlistAnalytics { + global Integer currentParticipant; + global Integer servedParticipant; + global Integer totalParticipant; + global Integer totalWaitingTimeInMin; + global WaitlistAnalytics() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistAppointmentResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistAppointmentResult.cls new file mode 100644 index 0000000..556b162 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistAppointmentResult.cls @@ -0,0 +1,12 @@ +global class WaitlistAppointmentResult { + global String assignedResourceId; + global String serviceAppointmentId; + global String waitlistParticipantId; + global WaitlistAppointmentResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistCheckInInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistCheckInInput.cls new file mode 100644 index 0000000..709c0bf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistCheckInInput.cls @@ -0,0 +1,15 @@ +global class WaitlistCheckInInput { + global String description; + global ConnectApi.LeadInput lead; + global String participantId; + global String serviceResourceId; + global String waitlistId; + global String workTypeGroupId; + global String workTypeId; + global WaitlistCheckInInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistCheckInOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistCheckInOutput.cls new file mode 100644 index 0000000..4bb038a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistCheckInOutput.cls @@ -0,0 +1,10 @@ +global class WaitlistCheckInOutput { + global ConnectApi.WaitlistCheckInResult result; + global WaitlistCheckInOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistCheckInResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistCheckInResult.cls new file mode 100644 index 0000000..bcdc844 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistCheckInResult.cls @@ -0,0 +1,12 @@ +global class WaitlistCheckInResult { + global String participantId; + global String serviceAppointmentId; + global String waitlistParticipantId; + global WaitlistCheckInResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistInput.cls new file mode 100644 index 0000000..d50adfe --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistInput.cls @@ -0,0 +1,14 @@ +global class WaitlistInput { + global Boolean isActive; + global Integer maxLimit; + global Integer offset; + global String requestId; + global String serviceTerritoryId; + global List waitlistIds; + global WaitlistInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistListResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistListResult.cls new file mode 100644 index 0000000..91991ba --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistListResult.cls @@ -0,0 +1,10 @@ +global class WaitlistListResult { + global List waitlists; + global WaitlistListResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistOutput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistOutput.cls new file mode 100644 index 0000000..042dec4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistOutput.cls @@ -0,0 +1,10 @@ +global class WaitlistOutput { + global ConnectApi.WaitlistListResult result; + global WaitlistOutput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistParticipantParticipant.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistParticipantParticipant.cls new file mode 100644 index 0000000..7aaede4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistParticipantParticipant.cls @@ -0,0 +1,11 @@ +global class WaitlistParticipantParticipant { + global String id; + global String name; + global WaitlistParticipantParticipant() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistParticipantResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistParticipantResult.cls new file mode 100644 index 0000000..eefa81e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistParticipantResult.cls @@ -0,0 +1,15 @@ +global class WaitlistParticipantResult { + global ConnectApi.WaitlistParticipantParticipant participant; + global String participantIdentifier; + global String serviceAppointmentId; + global ConnectApi.WaitlistServiceResource serviceResource; + global String waitlistParticipantId; + global ConnectApi.WaitlistWorkTypeGroup workTypeGroup; + global WaitlistParticipantResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistRelationshipsResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistRelationshipsResult.cls new file mode 100644 index 0000000..9432dc6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistRelationshipsResult.cls @@ -0,0 +1,11 @@ +global class WaitlistRelationshipsResult { + global List serviceResources; + global List workTypes; + global WaitlistRelationshipsResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistResult.cls new file mode 100644 index 0000000..7b6c859 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistResult.cls @@ -0,0 +1,17 @@ +global class WaitlistResult { + global String description; + global Boolean isActive; + global String name; + global List serviceResources; + global ConnectApi.WaitlistAnalytics waitlistAnalytics; + global String waitlistId; + global List waitlistParticipants; + global List workTypeGroups; + global WaitlistResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistServiceResource.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistServiceResource.cls new file mode 100644 index 0000000..1f3440a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistServiceResource.cls @@ -0,0 +1,11 @@ +global class WaitlistServiceResource { + global String id; + global String name; + global WaitlistServiceResource() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistServiceResourceWithWorkTypes.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistServiceResourceWithWorkTypes.cls new file mode 100644 index 0000000..e0a7566 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistServiceResourceWithWorkTypes.cls @@ -0,0 +1,13 @@ +global class WaitlistServiceResourceWithWorkTypes { + global String id; + global String serviceResourceId; + global String waitlistId; + global List workTypeIds; + global WaitlistServiceResourceWithWorkTypes() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistWorkType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistWorkType.cls new file mode 100644 index 0000000..d931cd3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistWorkType.cls @@ -0,0 +1,13 @@ +global class WaitlistWorkType { + global String id; + global String name; + global ConnectApi.WaitlistResult waitlist; + global ConnectApi.WaitlistWorkTypeGroup workTypeGroup; + global WaitlistWorkType() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistWorkTypeGroup.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistWorkTypeGroup.cls new file mode 100644 index 0000000..89e6360 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WaitlistWorkTypeGroup.cls @@ -0,0 +1,11 @@ +global class WaitlistWorkTypeGroup { + global String id; + global String name; + global WaitlistWorkTypeGroup() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Wave.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Wave.cls new file mode 100644 index 0000000..e610ea0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Wave.cls @@ -0,0 +1,9 @@ +global class Wave { + global Object clone() { } + global static ConnectApi.LiteralJson executeQuery(String queryString, String timezone) { } + global static ConnectApi.LiteralJson executeQuery(String queryString) { } + global static ConnectApi.LiteralJson executeQueryByInputRep(ConnectApi.SaqlQueryInput query) { } + global static ConnectApi.LiteralJson executeQueryByName(String name, String timezone) { } + global static ConnectApi.LiteralJson executeQueryByName(String name) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Web3Transaction.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Web3Transaction.cls new file mode 100644 index 0000000..aff13a0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Web3Transaction.cls @@ -0,0 +1,3 @@ +global class Web3Transaction { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishList.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishList.cls new file mode 100644 index 0000000..6545444 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishList.cls @@ -0,0 +1,11 @@ +global class WishList { + global ConnectApi.WishlistItemCollection page; + global ConnectApi.WishlistSummary summary; + global Wishlist() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishlistInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishlistInput.cls new file mode 100644 index 0000000..4848aaa --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishlistInput.cls @@ -0,0 +1,10 @@ +global class WishlistInput { + global String name; + global List products; + global WishlistInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishlistItem.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishlistItem.cls new file mode 100644 index 0000000..d0a9a9b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishlistItem.cls @@ -0,0 +1,15 @@ +global class WishlistItem { + global String currencyIsoCode; + global ConnectApi.ErrorResponse error; + global Double listPrice; + global ConnectApi.CartItemProduct productSummary; + global Double salesPrice; + global String wishlistItemId; + global WishlistItem() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishlistItemCollection.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishlistItemCollection.cls new file mode 100644 index 0000000..1e5944a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishlistItemCollection.cls @@ -0,0 +1,18 @@ +global class WishlistItemCollection { + global String currencyIsoCode; + global String currentPageToken; + global String currentPageUrl; + global Boolean hasErrors; + global List items; + global String nextPageToken; + global String nextPageUrl; + global String previousPageToken; + global String previousPageUrl; + global WishlistItemCollection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishlistItemInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishlistItemInput.cls new file mode 100644 index 0000000..5b134ca --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishlistItemInput.cls @@ -0,0 +1,9 @@ +global class WishlistItemInput { + global String productId; + global WishlistItemInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishlistItemSortOrder.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishlistItemSortOrder.cls new file mode 100644 index 0000000..16358ff --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishlistItemSortOrder.cls @@ -0,0 +1,4 @@ +global enum WishlistItemSortOrder { +CREATEDDATEASC, +CREATEDDATEDESC +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishlistSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishlistSummary.cls new file mode 100644 index 0000000..0d79a5b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishlistSummary.cls @@ -0,0 +1,14 @@ +global class WishlistSummary { + global Datetime createdDate; + global String id; + global Datetime modifiedDate; + global String name; + global Integer wishlistProductCount; + global WishlistSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishlistToCartResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishlistToCartResult.cls new file mode 100644 index 0000000..4fd1c5a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishlistToCartResult.cls @@ -0,0 +1,15 @@ +global class WishlistToCartResult { + global String cartId; + global List failedWishlistToCartItems; + global Integer productsFailedCount; + global Integer productsRequestedCount; + global Integer productsSucceededCount; + global List succeededWishlistToCartItems; + global WishlistToCartResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishlistUpdateInput.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishlistUpdateInput.cls new file mode 100644 index 0000000..c308045 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishlistUpdateInput.cls @@ -0,0 +1,9 @@ +global class WishlistUpdateInput { + global String name; + global WishlistUpdateInput() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishlistsSummary.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishlistsSummary.cls new file mode 100644 index 0000000..78c3377 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WishlistsSummary.cls @@ -0,0 +1,12 @@ +global class WishlistsSummary { + global ConnectApi.Wishlist displayedList; + global List summaries; + global Integer wishlistCount; + global WishlistsSummary() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WorkflowProcessStatus.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WorkflowProcessStatus.cls new file mode 100644 index 0000000..595a3a0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WorkflowProcessStatus.cls @@ -0,0 +1,11 @@ +global enum WorkflowProcessStatus { +APPROVED, +FAULT, +HELD, +NORESPONSE, +PENDING, +REASSIGNED, +REJECTED, +REMOVED, +STARTED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WorkspacePermission.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WorkspacePermission.cls new file mode 100644 index 0000000..7a886b7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WorkspacePermission.cls @@ -0,0 +1,22 @@ +global class WorkspacePermission { + global Boolean canAddFileComments; + global Boolean canAddFiles; + global Boolean canAddFilesOnBehalfOfOthers; + global Boolean canArchiveFiles; + global Boolean canAttachOrShareFilesToFeed; + global Boolean canDeleteFiles; + global Boolean canDeliverContent; + global Boolean canFeatureFiles; + global Boolean canManageWorkspace; + global Boolean canModifyFileComments; + global Boolean canOrganizeFilesAndFolders; + global Boolean canTagFiles; + global Boolean canViewFileComments; + global WorkspacePermission() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WrappedMap.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WrappedMap.cls new file mode 100644 index 0000000..15c6eb3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WrappedMap.cls @@ -0,0 +1,10 @@ +global class WrappedMap { + global Map wrappedMap; + global WrappedMap() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WrappedMapObject.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WrappedMapObject.cls new file mode 100644 index 0000000..8505d5b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WrappedMapObject.cls @@ -0,0 +1,10 @@ +global class WrappedMapObject { + global Map wrappedMap; + global WrappedMapObject() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WrappedObject.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WrappedObject.cls new file mode 100644 index 0000000..88b30f4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WrappedObject.cls @@ -0,0 +1,9 @@ +global class WrappedObject { + global Object wrappedObject; + global WrappedObject() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WrappedValue.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WrappedValue.cls new file mode 100644 index 0000000..8340ca9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/WrappedValue.cls @@ -0,0 +1,9 @@ +global class WrappedValue { + global Object value; + global WrappedValue() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Zone.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Zone.cls new file mode 100644 index 0000000..9397ae2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Zone.cls @@ -0,0 +1,17 @@ +global class Zone { + global String description; + global String id; + global Boolean isActive; + global Boolean isChatterAnswers; + global String name; + global String url; + global ConnectApi.ZoneShowIn visibility; + global String visibilityId; + global Zone() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ZonePage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ZonePage.cls new file mode 100644 index 0000000..d2e0377 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ZonePage.cls @@ -0,0 +1,12 @@ +global class ZonePage { + global String currentPageUrl; + global String nextPageUrl; + global List zones; + global ZonePage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ZoneSearchPage.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ZoneSearchPage.cls new file mode 100644 index 0000000..234546a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ZoneSearchPage.cls @@ -0,0 +1,14 @@ +global class ZoneSearchPage { + global String currentPageToken; + global String currentPageUrl; + global List items; + global String nextPageToken; + global String nextPageUrl; + global ZoneSearchPage() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ZoneSearchResult.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ZoneSearchResult.cls new file mode 100644 index 0000000..3011f1d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ZoneSearchResult.cls @@ -0,0 +1,14 @@ +global class ZoneSearchResult { + global Boolean hasBestAnswer; + global String id; + global String title; + global ConnectApi.ZoneSearchResultType type; + global Integer voteCount; + global ZoneSearchResult() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Double getBuildVersion() { } + global Integer hashCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ZoneSearchResultType.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ZoneSearchResultType.cls new file mode 100644 index 0000000..33774a8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ZoneSearchResultType.cls @@ -0,0 +1,4 @@ +global enum ZoneSearchResultType { +ARTICLE, +QUESTION +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ZoneShowIn.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ZoneShowIn.cls new file mode 100644 index 0000000..bf42b51 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/ZoneShowIn.cls @@ -0,0 +1,5 @@ +global enum ZoneShowIn { +COMMUNITY, +INTERNAL, +PORTAL +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Zones.cls b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Zones.cls new file mode 100644 index 0000000..f77ae11 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/ConnectApi/Zones.cls @@ -0,0 +1,13 @@ +global class Zones { + global Object clone() { } + global static ConnectApi.Zone getZone(String communityId, String zoneId) { } + global static ConnectApi.ZonePage getZones(String communityId, Integer pageParam, Integer pageSize) { } + global static ConnectApi.ZonePage getZones(String communityId) { } + global static ConnectApi.ZoneSearchPage searchInZone(String communityId, String zoneId, String q, ConnectApi.ZoneSearchResultType filter, String pageParam, Integer pageSize) { } + global static ConnectApi.ZoneSearchPage searchInZone(String communityId, String zoneId, String q, ConnectApi.ZoneSearchResultType filter, String language) { } + global static ConnectApi.ZoneSearchPage searchInZone(String communityId, String zoneId, String q, ConnectApi.ZoneSearchResultType filter) { } + global static void setTestSearchInZone(String communityId, String zoneId, String q, ConnectApi.ZoneSearchResultType filter, String pageParam, Integer pageSize, ConnectApi.ZoneSearchPage result) { } + global static void setTestSearchInZone(String communityId, String zoneId, String q, ConnectApi.ZoneSearchResultType filter, String language, ConnectApi.ZoneSearchPage result) { } + global static void setTestSearchInZone(String communityId, String zoneId, String q, ConnectApi.ZoneSearchResultType filter, ConnectApi.ZoneSearchPage result) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/ApexTestData.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/ApexTestData.cls new file mode 100644 index 0000000..7ac7993 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/ApexTestData.cls @@ -0,0 +1,3 @@ +global class ApexTestData { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/AsyncDeleteCallback.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/AsyncDeleteCallback.cls new file mode 100644 index 0000000..ad33372 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/AsyncDeleteCallback.cls @@ -0,0 +1,6 @@ +global class AsyncDeleteCallback { + global AsyncDeleteCallback() { } + global Object clone() { } + global void processDelete(Database.DeleteResult deleteResult) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/AsyncSaveCallback.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/AsyncSaveCallback.cls new file mode 100644 index 0000000..dd82f7a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/AsyncSaveCallback.cls @@ -0,0 +1,6 @@ +global class AsyncSaveCallback { + global AsyncSaveCallback() { } + global Object clone() { } + global void processSave(Database.SaveResult saveResult) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/AuthenticationCapability.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/AuthenticationCapability.cls new file mode 100644 index 0000000..072e96e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/AuthenticationCapability.cls @@ -0,0 +1,6 @@ +global enum AuthenticationCapability { +ANONYMOUS, +BASIC, +CERTIFICATE, +OAUTH +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/AuthenticationProtocol.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/AuthenticationProtocol.cls new file mode 100644 index 0000000..d7acab7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/AuthenticationProtocol.cls @@ -0,0 +1,6 @@ +global enum AuthenticationProtocol { +CERTIFICATE, +NONE, +OAUTH, +PASSWORD +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/Capability.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/Capability.cls new file mode 100644 index 0000000..eed37dc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/Capability.cls @@ -0,0 +1,12 @@ +global enum Capability { +MATCH, +QUERY_PAGINATION_SERVER_DRIVEN, +QUERY_TOTAL_SIZE, +REQUIRE_ENDPOINT, +REQUIRE_HTTPS, +ROW_CREATE, +ROW_DELETE, +ROW_QUERY, +ROW_UPDATE, +SEARCH +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/Column.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/Column.cls new file mode 100644 index 0000000..1ac71e4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/Column.cls @@ -0,0 +1,34 @@ +global class Column { + global Integer decimalPlaces; + global String description; + global Boolean filterable; + global String label; + global Integer length; + global String name; + global String referenceTargetField; + global String referenceTo; + global Boolean sortable; + global DataSource.DataType type; + global Column() { } + global static DataSource.Column boolean(String name) { } + global Object clone() { } + global Boolean equals(Object obj) { } + global static DataSource.Column externalLookup(String name, String domain) { } + global static DataSource.Column get(String name, String label, String description, Boolean isSortable, Boolean isFilterable, DataSource.DataType type, Integer length, Integer decimalPlaces, String referenceTo, String referenceTargetField) { } + global static DataSource.Column get(String name, String label, String description, Boolean isSortable, Boolean isFilterable, DataSource.DataType type, Integer length, Integer decimalPlaces) { } + global static DataSource.Column get(String name, String label, String description, Boolean isSortable, Boolean isFilterable, DataSource.DataType type, Integer length) { } + global Integer hashCode() { } + global static DataSource.Column indirectLookup(String name, String domain, String targetField) { } + global static DataSource.Column integer(String name, Integer length) { } + global void logWarning(String msg) { } + global static DataSource.Column lookup(String name, String domain) { } + global static DataSource.Column number(String name, Integer length, Integer decimalPlaces) { } + global static DataSource.Column text(String name, String label, Integer length) { } + global static DataSource.Column text(String name, Integer length) { } + global static DataSource.Column text(String name) { } + global static DataSource.Column textarea(String name) { } + global void throwException(String msg) { } + global static DataSource.Column url(String name, Integer length) { } + global static DataSource.Column url(String name) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/ColumnSelection.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/ColumnSelection.cls new file mode 100644 index 0000000..4efd895 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/ColumnSelection.cls @@ -0,0 +1,10 @@ +global class ColumnSelection { + global DataSource.QueryAggregation aggregation; + global String columnName; + global String tableName; + global ColumnSelection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/Connection.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/Connection.cls new file mode 100644 index 0000000..164e859 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/Connection.cls @@ -0,0 +1,12 @@ +global class Connection { + global Connection() { } + global Object clone() { } + global List deleteRows(DataSource.DeleteContext deleteContext) { } + global void logWarning(String msg) { } + global DataSource.TableResult query(DataSource.QueryContext queryContext) { } + global List search(DataSource.SearchContext searchContext) { } + global List sync() { } + global void throwException(String msg) { } + global List upsertRows(DataSource.UpsertContext upsertContext) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/ConnectionParams.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/ConnectionParams.cls new file mode 100644 index 0000000..3fd2833 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/ConnectionParams.cls @@ -0,0 +1,15 @@ +global class ConnectionParams { + global String certificateName; + global String endpoint; + global String oauthToken; + global String password; + global DataSource.IdentityType principalType; + global DataSource.AuthenticationProtocol protocol; + global String repository; + global String username; + global ConnectionParams() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/DataSourceException.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/DataSourceException.cls new file mode 100644 index 0000000..190a1b2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/DataSourceException.cls @@ -0,0 +1,9 @@ +global class DataSourceException extends Exception { + global DataSourceException(String param0, Exception param1) { } + global DataSourceException(Exception param0) { } + global DataSourceException(String param0) { } + global DataSourceException() { } + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/DataSourceUtil.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/DataSourceUtil.cls new file mode 100644 index 0000000..6fdc504 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/DataSourceUtil.cls @@ -0,0 +1,7 @@ +global class DataSourceUtil { + global DataSourceUtil() { } + global Object clone() { } + global void logWarning(String msg) { } + global void throwException(String msg) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/DataType.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/DataType.cls new file mode 100644 index 0000000..3afe819 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/DataType.cls @@ -0,0 +1,11 @@ +global enum DataType { +BOOLEAN_TYPE, +DATETIME_TYPE, +EXTERNAL_LOOKUP_TYPE, +INDIRECT_LOOKUP_TYPE, +LOOKUP_TYPE, +NUMBER_TYPE, +STRING_LONG_TYPE, +STRING_SHORT_TYPE, +URL_TYPE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/DeleteContext.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/DeleteContext.cls new file mode 100644 index 0000000..56149a4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/DeleteContext.cls @@ -0,0 +1,7 @@ +global class DeleteContext { + global List externalIds; + global String tableSelected; + global DeleteContext() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/DeleteResult.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/DeleteResult.cls new file mode 100644 index 0000000..6209912 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/DeleteResult.cls @@ -0,0 +1,11 @@ +global class DeleteResult { + global String errorMessage; + global String externalId; + global Boolean success; + global Object clone() { } + global Boolean equals(Object obj) { } + global static DataSource.DeleteResult failure(String externalId, String errorMessage) { } + global Integer hashCode() { } + global static DataSource.DeleteResult success(String externalId) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/Filter.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/Filter.cls new file mode 100644 index 0000000..5a55973 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/Filter.cls @@ -0,0 +1,13 @@ +global class Filter { + global String columnName; + global Object columnValue; + global List subfilters; + global String tableName; + global DataSource.FilterType type; + global Filter(DataSource.FilterType type, String tableName, String columnName, Object columnValue) { } + global Filter() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/FilterType.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/FilterType.cls new file mode 100644 index 0000000..08d0834 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/FilterType.cls @@ -0,0 +1,15 @@ +global enum FilterType { +AND_, +CONTAINS, +ENDS_WITH, +EQUALS, +GREATER_THAN, +GREATER_THAN_OR_EQUAL_TO, +LESS_THAN, +LESS_THAN_OR_EQUAL_TO, +LIKE_, +NOT_, +NOT_EQUALS, +OR_, +STARTS_WITH +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/IAsyncDeleteCallback.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/IAsyncDeleteCallback.cls new file mode 100644 index 0000000..9332491 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/IAsyncDeleteCallback.cls @@ -0,0 +1,4 @@ +global interface IAsyncDeleteCallback { + void processDelete(Database.DeleteResult param0); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/IAsyncSaveCallback.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/IAsyncSaveCallback.cls new file mode 100644 index 0000000..5bf0f27 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/IAsyncSaveCallback.cls @@ -0,0 +1,4 @@ +global interface IAsyncSaveCallback { + void processSave(Database.SaveResult param0); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/IdentityType.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/IdentityType.cls new file mode 100644 index 0000000..fde1bc6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/IdentityType.cls @@ -0,0 +1,5 @@ +global enum IdentityType { +ANONYMOUS, +NAMED_USER, +PER_USER +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/MatchContext.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/MatchContext.cls new file mode 100644 index 0000000..db5507b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/MatchContext.cls @@ -0,0 +1,8 @@ +global class MatchContext { + global List fields; + global Integer maxMatchResults; + global Integer minMatchConfidence; + global String tableName; + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/MatchEngineSettings.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/MatchEngineSettings.cls new file mode 100644 index 0000000..caaa978 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/MatchEngineSettings.cls @@ -0,0 +1,10 @@ +global class MatchEngineSettings { + global Set matchableFields; + global Integer maxBatchSize; + global Integer maxMatchResults; + global Integer minMatchConfidenceThreshold; + global MatchEngineSettings(Integer maxBatchSize, Integer maxMatchResults, Integer minMatchConfidenceThreshold, Set matchableFields) { } + global MatchEngineSettings(Integer maxBatchSize, Integer maxMatchResults, Integer minMatchConfidenceThreshold) { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/MatchResult.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/MatchResult.cls new file mode 100644 index 0000000..44d2e83 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/MatchResult.cls @@ -0,0 +1,14 @@ +global class MatchResult { + global String errorMessage; + global Integer index; + global List matches; + global Integer size; + global Boolean success; + global String tableName; + global Double topScore; + global Object clone() { } + global Boolean equals(Object obj) { } + global static DataSource.MatchResult get(Boolean success, String errorMessage, String tableName, Integer index, Integer size, Double topScore, List matches) { } + global Integer hashCode() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/Matchable.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/Matchable.cls new file mode 100644 index 0000000..3d034c6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/Matchable.cls @@ -0,0 +1,5 @@ +global interface Matchable { + DataSource.MatchEngineSettings getMatchEngineSettings(String param0); + DataSource.MatchResult match(DataSource.MatchContext param0); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/MatchedRecord.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/MatchedRecord.cls new file mode 100644 index 0000000..9d83fb2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/MatchedRecord.cls @@ -0,0 +1,11 @@ +global class MatchedRecord { + global Map additionalInformation; + global Map data; + global List diffs; + global Double score; + global Object clone() { } + global Boolean equals(Object obj) { } + global static DataSource.MatchedRecord get(Map data, Double score, List diffs, Map additionalInformation) { } + global Integer hashCode() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/OAuthTokenExpiredException.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/OAuthTokenExpiredException.cls new file mode 100644 index 0000000..eff81fb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/OAuthTokenExpiredException.cls @@ -0,0 +1,9 @@ +global class OAuthTokenExpiredException extends Exception { + global OAuthTokenExpiredException(String param0, Exception param1) { } + global OAuthTokenExpiredException(Exception param0) { } + global OAuthTokenExpiredException(String param0) { } + global OAuthTokenExpiredException() { } + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/Order.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/Order.cls new file mode 100644 index 0000000..a5e791f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/Order.cls @@ -0,0 +1,11 @@ +global class Order { + global String columnName; + global DataSource.OrderDirection direction; + global String tableName; + global Order() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global static DataSource.Order get(String tableName, String columnName, DataSource.OrderDirection direction) { } + global Integer hashCode() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/OrderDirection.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/OrderDirection.cls new file mode 100644 index 0000000..672642c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/OrderDirection.cls @@ -0,0 +1,4 @@ +global enum OrderDirection { +ASCENDING, +DESCENDING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/Provider.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/Provider.cls new file mode 100644 index 0000000..080b1da --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/Provider.cls @@ -0,0 +1,10 @@ +global class Provider { + global Provider() { } + global Object clone() { } + global List getAuthenticationCapabilities() { } + global List getCapabilities() { } + global DataSource.Connection getConnection(DataSource.ConnectionParams param0) { } + global void logWarning(String msg) { } + global void throwException(String msg) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/QueryAggregation.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/QueryAggregation.cls new file mode 100644 index 0000000..3401378 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/QueryAggregation.cls @@ -0,0 +1,8 @@ +global enum QueryAggregation { +AVG, +COUNT, +MAX, +MIN, +NONE, +SUM +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/QueryContext.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/QueryContext.cls new file mode 100644 index 0000000..bb66f2b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/QueryContext.cls @@ -0,0 +1,10 @@ +global class QueryContext { + global String queryMoreToken; + global DataSource.TableSelection tableSelection; + global QueryContext() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global static DataSource.QueryContext get(List metadata, Integer startRowNumZeroOffset, Integer maxResults, DataSource.TableSelection tableSelection) { } + global Integer hashCode() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/QueryUtils.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/QueryUtils.cls new file mode 100644 index 0000000..5f8e2a6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/QueryUtils.cls @@ -0,0 +1,10 @@ +global class QueryUtils { + global QueryUtils() { } + global static List> applyLimitAndOffset(DataSource.QueryContext c, List> rows) { } + global Object clone() { } + global static List> filter(DataSource.QueryContext c, List> rows) { } + global static List> filterAndSort(DataSource.QueryContext c, List> rows) { } + global static List> process(DataSource.QueryContext c, List> rows) { } + global static List> sort(DataSource.QueryContext c, List> rows) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/ReadContext.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/ReadContext.cls new file mode 100644 index 0000000..691cf81 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/ReadContext.cls @@ -0,0 +1,10 @@ +global class ReadContext { + global Integer maxResults; + global List metadata; + global Integer offset; + global Integer startRowNumZeroOffset; + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/SearchContext.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/SearchContext.cls new file mode 100644 index 0000000..2283637 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/SearchContext.cls @@ -0,0 +1,10 @@ +global class SearchContext { + global String searchPhrase; + global List tableSelections; + global SearchContext(List metadata, Integer offset, Integer maxResults, List tableSelections, String searchPhrase) { } + global SearchContext() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/SearchUtils.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/SearchUtils.cls new file mode 100644 index 0000000..bfe0912 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/SearchUtils.cls @@ -0,0 +1,6 @@ +global class SearchUtils { + global SearchUtils() { } + global Object clone() { } + global static List searchByName(DataSource.SearchContext c, DataSource.Connection conn) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/Table.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/Table.cls new file mode 100644 index 0000000..8c21fb9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/Table.cls @@ -0,0 +1,17 @@ +global class Table { + global List columns; + global String description; + global String labelPlural; + global String labelSingular; + global String name; + global String nameColumn; + global Table() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global static DataSource.Table get(String name, String labelSingular, String labelPlural, String description, String nameColumn, List columns) { } + global static DataSource.Table get(String name, String nameColumn, List columns) { } + global Integer hashCode() { } + global void logWarning(String msg) { } + global void throwException(String msg) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/TableResult.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/TableResult.cls new file mode 100644 index 0000000..b269508 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/TableResult.cls @@ -0,0 +1,18 @@ +global class TableResult { + global String errorMessage; + global String queryMoreToken; + global List> rows; + global Boolean success; + global String tableName; + global Integer totalSize; + global Object clone() { } + global Boolean equals(Object obj) { } + global static DataSource.TableResult error(String errorMessage) { } + global static DataSource.TableResult get(Boolean success, String errorMessage, String tableName, List> rows, Integer totalSize, String queryMoreToken) { } + global static DataSource.TableResult get(Boolean success, String errorMessage, String tableName, List> rows, Integer totalSize) { } + global static DataSource.TableResult get(Boolean success, String errorMessage, String tableName, List> rows) { } + global static DataSource.TableResult get(DataSource.QueryContext c, List> rows) { } + global static DataSource.TableResult get(DataSource.TableSelection tableSelection, List> rows) { } + global Integer hashCode() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/TableSelection.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/TableSelection.cls new file mode 100644 index 0000000..a8e483a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/TableSelection.cls @@ -0,0 +1,11 @@ +global class TableSelection { + global List columnsSelected; + global DataSource.Filter filter; + global List order; + global String tableSelected; + global TableSelection() { } + global Object clone() { } + global Boolean equals(Object obj) { } + global Integer hashCode() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/UpsertContext.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/UpsertContext.cls new file mode 100644 index 0000000..5f214e4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/UpsertContext.cls @@ -0,0 +1,7 @@ +global class UpsertContext { + global List> rows; + global String tableSelected; + global UpsertContext() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/DataSource/UpsertResult.cls b/.sfdx/tools/246/StandardApexLibrary/DataSource/UpsertResult.cls new file mode 100644 index 0000000..9ae4ba0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/DataSource/UpsertResult.cls @@ -0,0 +1,11 @@ +global class UpsertResult { + global String errorMessage; + global String externalId; + global Boolean success; + global Object clone() { } + global Boolean equals(Object obj) { } + global static DataSource.UpsertResult failure(String externalId, String errorMessage) { } + global Integer hashCode() { } + global static DataSource.UpsertResult success(String externalId) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Database/Batchable.cls b/.sfdx/tools/246/StandardApexLibrary/Database/Batchable.cls new file mode 100644 index 0000000..59ba020 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Database/Batchable.cls @@ -0,0 +1,6 @@ +global interface Batchable { + void execute(Database.BatchableContext param0, List param1); + void finish(Database.BatchableContext param0); + System.Iterable start(Database.BatchableContext param0); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Database/BatchableContext.cls b/.sfdx/tools/246/StandardApexLibrary/Database/BatchableContext.cls new file mode 100644 index 0000000..e89b366 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Database/BatchableContext.cls @@ -0,0 +1,5 @@ +global interface BatchableContext { + Id getChildJobId(); + Id getJobId(); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Database/BatchableContextImpl.cls b/.sfdx/tools/246/StandardApexLibrary/Database/BatchableContextImpl.cls new file mode 100644 index 0000000..19df95a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Database/BatchableContextImpl.cls @@ -0,0 +1,6 @@ +global class BatchableContextImpl { + global Object clone() { } + global Id getChildJobId() { } + global Id getJobId() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Database/DMLOptions.cls b/.sfdx/tools/246/StandardApexLibrary/Database/DMLOptions.cls new file mode 100644 index 0000000..3da25cd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Database/DMLOptions.cls @@ -0,0 +1,34 @@ +global class DMLOptions { + global Boolean AllowFieldTruncation; + global Database.DMLOptions.AssignmentRuleHeader AssignmentRuleHeader; + global Database.DMLOptions.DuplicateRuleHeader DuplicateRuleHeader; + global Database.DMLOptions.EmailHeader EmailHeader; + global String LocaleOptions; + global Boolean LocalizeErrors; + global Boolean OptAllOrNone; + global DMLOptions() { } + global Object clone() { } +global class AssignmentRuleHeader { + global String AssignmentRuleId; + global Boolean UseDefaultRule; + global DMLOptions.AssignmentRuleHeader() { } + global Object clone() { } + +} +global class DuplicateRuleHeader { + global Boolean AllowSave; + global Boolean RunAsCurrentUser; + global DMLOptions.DuplicateRuleHeader() { } + global Object clone() { } + +} +global class EmailHeader { + global Boolean TriggerAutoResponseEmail; + global Boolean TriggerOtherEmail; + global Boolean TriggerUserEmail; + global DMLOptions.EmailHeader() { } + global Object clone() { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Database/DeleteResult.cls b/.sfdx/tools/246/StandardApexLibrary/Database/DeleteResult.cls new file mode 100644 index 0000000..eeca913 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Database/DeleteResult.cls @@ -0,0 +1,9 @@ +global class DeleteResult { + global List errors; + global Id id; + global Boolean success; + global List getErrors() { } + global Id getId() { } + global Boolean isSuccess() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Database/DeletedRecord.cls b/.sfdx/tools/246/StandardApexLibrary/Database/DeletedRecord.cls new file mode 100644 index 0000000..94e6f60 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Database/DeletedRecord.cls @@ -0,0 +1,7 @@ +global class DeletedRecord { + global Date deleteddate; + global Id id; + global Date getDeletedDate() { } + global Id getId() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Database/DuplicateError.cls b/.sfdx/tools/246/StandardApexLibrary/Database/DuplicateError.cls new file mode 100644 index 0000000..9e7302b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Database/DuplicateError.cls @@ -0,0 +1,8 @@ +global class DuplicateError { + global Datacloud.DuplicateResult duplicateresult; + global Datacloud.DuplicateResult getDuplicateResult() { } + global List getFields() { } + global String getMessage() { } + global System.StatusCode getStatusCode() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Database/EmptyRecycleBinResult.cls b/.sfdx/tools/246/StandardApexLibrary/Database/EmptyRecycleBinResult.cls new file mode 100644 index 0000000..4449b9f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Database/EmptyRecycleBinResult.cls @@ -0,0 +1,9 @@ +global class EmptyRecycleBinResult { + global List errors; + global Id id; + global Boolean success; + global List getErrors() { } + global Id getId() { } + global Boolean isSuccess() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Database/Error.cls b/.sfdx/tools/246/StandardApexLibrary/Database/Error.cls new file mode 100644 index 0000000..95e86de --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Database/Error.cls @@ -0,0 +1,9 @@ +global class Error { + global List fields; + global String message; + global System.StatusCode statuscode; + global List getFields() { } + global String getMessage() { } + global System.StatusCode getStatusCode() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Database/GetDeletedResult.cls b/.sfdx/tools/246/StandardApexLibrary/Database/GetDeletedResult.cls new file mode 100644 index 0000000..487347c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Database/GetDeletedResult.cls @@ -0,0 +1,9 @@ +global class GetDeletedResult { + global List deletedrecords; + global Date earliestdateavailable; + global Date latestdatecovered; + global List getDeletedRecords() { } + global Date getEarliestDateAvailable() { } + global Date getLatestDateCovered() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Database/GetUpdatedResult.cls b/.sfdx/tools/246/StandardApexLibrary/Database/GetUpdatedResult.cls new file mode 100644 index 0000000..e7f4001 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Database/GetUpdatedResult.cls @@ -0,0 +1,7 @@ +global class GetUpdatedResult { + global List ids; + global Date latestdatecovered; + global List getIds() { } + global Date getLatestDateCovered() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Database/LeadConvert.cls b/.sfdx/tools/246/StandardApexLibrary/Database/LeadConvert.cls new file mode 100644 index 0000000..8c9f52b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Database/LeadConvert.cls @@ -0,0 +1,55 @@ +global class LeadConvert { + global Id accountid; + global SObject accountrecord; + global Boolean bypassaccountdedupecheck; + global Boolean bypasscontactdedupecheck; + global Id contactid; + global SObject contactrecord; + global String convertedstatus; + global Boolean donotcreateopportunity; + global Id leadid; + global Id opportunityid; + global String opportunityname; + global SObject opportunityrecord; + global Boolean overwriteleadsource; + global Id ownerid; + global Id relatedpersonaccountid; + global SObject relatedpersonaccountrecord; + global Boolean sendnotificationemail; + global LeadConvert() { } + global Id getAccountId() { } + global SObject getAccountRecord() { } + global Boolean getBypassAccountDedupeCheck() { } + global Boolean getBypassContactDedupeCheck() { } + global Id getContactId() { } + global SObject getContactRecord() { } + global String getConvertedStatus() { } + global Id getLeadId() { } + global Id getOpportunityId() { } + global String getOpportunityName() { } + global SObject getOpportunityRecord() { } + global Id getOwnerId() { } + global Id getRelatedPersonAccountId() { } + global SObject getRelatedPersonAccountRecord() { } + global Boolean isDoNotCreateOpportunity() { } + global Boolean isOverwriteLeadSource() { } + global Boolean isSendNotificationEmail() { } + global void setAccountId(Id param0) { } + global void setAccountRecord(SObject param0) { } + global void setBypassAccountDedupeCheck(Boolean param0) { } + global void setBypassContactDedupeCheck(Boolean param0) { } + global void setContactId(Id param0) { } + global void setContactRecord(SObject param0) { } + global void setConvertedStatus(String param0) { } + global void setDoNotCreateOpportunity(Boolean param0) { } + global void setLeadId(Id param0) { } + global void setOpportunityId(Id param0) { } + global void setOpportunityName(String param0) { } + global void setOpportunityRecord(SObject param0) { } + global void setOverwriteLeadSource(Boolean param0) { } + global void setOwnerId(Id param0) { } + global void setRelatedPersonAccountId(Id param0) { } + global void setRelatedPersonAccountRecord(SObject param0) { } + global void setSendNotificationEmail(Boolean param0) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Database/LeadConvertResult.cls b/.sfdx/tools/246/StandardApexLibrary/Database/LeadConvertResult.cls new file mode 100644 index 0000000..027e6d0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Database/LeadConvertResult.cls @@ -0,0 +1,17 @@ +global class LeadConvertResult { + global Id accountid; + global Id contactid; + global List errors; + global Id leadid; + global Id opportunityid; + global Id relatedpersonaccountid; + global Boolean success; + global Id getAccountId() { } + global Id getContactId() { } + global List getErrors() { } + global Id getLeadId() { } + global Id getOpportunityId() { } + global Id getRelatedPersonAccountId() { } + global Boolean isSuccess() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Database/MergeRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Database/MergeRequest.cls new file mode 100644 index 0000000..42c139f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Database/MergeRequest.cls @@ -0,0 +1,13 @@ +global class MergeRequest { + global List additionalinformationmap; + global SObject masterrecord; + global List recordtomergeids; + global MergeRequest() { } + global List getAdditionalInformationMap() { } + global SObject getMasterRecord() { } + global List getRecordToMergeIds() { } + global void setAdditionalInformationMap(List param0) { } + global void setMasterRecord(SObject param0) { } + global void setRecordToMergeIds(List param0) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Database/MergeResult.cls b/.sfdx/tools/246/StandardApexLibrary/Database/MergeResult.cls new file mode 100644 index 0000000..d4dcae5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Database/MergeResult.cls @@ -0,0 +1,13 @@ +global class MergeResult { + global List errors; + global Id id; + global List mergedrecordids; + global Boolean success; + global List updatedrelatedids; + global List getErrors() { } + global Id getId() { } + global List getMergedRecordIds() { } + global List getUpdatedRelatedIds() { } + global Boolean isSuccess() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Database/NestedSaveResult.cls b/.sfdx/tools/246/StandardApexLibrary/Database/NestedSaveResult.cls new file mode 100644 index 0000000..5867078 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Database/NestedSaveResult.cls @@ -0,0 +1,8 @@ +global class NestedSaveResult { + global List relationshipsaveresults; + global List getErrors() { } + global Id getId() { } + global List getRelationshipSaveResults() { } + global Boolean isSuccess() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Database/QueryLocator.cls b/.sfdx/tools/246/StandardApexLibrary/Database/QueryLocator.cls new file mode 100644 index 0000000..0c6709b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Database/QueryLocator.cls @@ -0,0 +1,6 @@ +global class QueryLocator { + global String getQuery() { } + global Database.QueryLocatorIterator iterator() { } + global List querymore(Integer num) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Database/QueryLocatorChunkIterator.cls b/.sfdx/tools/246/StandardApexLibrary/Database/QueryLocatorChunkIterator.cls new file mode 100644 index 0000000..a38ca59 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Database/QueryLocatorChunkIterator.cls @@ -0,0 +1,6 @@ +global class QueryLocatorChunkIterator { + global Object clone() { } + global Boolean hasNext() { } + global List next() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Database/QueryLocatorIterator.cls b/.sfdx/tools/246/StandardApexLibrary/Database/QueryLocatorIterator.cls new file mode 100644 index 0000000..a851e82 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Database/QueryLocatorIterator.cls @@ -0,0 +1,6 @@ +global class QueryLocatorIterator { + global Object clone() { } + global Boolean hasNext() { } + global SObject next() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Database/RelationshipSaveResult.cls b/.sfdx/tools/246/StandardApexLibrary/Database/RelationshipSaveResult.cls new file mode 100644 index 0000000..05de5ab --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Database/RelationshipSaveResult.cls @@ -0,0 +1,7 @@ +global class RelationshipSaveResult { + global String relationshipname; + global List saveresults; + global String getRelationshipName() { } + global List getSaveResults() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Database/SaveResult.cls b/.sfdx/tools/246/StandardApexLibrary/Database/SaveResult.cls new file mode 100644 index 0000000..4b1c94b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Database/SaveResult.cls @@ -0,0 +1,9 @@ +global class SaveResult { + global List errors; + global Id id; + global Boolean success; + global List getErrors() { } + global Id getId() { } + global Boolean isSuccess() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Database/UndeleteResult.cls b/.sfdx/tools/246/StandardApexLibrary/Database/UndeleteResult.cls new file mode 100644 index 0000000..f146263 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Database/UndeleteResult.cls @@ -0,0 +1,9 @@ +global class UndeleteResult { + global List errors; + global Id id; + global Boolean success; + global List getErrors() { } + global Id getId() { } + global Boolean isSuccess() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Database/UnitOfWork.cls b/.sfdx/tools/246/StandardApexLibrary/Database/UnitOfWork.cls new file mode 100644 index 0000000..35bb4f3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Database/UnitOfWork.cls @@ -0,0 +1,15 @@ +global class UnitOfWork { + global UnitOfWork() { } + global Object clone() { } + global void commitWork() { } + global Database.DeleteResult deleteRecord(SObject sobj) { } + global List deleteRecords(List sObjects) { } + global void discardWork() { } + global Database.SaveResult insertRecord(SObject sobj) { } + global List insertRecords(List sObjects) { } + global Database.SaveResult updateRecord(SObject sobj) { } + global List updateRecords(List sObjects) { } + global Database.UpsertResult upsertRecord(SObject sobj) { } + global List upsertRecords(List sObjects) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Database/UpsertResult.cls b/.sfdx/tools/246/StandardApexLibrary/Database/UpsertResult.cls new file mode 100644 index 0000000..0d09ec9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Database/UpsertResult.cls @@ -0,0 +1,11 @@ +global class UpsertResult { + global Boolean created; + global List errors; + global Id id; + global Boolean success; + global List getErrors() { } + global Id getId() { } + global Boolean isCreated() { } + global Boolean isSuccess() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Datacloud/AdditionalInformationMap.cls b/.sfdx/tools/246/StandardApexLibrary/Datacloud/AdditionalInformationMap.cls new file mode 100644 index 0000000..87ca0d4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Datacloud/AdditionalInformationMap.cls @@ -0,0 +1,7 @@ +global class AdditionalInformationMap { + global String name; + global String value; + global String getName() { } + global String getValue() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Datacloud/DuplicateResult.cls b/.sfdx/tools/246/StandardApexLibrary/Datacloud/DuplicateResult.cls new file mode 100644 index 0000000..ba512fe --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Datacloud/DuplicateResult.cls @@ -0,0 +1,13 @@ +global class DuplicateResult { + global Boolean allowsave; + global String duplicaterule; + global String duplicateruleentitytype; + global String errormessage; + global List matchresults; + global String getDuplicateRule() { } + global String getDuplicateRuleEntityType() { } + global String getErrorMessage() { } + global List getMatchResults() { } + global Boolean isAllowSave() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Datacloud/FieldDiff.cls b/.sfdx/tools/246/StandardApexLibrary/Datacloud/FieldDiff.cls new file mode 100644 index 0000000..9c07954 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Datacloud/FieldDiff.cls @@ -0,0 +1,7 @@ +global class FieldDiff { + global String difference; + global String name; + global String getDifference() { } + global String getName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Datacloud/FieldDifferenceType.cls b/.sfdx/tools/246/StandardApexLibrary/Datacloud/FieldDifferenceType.cls new file mode 100644 index 0000000..8d43e90 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Datacloud/FieldDifferenceType.cls @@ -0,0 +1,5 @@ +global class FieldDifferenceType { + global String name; + global String getName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Datacloud/FindDuplicates.cls b/.sfdx/tools/246/StandardApexLibrary/Datacloud/FindDuplicates.cls new file mode 100644 index 0000000..24e8848 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Datacloud/FindDuplicates.cls @@ -0,0 +1,6 @@ +global class FindDuplicates { + global FindDuplicates() { } + global Object clone() { } + global static List findDuplicates(List sObjects) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Datacloud/FindDuplicatesByIds.cls b/.sfdx/tools/246/StandardApexLibrary/Datacloud/FindDuplicatesByIds.cls new file mode 100644 index 0000000..13bde16 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Datacloud/FindDuplicatesByIds.cls @@ -0,0 +1,6 @@ +global class FindDuplicatesByIds { + global FindDuplicatesByIds() { } + global Object clone() { } + global static List findDuplicatesByIds(List ids) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Datacloud/FindDuplicatesResult.cls b/.sfdx/tools/246/StandardApexLibrary/Datacloud/FindDuplicatesResult.cls new file mode 100644 index 0000000..d8f96c8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Datacloud/FindDuplicatesResult.cls @@ -0,0 +1,9 @@ +global class FindDuplicatesResult { + global List duplicateresults; + global List errors; + global Boolean success; + global List getDuplicateResults() { } + global List getErrors() { } + global Boolean isSuccess() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Datacloud/MatchRecord.cls b/.sfdx/tools/246/StandardApexLibrary/Datacloud/MatchRecord.cls new file mode 100644 index 0000000..38b3864 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Datacloud/MatchRecord.cls @@ -0,0 +1,11 @@ +global class MatchRecord { + global List additionalinformation; + global List fielddiffs; + global Double matchconfidence; + global SObject record; + global List getAdditionalInformation() { } + global List getFieldDiffs() { } + global Double getMatchConfidence() { } + global SObject getRecord() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Datacloud/MatchResult.cls b/.sfdx/tools/246/StandardApexLibrary/Datacloud/MatchResult.cls new file mode 100644 index 0000000..7e6818d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Datacloud/MatchResult.cls @@ -0,0 +1,17 @@ +global class MatchResult { + global String entitytype; + global List errors; + global String matchengine; + global List matchrecords; + global String rule; + global Integer size; + global Boolean success; + global String getEntityType() { } + global List getErrors() { } + global String getMatchEngine() { } + global List getMatchRecords() { } + global String getRule() { } + global Integer getSize() { } + global Boolean isSuccess() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Dom/Document.cls b/.sfdx/tools/246/StandardApexLibrary/Dom/Document.cls new file mode 100644 index 0000000..305caae --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Dom/Document.cls @@ -0,0 +1,8 @@ +global class Document { + global Document() { } + global dom.XmlNode createRootElement(String name, String namespace, String prefix) { } + global dom.XmlNode getRootElement() { } + global void load(String xml) { } + global String toXmlString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Dom/XmlNode.cls b/.sfdx/tools/246/StandardApexLibrary/Dom/XmlNode.cls new file mode 100644 index 0000000..6106990 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Dom/XmlNode.cls @@ -0,0 +1,28 @@ +global class XmlNode { + global dom.XmlNode addChildElement(String name, String namespace, String prefix) { } + global dom.XmlNode addCommentNode(String text) { } + global dom.XmlNode addTextNode(String text) { } + global String getAttribute(String key, String keyNamespace) { } + global Integer getAttributeCount() { } + global String getAttributeKeyAt(Integer index) { } + global String getAttributeKeyNsAt(Integer index) { } + global String getAttributeValue(String key, String keyNamespace) { } + global String getAttributeValueNs(String key, String keyNamespace) { } + global dom.XmlNode getChildElement(String name, String namespace) { } + global List getChildElements() { } + global List getChildren() { } + global String getName() { } + global String getNamespace() { } + global String getNamespaceFor(String prefix) { } + global Dom.XmlNodeType getNodeType() { } + global dom.XmlNode getParent() { } + global String getPrefixFor(String namespace) { } + global String getText() { } + global dom.XmlNode insertBefore(Object newChild, Object refChild) { } + global Boolean removeAttribute(String key, String keyNamespace) { } + global Boolean removeChild(Object child) { } + global void setAttribute(String key, String value) { } + global void setAttributeNs(String key, String value, String keyNamespace, String valueNamespace) { } + global void setNamespace(String prefix, String namespace) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Dom/XmlNodeType.cls b/.sfdx/tools/246/StandardApexLibrary/Dom/XmlNodeType.cls new file mode 100644 index 0000000..bd850f8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Dom/XmlNodeType.cls @@ -0,0 +1,5 @@ +global enum XmlNodeType { +COMMENT, +ELEMENT, +TEXT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/EventBus/ChangeEventHeader.cls b/.sfdx/tools/246/StandardApexLibrary/EventBus/ChangeEventHeader.cls new file mode 100644 index 0000000..9ad4341 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/EventBus/ChangeEventHeader.cls @@ -0,0 +1,40 @@ +global class ChangeEventHeader { + global List changedfields; + global String changeorigin; + global String changetype; + global Long commitnumber; + global Long committimestamp; + global String commituser; + global List difffields; + global String entityname; + global List nulledfields; + global List recordids; + global Integer sequencenumber; + global String transactionkey; + global ChangeEventHeader() { } + global String getChangeOrigin() { } + global String getChangeType() { } + global List getChangedFields() { } + global Long getCommitNumber() { } + global Long getCommitTimestamp() { } + global String getCommitUser() { } + global List getDiffFields() { } + global String getEntityName() { } + global List getNulledFields() { } + global List getRecordIds() { } + global Integer getSequenceNumber() { } + global String getTransactionKey() { } + global void setChangeOrigin(String param0) { } + global void setChangeType(String param0) { } + global void setChangedFields(List param0) { } + global void setCommitNumber(Long param0) { } + global void setCommitTimestamp(Long param0) { } + global void setCommitUser(String param0) { } + global void setDiffFields(List param0) { } + global void setEntityName(String param0) { } + global void setNulledFields(List param0) { } + global void setRecordIds(List param0) { } + global void setSequenceNumber(Integer param0) { } + global void setTransactionKey(String param0) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/EventBus/EventPublishFailureCallback.cls b/.sfdx/tools/246/StandardApexLibrary/EventBus/EventPublishFailureCallback.cls new file mode 100644 index 0000000..bd680e3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/EventBus/EventPublishFailureCallback.cls @@ -0,0 +1,4 @@ +global interface EventPublishFailureCallback { + void onFailure(eventbus.FailureResult param0); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/EventBus/EventPublishSuccessCallback.cls b/.sfdx/tools/246/StandardApexLibrary/EventBus/EventPublishSuccessCallback.cls new file mode 100644 index 0000000..18afd5e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/EventBus/EventPublishSuccessCallback.cls @@ -0,0 +1,4 @@ +global interface EventPublishSuccessCallback { + void onSuccess(eventbus.SuccessResult param0); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/EventBus/FailureResult.cls b/.sfdx/tools/246/StandardApexLibrary/EventBus/FailureResult.cls new file mode 100644 index 0000000..0be831c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/EventBus/FailureResult.cls @@ -0,0 +1,4 @@ +global interface FailureResult { + List getEventUuids(); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/EventBus/InvalidReplayIdException.cls b/.sfdx/tools/246/StandardApexLibrary/EventBus/InvalidReplayIdException.cls new file mode 100644 index 0000000..75cd9c2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/EventBus/InvalidReplayIdException.cls @@ -0,0 +1,9 @@ +global class InvalidReplayIdException extends Exception { + global InvalidReplayIdException(String param0, Exception param1) { } + global InvalidReplayIdException(Exception param0) { } + global InvalidReplayIdException(String param0) { } + global InvalidReplayIdException() { } + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/EventBus/RetryableException.cls b/.sfdx/tools/246/StandardApexLibrary/EventBus/RetryableException.cls new file mode 100644 index 0000000..2a53ae1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/EventBus/RetryableException.cls @@ -0,0 +1,9 @@ +global class RetryableException extends Exception { + global RetryableException(String param0, Exception param1) { } + global RetryableException(Exception param0) { } + global RetryableException(String param0) { } + global RetryableException() { } + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/EventBus/SuccessResult.cls b/.sfdx/tools/246/StandardApexLibrary/EventBus/SuccessResult.cls new file mode 100644 index 0000000..9ce79da --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/EventBus/SuccessResult.cls @@ -0,0 +1,4 @@ +global interface SuccessResult { + List getEventUuids(); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/EventBus/TestBroker.cls b/.sfdx/tools/246/StandardApexLibrary/EventBus/TestBroker.cls new file mode 100644 index 0000000..9471503 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/EventBus/TestBroker.cls @@ -0,0 +1,7 @@ +global class TestBroker { + global TestBroker() { } + global Object clone() { } + global void deliver() { } + global void fail() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/EventBus/TestEventService.cls b/.sfdx/tools/246/StandardApexLibrary/EventBus/TestEventService.cls new file mode 100644 index 0000000..77daeb1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/EventBus/TestEventService.cls @@ -0,0 +1,6 @@ +global class TestEventService { + global TestEventService() { } + global Object clone() { } + global static void publishEvent(String eventName, Map payload) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/EventBus/TriggerContext.cls b/.sfdx/tools/246/StandardApexLibrary/EventBus/TriggerContext.cls new file mode 100644 index 0000000..3c1ae08 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/EventBus/TriggerContext.cls @@ -0,0 +1,9 @@ +global class TriggerContext { + global String lastError; + global Integer retries; + global Object clone() { } + global static eventbus.TriggerContext currentContext() { } + global String getResumeCheckpoint() { } + global void setResumeCheckpoint(String resumeReplayId) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Flow/Interview.cls b/.sfdx/tools/246/StandardApexLibrary/Flow/Interview.cls new file mode 100644 index 0000000..60be9a3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Flow/Interview.cls @@ -0,0 +1,8 @@ +global class Interview { + global Object clone() { } + global static Flow.Interview createInterview(String namespace, String flowName, Map inputVariables) { } + global static Flow.Interview createInterview(String flowName, Map inputVariables) { } + global Object getVariableValue(String variableName) { } + global void start() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/KbManagement/PublishingService.cls b/.sfdx/tools/246/StandardApexLibrary/KbManagement/PublishingService.cls new file mode 100644 index 0000000..3c3ace9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/KbManagement/PublishingService.cls @@ -0,0 +1,23 @@ +global class PublishingService { + global PublishingService() { } + global static void archiveOnlineArticle(String articleId, Datetime scheduledDate) { } + global static void assignDraftArticleTask(String articleId, String assigneeId, String instructions, Datetime dueDate, Boolean sendEmailNotification) { } + global static void assignDraftTranslationTask(String translationVersionId, String assigneeId, String instructions, Datetime dueDate, Boolean sendEmailNotification) { } + global static void cancelScheduledArchivingOfArticle(String articleId) { } + global static void cancelScheduledPublicationOfArticle(String articleId) { } + global Object clone() { } + global static void completeTranslation(String articleVersionId) { } + global static void deleteArchivedArticle(String articleId) { } + global static void deleteArchivedArticleVersion(String articleId, Integer versionNumber) { } + global static void deleteDraftArticle(String articleId) { } + global static void deleteDraftTranslation(String articleVersionId) { } + global static String editArchivedArticle(String articleId) { } + global static String editOnlineArticle(String articleId, Boolean unpublish) { } + global static String editPublishedTranslation(String articleId, String language, Boolean unpublish) { } + global static void publishArticle(String articleId, Boolean flagAsNew) { } + global static String restoreOldVersion(String articleId, Integer versionNumber) { } + global static void scheduleForPublication(String articleId, Datetime scheduledDate) { } + global static void setTranslationToIncomplete(String articleVersionId) { } + global static String submitForTranslation(String articleId, String language, String assigneeId, Datetime dueDate) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Messaging/AttachmentRetrievalOption.cls b/.sfdx/tools/246/StandardApexLibrary/Messaging/AttachmentRetrievalOption.cls new file mode 100644 index 0000000..e178389 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Messaging/AttachmentRetrievalOption.cls @@ -0,0 +1,5 @@ +global enum AttachmentRetrievalOption { +METADATA_ONLY, +METADATA_WITH_BODY, +NONE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Messaging/CustomNotification.cls b/.sfdx/tools/246/StandardApexLibrary/Messaging/CustomNotification.cls new file mode 100644 index 0000000..39b2473 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Messaging/CustomNotification.cls @@ -0,0 +1,13 @@ +global class CustomNotification { + global CustomNotification(String typeId, String sender, String title, String body, String targetId, String targetPageRef) { } + global CustomNotification() { } + global Object clone() { } + global void send(Set users) { } + global void setBody(String body) { } + global void setNotificationTypeId(String id) { } + global void setSenderId(String id) { } + global void setTargetId(String targetId) { } + global void setTargetPageRef(String pageRef) { } + global void setTitle(String title) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Messaging/Email.cls b/.sfdx/tools/246/StandardApexLibrary/Messaging/Email.cls new file mode 100644 index 0000000..41cfab5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Messaging/Email.cls @@ -0,0 +1,24 @@ +global class Email { + global Boolean bccsender; + global String emailpriority; + global String replyto; + global Boolean saveasactivity; + global String senderdisplayname; + global String subject; + global Boolean usesignature; + global Boolean getBccSender() { } + global String getEmailPriority() { } + global String getReplyTo() { } + global Boolean getSaveAsActivity() { } + global String getSenderDisplayName() { } + global String getSubject() { } + global Boolean getUseSignature() { } + global void setBccSender(Boolean param0) { } + global void setEmailPriority(String param0) { } + global void setReplyTo(String param0) { } + global void setSaveAsActivity(Boolean param0) { } + global void setSenderDisplayName(String param0) { } + global void setSubject(String param0) { } + global void setUseSignature(Boolean param0) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Messaging/EmailAttachment.cls b/.sfdx/tools/246/StandardApexLibrary/Messaging/EmailAttachment.cls new file mode 100644 index 0000000..583ec96 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Messaging/EmailAttachment.cls @@ -0,0 +1,16 @@ +global class EmailAttachment { + global Blob body; + global String contentid; + global String contenttype; + global String filename; + global EmailAttachment() { } + global Blob getBody() { } + global String getContentId() { } + global String getContentType() { } + global String getFileName() { } + global void setBody(Blob param0) { } + global void setContentId(String param0) { } + global void setContentType(String param0) { } + global void setFileName(String param0) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Messaging/EmailFileAttachment.cls b/.sfdx/tools/246/StandardApexLibrary/Messaging/EmailFileAttachment.cls new file mode 100644 index 0000000..f1c6f3c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Messaging/EmailFileAttachment.cls @@ -0,0 +1,18 @@ +global class EmailFileAttachment { + global Blob body; + global String contenttype; + global String filename; + global Id id; + global Boolean inline; + global EmailFileAttachment() { } + global Blob getBody() { } + global String getContentType() { } + global String getFileName() { } + global Id getId() { } + global Boolean getInline() { } + global void setBody(Blob param0) { } + global void setContentType(String param0) { } + global void setFileName(String param0) { } + global void setInline(Boolean param0) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Messaging/EmailToSalesforceHandler.cls b/.sfdx/tools/246/StandardApexLibrary/Messaging/EmailToSalesforceHandler.cls new file mode 100644 index 0000000..068cb67 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Messaging/EmailToSalesforceHandler.cls @@ -0,0 +1,5 @@ +global class EmailToSalesforceHandler { + global EmailToSalesforceHandler() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Messaging/InboundEmail.cls b/.sfdx/tools/246/StandardApexLibrary/Messaging/InboundEmail.cls new file mode 100644 index 0000000..bd642fa --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Messaging/InboundEmail.cls @@ -0,0 +1,64 @@ +global class InboundEmail { + global List authenticationResults; + global List binaryAttachments; + global List ccAddresses; + global String fromAddress; + global String fromName; + global List headers; + global String htmlBody; + global Boolean htmlBodyIsTruncated; + global String inReplyTo; + global String messageId; + global String plainTextBody; + global Boolean plainTextBodyIsTruncated; + global List references; + global String replyTo; + global String subject; + global List textAttachments; + global List toAddresses; + global InboundEmail() { } + global Object clone() { } +global class AuthenticationResult { + global List authenticationResultFields; + global String method; + global String result; + global InboundEmail.AuthenticationResult() { } + global Object clone() { } + +} +global class AuthenticationResultField { + global String name; + global String value; + global InboundEmail.AuthenticationResultField() { } + global Object clone() { } + +} +global class BinaryAttachment { + global Blob body; + global String fileName; + global List headers; + global String mimeTypeSubType; + global InboundEmail.BinaryAttachment() { } + global Object clone() { } + +} +global class Header { + global String name; + global String value; + global InboundEmail.Header() { } + global Object clone() { } + +} +global class TextAttachment { + global String body; + global Boolean bodyIsTruncated; + global String charset; + global String fileName; + global List headers; + global String mimeTypeSubType; + global InboundEmail.TextAttachment() { } + global Object clone() { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Messaging/InboundEmailHandler.cls b/.sfdx/tools/246/StandardApexLibrary/Messaging/InboundEmailHandler.cls new file mode 100644 index 0000000..3818be3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Messaging/InboundEmailHandler.cls @@ -0,0 +1,4 @@ +global interface InboundEmailHandler { + Messaging.InboundEmailResult handleInboundEmail(Messaging.InboundEmail param0, Messaging.InboundEnvelope param1); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Messaging/InboundEmailResult.cls b/.sfdx/tools/246/StandardApexLibrary/Messaging/InboundEmailResult.cls new file mode 100644 index 0000000..017b899 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Messaging/InboundEmailResult.cls @@ -0,0 +1,7 @@ +global class InboundEmailResult { + global String message; + global Boolean success; + global InboundEmailResult() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Messaging/InboundEnvelope.cls b/.sfdx/tools/246/StandardApexLibrary/Messaging/InboundEnvelope.cls new file mode 100644 index 0000000..66ff55e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Messaging/InboundEnvelope.cls @@ -0,0 +1,7 @@ +global class InboundEnvelope { + global String fromAddress; + global String toAddress; + global InboundEnvelope() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Messaging/MassEmailMessage.cls b/.sfdx/tools/246/StandardApexLibrary/Messaging/MassEmailMessage.cls new file mode 100644 index 0000000..8d075df --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Messaging/MassEmailMessage.cls @@ -0,0 +1,30 @@ +global class MassEmailMessage { + global String description; + global List targetobjectids; + global Id templateid; + global List whatids; + global MassEmailMessage() { } + global Boolean getBccSender() { } + global String getDescription() { } + global String getEmailPriority() { } + global String getReplyTo() { } + global Boolean getSaveAsActivity() { } + global String getSenderDisplayName() { } + global String getSubject() { } + global List getTargetObjectIds() { } + global Id getTemplateId() { } + global Boolean getUseSignature() { } + global List getWhatIds() { } + global void setBccSender(Boolean param0) { } + global void setDescription(String param0) { } + global void setEmailPriority(String param0) { } + global void setReplyTo(String param0) { } + global void setSaveAsActivity(Boolean param0) { } + global void setSenderDisplayName(String param0) { } + global void setSubject(String param0) { } + global void setTargetObjectIds(List param0) { } + global void setTemplateId(Id param0) { } + global void setUseSignature(Boolean param0) { } + global void setWhatIds(List param0) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Messaging/PushNotification.cls b/.sfdx/tools/246/StandardApexLibrary/Messaging/PushNotification.cls new file mode 100644 index 0000000..47795cd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Messaging/PushNotification.cls @@ -0,0 +1,9 @@ +global class PushNotification { + global PushNotification(Map payload) { } + global PushNotification() { } + global Object clone() { } + global void send(String application, Set users) { } + global void setPayload(Map payload) { } + global void setTtl(Integer ttl) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Messaging/PushNotificationPayload.cls b/.sfdx/tools/246/StandardApexLibrary/Messaging/PushNotificationPayload.cls new file mode 100644 index 0000000..eca624a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Messaging/PushNotificationPayload.cls @@ -0,0 +1,7 @@ +global class PushNotificationPayload { + global PushNotificationPayload() { } + global static Map apple(String alertBody, String actionLocKey, String locKey, List locArgs, String launchImage, String sound, Integer badgeCount, Map userData) { } + global static Map apple(String alert, String sound, Integer badgeCount, Map userData) { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Messaging/RenderEmailTemplateBodyResult.cls b/.sfdx/tools/246/StandardApexLibrary/Messaging/RenderEmailTemplateBodyResult.cls new file mode 100644 index 0000000..7c80e55 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Messaging/RenderEmailTemplateBodyResult.cls @@ -0,0 +1,9 @@ +global class RenderEmailTemplateBodyResult { + global List errors; + global String mergedbody; + global Boolean success; + global List getErrors() { } + global String getMergedBody() { } + global Boolean getSuccess() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Messaging/RenderEmailTemplateError.cls b/.sfdx/tools/246/StandardApexLibrary/Messaging/RenderEmailTemplateError.cls new file mode 100644 index 0000000..e4c9abc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Messaging/RenderEmailTemplateError.cls @@ -0,0 +1,11 @@ +global class RenderEmailTemplateError { + global String fieldname; + global String message; + global Integer offset; + global System.StatusCode statuscode; + global String getFieldName() { } + global String getMessage() { } + global Integer getOffset() { } + global System.StatusCode getStatusCode() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Messaging/SendEmailError.cls b/.sfdx/tools/246/StandardApexLibrary/Messaging/SendEmailError.cls new file mode 100644 index 0000000..ee3527a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Messaging/SendEmailError.cls @@ -0,0 +1,10 @@ +global class SendEmailError { + global String message; + global System.StatusCode statuscode; + global String targetobjectid; + global List getFields() { } + global String getMessage() { } + global System.StatusCode getStatusCode() { } + global String getTargetObjectId() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Messaging/SendEmailResult.cls b/.sfdx/tools/246/StandardApexLibrary/Messaging/SendEmailResult.cls new file mode 100644 index 0000000..7771a36 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Messaging/SendEmailResult.cls @@ -0,0 +1,7 @@ +global class SendEmailResult { + global List errors; + global Boolean success; + global List getErrors() { } + global Boolean isSuccess() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Messaging/SingleEmailMessage.cls b/.sfdx/tools/246/StandardApexLibrary/Messaging/SingleEmailMessage.cls new file mode 100644 index 0000000..f423ad8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Messaging/SingleEmailMessage.cls @@ -0,0 +1,73 @@ +global class SingleEmailMessage { + global List bccaddresses; + global List ccaddresses; + global String charset; + global List entityattachments; + global List fileattachments; + global String htmlbody; + global String inreplyto; + global String optoutpolicy; + global Id orgwideemailaddressid; + global String plaintextbody; + global String references; + global Id targetobjectid; + global Id templateid; + global String templatename; + global List toaddresses; + global Boolean treatbodiesastemplate; + global Boolean treattargetobjectasrecipient; + global Boolean usermail; + global Id whatid; + global SingleEmailMessage() { } + global List getBccAddresses() { } + global Boolean getBccSender() { } + global List getCcAddresses() { } + global String getCharset() { } + global String getEmailPriority() { } + global List getEntityAttachments() { } + global List getFileAttachments() { } + global String getHtmlBody() { } + global String getInReplyTo() { } + global String getOptOutPolicy() { } + global Id getOrgWideEmailAddressId() { } + global String getPlainTextBody() { } + global String getReferences() { } + global String getReplyTo() { } + global Boolean getSaveAsActivity() { } + global String getSenderDisplayName() { } + global String getSubject() { } + global Id getTargetObjectId() { } + global Id getTemplateId() { } + global String getTemplateName() { } + global List getToAddresses() { } + global Boolean getUseSignature() { } + global Id getWhatId() { } + global Boolean isTreatBodiesAsTemplate() { } + global Boolean isTreatTargetObjectAsRecipient() { } + global Boolean isUserMail() { } + global void setBccAddresses(List param0) { } + global void setBccSender(Boolean param0) { } + global void setCcAddresses(List param0) { } + global void setCharset(String param0) { } + global void setEmailPriority(String param0) { } + global void setEntityAttachments(List param0) { } + global void setFileAttachments(List param0) { } + global void setHtmlBody(String param0) { } + global void setInReplyTo(String param0) { } + global void setOptOutPolicy(String param0) { } + global void setOrgWideEmailAddressId(Id param0) { } + global void setPlainTextBody(String param0) { } + global void setReferences(String param0) { } + global void setReplyTo(String param0) { } + global void setSaveAsActivity(Boolean param0) { } + global void setSenderDisplayName(String param0) { } + global void setSubject(String param0) { } + global void setTargetObjectId(Id param0) { } + global void setTemplateId(Id param0) { } + global void setToAddresses(List param0) { } + global void setTreatBodiesAsTemplate(Boolean param0) { } + global void setTreatTargetObjectAsRecipient(Boolean param0) { } + global void setUseSignature(Boolean param0) { } + global void setWhatId(Id param0) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/AnalyticsCloudComponentLayoutItem.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/AnalyticsCloudComponentLayoutItem.cls new file mode 100644 index 0000000..b87672e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/AnalyticsCloudComponentLayoutItem.cls @@ -0,0 +1,15 @@ +global class AnalyticsCloudComponentLayoutItem { + global String assetType; + global String devName; + global String error; + global String filter; + global Integer height; + global Boolean hideOnError; + global Boolean showHeader; + global Boolean showSharing; + global Boolean showTitle; + global String width; + global AnalyticsCloudComponentLayoutItem() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/ConsoleComponent.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/ConsoleComponent.cls new file mode 100644 index 0000000..5fbbfab --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/ConsoleComponent.cls @@ -0,0 +1,9 @@ +global class ConsoleComponent { + global Integer height; + global String location; + global String visualforcePage; + global Integer width; + global ConsoleComponent() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/Container.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/Container.cls new file mode 100644 index 0000000..b294c4e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/Container.cls @@ -0,0 +1,12 @@ +global class Container { + global Integer height; + global Boolean isContainerAutoSizeEnabled; + global String region; + global List sidebarComponents; + global String style; + global String unit; + global Integer width; + global Container() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/CustomConsoleComponents.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/CustomConsoleComponents.cls new file mode 100644 index 0000000..a4d2f81 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/CustomConsoleComponents.cls @@ -0,0 +1,7 @@ +global class CustomConsoleComponents { + global Metadata.PrimaryTabComponents primaryTabComponents; + global Metadata.SubtabComponents subtabComponents; + global CustomConsoleComponents() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/CustomMetadata.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/CustomMetadata.cls new file mode 100644 index 0000000..82fd96a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/CustomMetadata.cls @@ -0,0 +1,9 @@ +global class CustomMetadata { + global String description; + global String label; + global Boolean protected_x; + global List values; + global CustomMetadata() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/CustomMetadataValue.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/CustomMetadataValue.cls new file mode 100644 index 0000000..0873d9b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/CustomMetadataValue.cls @@ -0,0 +1,7 @@ +global class CustomMetadataValue { + global String field; + global Object value; + global CustomMetadataValue() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/DeployCallback.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/DeployCallback.cls new file mode 100644 index 0000000..9fc556c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/DeployCallback.cls @@ -0,0 +1,4 @@ +global interface DeployCallback { + void handleResult(Metadata.DeployResult param0, Metadata.DeployCallbackContext param1); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/DeployCallbackContext.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/DeployCallbackContext.cls new file mode 100644 index 0000000..86868dd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/DeployCallbackContext.cls @@ -0,0 +1,6 @@ +global class DeployCallbackContext { + global DeployCallbackContext() { } + global Object clone() { } + global Id getCallbackJobId() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/DeployContainer.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/DeployContainer.cls new file mode 100644 index 0000000..de9ce72 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/DeployContainer.cls @@ -0,0 +1,9 @@ +global class DeployContainer { + global DeployContainer() { } + global void addMetadata(Metadata.Metadata md) { } + global Object clone() { } + global List getMetadata() { } + global Boolean removeMetadata(Metadata.Metadata md) { } + global Boolean removeMetadataByFullName(String fullName) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/DeployDetails.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/DeployDetails.cls new file mode 100644 index 0000000..5952a36 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/DeployDetails.cls @@ -0,0 +1,7 @@ +global class DeployDetails { + global List componentFailures; + global List componentSuccesses; + global DeployDetails() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/DeployMessage.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/DeployMessage.cls new file mode 100644 index 0000000..8329f19 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/DeployMessage.cls @@ -0,0 +1,18 @@ +global class DeployMessage { + global Boolean changed; + global Integer columnNumber; + global String componentType; + global Boolean created; + global Datetime createdDate; + global Boolean deleted; + global String fileName; + global String fullName; + global Id id; + global Integer lineNumber; + global String problem; + global Metadata.DeployProblemType problemType; + global Boolean success; + global DeployMessage() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/DeployProblemType.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/DeployProblemType.cls new file mode 100644 index 0000000..6d23859 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/DeployProblemType.cls @@ -0,0 +1,5 @@ +global enum DeployProblemType { +ERROR, +INFO, +WARNING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/DeployResult.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/DeployResult.cls new file mode 100644 index 0000000..b4c1b41 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/DeployResult.cls @@ -0,0 +1,28 @@ +global class DeployResult { + global String canceledBy; + global String canceledByName; + global Boolean checkOnly; + global Datetime completedDate; + global String createdBy; + global String createdByName; + global Datetime createdDate; + global Metadata.DeployDetails details; + global Boolean done; + global String errorMessage; + global Metadata.StatusCode errorStatusCode; + global Id id; + global Boolean ignoreWarnings; + global Datetime lastModifiedDate; + global List messages; + global Integer numberComponentErrors; + global Integer numberComponentsDeployed; + global Integer numberComponentsTotal; + global Boolean rollbackOnError; + global Datetime startDate; + global String stateDetail; + global Metadata.DeployStatus status; + global Boolean success; + global DeployResult() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/DeployStatus.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/DeployStatus.cls new file mode 100644 index 0000000..3fada3f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/DeployStatus.cls @@ -0,0 +1,9 @@ +global enum DeployStatus { +CANCELED, +CANCELING, +FAILED, +INPROGRESS, +PENDING, +SUCCEEDED, +SUCCEEDEDPARTIAL +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/FeedItemTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/FeedItemTypeEnum.cls new file mode 100644 index 0000000..6e3e507 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/FeedItemTypeEnum.cls @@ -0,0 +1,35 @@ +global enum FeedItemTypeEnum { +ACTIVITYEVENT, +ADVANCEDTEXTPOST, +ANNOUNCEMENTPOST, +APPROVALPOST, +ATTACHARTICLEEVENT, +ATTACHEXTERNALDOCUMENTEVENT, +BASICTEMPLATEFEEDITEM, +CALLLOGPOST, +CANVASPOST, +CASECOMMENTPOST, +CHANGESTATUSPOST, +CHATTRANSCRIPTPOST, +COLLABORATIONGROUPCREATED, +COLLABORATIONGROUPUNARCHIVED, +CONTENTPOST, +CREATERECORDEVENT, +DASHBOARDCOMPONENTALERT, +DASHBOARDCOMPONENTSNAPSHOT, +EMAILMESSAGEEVENT, +FACEBOOKPOST, +LINKPOST, +MILESTONEEVENT, +POLLPOST, +PROFILESKILLPOST, +QUESTIONPOST, +REPLYPOST, +RYPPLEPOST, +SOCIALPOST, +TESTITEM, +TEXTPOST, +TRACKEDCHANGE, +UNDEFINED, +USERSTATUS +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/FeedLayout.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/FeedLayout.cls new file mode 100644 index 0000000..338fcbc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/FeedLayout.cls @@ -0,0 +1,15 @@ +global class FeedLayout { + global Boolean autocollapsePublisher; + global Boolean compactFeed; + global Metadata.FeedLayoutFilterPosition feedFilterPosition; + global List feedFilters; + global Boolean fullWidthFeed; + global Boolean hideSidebar; + global Boolean highlightExternalFeedItems; + global List leftComponents; + global List rightComponents; + global Boolean useInlineFiltersInConsole; + global FeedLayout() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/FeedLayoutComponent.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/FeedLayoutComponent.cls new file mode 100644 index 0000000..850729f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/FeedLayoutComponent.cls @@ -0,0 +1,8 @@ +global class FeedLayoutComponent { + global Metadata.FeedLayoutComponentType componentType; + global Integer height; + global String page_x; + global FeedLayoutComponent() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/FeedLayoutComponentType.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/FeedLayoutComponentType.cls new file mode 100644 index 0000000..835f175 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/FeedLayoutComponentType.cls @@ -0,0 +1,13 @@ +global enum FeedLayoutComponentType { +CASEEXPERTS, +CASEUNIFIEDFILES, +CUSTOMBUTTONS, +CUSTOMLINKS, +FOLLOWERS, +FOLLOWING, +HELPANDTOOLLINKS, +MILESTONES, +SIMILARCASES, +TOPICS, +VISUALFORCE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/FeedLayoutFilter.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/FeedLayoutFilter.cls new file mode 100644 index 0000000..0307f49 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/FeedLayoutFilter.cls @@ -0,0 +1,8 @@ +global class FeedLayoutFilter { + global String feedFilterName; + global Metadata.FeedLayoutFilterType feedFilterType; + global Metadata.FeedItemTypeEnum feedItemType; + global FeedLayoutFilter() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/FeedLayoutFilterPosition.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/FeedLayoutFilterPosition.cls new file mode 100644 index 0000000..f936346 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/FeedLayoutFilterPosition.cls @@ -0,0 +1,5 @@ +global enum FeedLayoutFilterPosition { +CENTERDROPDOWN, +LEFTFIXED, +LEFTFLOAT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/FeedLayoutFilterType.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/FeedLayoutFilterType.cls new file mode 100644 index 0000000..fbb8200 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/FeedLayoutFilterType.cls @@ -0,0 +1,5 @@ +global enum FeedLayoutFilterType { +ALLUPDATES, +CUSTOM, +FEEDITEMTYPE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/Layout.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/Layout.cls new file mode 100644 index 0000000..282a8ff --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/Layout.cls @@ -0,0 +1,28 @@ +global class Layout { + global List customButtons; + global Metadata.CustomConsoleComponents customConsoleComponents; + global Boolean emailDefault; + global List excludeButtons; + global Metadata.FeedLayout feedLayout; + global List headers; + global List layoutSections; + global Metadata.MiniLayout miniLayout; + global List multilineLayoutFields; + global Metadata.PlatformActionList platformActionList; + global Metadata.QuickActionList quickActionList; + global Metadata.RelatedContent relatedContent; + global List relatedLists; + global List relatedObjects; + global Boolean runAssignmentRulesDefault; + global Boolean showEmailCheckbox; + global Boolean showHighlightsPanel; + global Boolean showInteractionLogPanel; + global Boolean showKnowledgeComponent; + global Boolean showRunAssignmentRulesCheckbox; + global Boolean showSolutionSection; + global Boolean showSubmitAndAttachButton; + global Metadata.SummaryLayout summaryLayout; + global Layout() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/LayoutColumn.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/LayoutColumn.cls new file mode 100644 index 0000000..7eb6310 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/LayoutColumn.cls @@ -0,0 +1,7 @@ +global class LayoutColumn { + global List layoutItems; + global String reserved; + global LayoutColumn() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/LayoutHeader.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/LayoutHeader.cls new file mode 100644 index 0000000..51359a8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/LayoutHeader.cls @@ -0,0 +1,4 @@ +global enum LayoutHeader { +PERSONALTAGGING, +PUBLICTAGGING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/LayoutItem.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/LayoutItem.cls new file mode 100644 index 0000000..ca1ef04 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/LayoutItem.cls @@ -0,0 +1,19 @@ +global class LayoutItem { + global Metadata.AnalyticsCloudComponentLayoutItem analyticsCloudComponent; + global Metadata.UiBehavior behavior; + global String canvas; + global String component; + global String customLink; + global Boolean emptySpace; + global String field; + global Integer height; + global String page_x; + global Metadata.ReportChartComponentLayoutItem reportChartComponent; + global String scontrol; + global Boolean showLabel; + global Boolean showScrollbars; + global String width; + global LayoutItem() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/LayoutSection.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/LayoutSection.cls new file mode 100644 index 0000000..2d6a602 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/LayoutSection.cls @@ -0,0 +1,11 @@ +global class LayoutSection { + global Boolean customLabel; + global Boolean detailHeading; + global Boolean editHeading; + global String label; + global List layoutColumns; + global Metadata.LayoutSectionStyle style; + global LayoutSection() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/LayoutSectionStyle.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/LayoutSectionStyle.cls new file mode 100644 index 0000000..c3212d6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/LayoutSectionStyle.cls @@ -0,0 +1,6 @@ +global enum LayoutSectionStyle { +CUSTOMLINKS, +ONECOLUMN, +TWOCOLUMNSLEFTTORIGHT, +TWOCOLUMNSTOPTOBOTTOM +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/Metadata.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/Metadata.cls new file mode 100644 index 0000000..faeb09c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/Metadata.cls @@ -0,0 +1,5 @@ +global class Metadata { + global String fullName; + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/MetadataType.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/MetadataType.cls new file mode 100644 index 0000000..05266fb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/MetadataType.cls @@ -0,0 +1,5 @@ +global enum MetadataType { +CUSTOMMETADATA, +LAYOUT, +OMNIINTERACTIONACCESSCONFIG +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/MetadataValue.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/MetadataValue.cls new file mode 100644 index 0000000..8b8fc9e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/MetadataValue.cls @@ -0,0 +1,4 @@ +global class MetadataValue { + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/MiniLayout.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/MiniLayout.cls new file mode 100644 index 0000000..d468d01 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/MiniLayout.cls @@ -0,0 +1,7 @@ +global class MiniLayout { + global List fields; + global List relatedLists; + global MiniLayout() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/OmniInteractionAccessConfig.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/OmniInteractionAccessConfig.cls new file mode 100644 index 0000000..bce826d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/OmniInteractionAccessConfig.cls @@ -0,0 +1,18 @@ +global class OmniInteractionAccessConfig { + global String configName; + global Boolean isAsyncCardCachingEnabled; + global Boolean isCardApexRemoteDisabled; + global Boolean isCardCacheDisabled; + global Boolean isCardDataTfrmDisabled; + global Boolean isCardIntegrationProcDisabled; + global Boolean isCardRestApiDisabled; + global Boolean isCardSoqlDisabled; + global Boolean isCardSoslDisabled; + global Boolean isCardStreamingApiDisabled; + global Boolean isDataTfrmEncrpFieldsDisabled; + global String masterLabel; + global String setupOwner; + global OmniInteractionAccessConfig() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/Operations.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/Operations.cls new file mode 100644 index 0000000..ac31b26 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/Operations.cls @@ -0,0 +1,7 @@ +global class Operations { + global Operations() { } + global Object clone() { } + global static Id enqueueDeployment(Metadata.DeployContainer container, Metadata.DeployCallback callback) { } + global static List retrieve(Metadata.MetadataType type, List fullNames) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/PlatformActionList.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/PlatformActionList.cls new file mode 100644 index 0000000..0bc59e5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/PlatformActionList.cls @@ -0,0 +1,8 @@ +global class PlatformActionList { + global Metadata.PlatformActionListContextEnum actionListContext; + global List platformActionListItems; + global String relatedSourceEntity; + global PlatformActionList() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/PlatformActionListContextEnum.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/PlatformActionListContextEnum.cls new file mode 100644 index 0000000..7a397ef --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/PlatformActionListContextEnum.cls @@ -0,0 +1,22 @@ +global enum PlatformActionListContextEnum { +ACTIONDEFINITION, +ASSISTANT, +BANNERPHOTO, +CHATTER, +DOCKABLE, +FEEDELEMENT, +FLEXIPAGE, +GLOBAL_X, +LISTVIEW, +LISTVIEWDEFINITION, +LISTVIEWRECORD, +LOOKUP, +MRULIST, +MRUROW, +OBJECTHOMECHART, +PHOTO, +RECORD, +RECORDEDIT, +RELATEDLIST, +RELATEDLISTRECORD +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/PlatformActionListItem.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/PlatformActionListItem.cls new file mode 100644 index 0000000..6d35952 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/PlatformActionListItem.cls @@ -0,0 +1,9 @@ +global class PlatformActionListItem { + global String actionName; + global Metadata.PlatformActionTypeEnum actionType; + global Integer sortOrder; + global String subtype; + global PlatformActionListItem() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/PlatformActionTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/PlatformActionTypeEnum.cls new file mode 100644 index 0000000..95e3172 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/PlatformActionTypeEnum.cls @@ -0,0 +1,8 @@ +global enum PlatformActionTypeEnum { +ACTIONLINK, +CUSTOMBUTTON, +INVOCABLEACTION, +PRODUCTIVITYACTION, +QUICKACTION, +STANDARDBUTTON +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/PrimaryTabComponents.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/PrimaryTabComponents.cls new file mode 100644 index 0000000..58df954 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/PrimaryTabComponents.cls @@ -0,0 +1,7 @@ +global class PrimaryTabComponents { + global List component; + global List containers; + global PrimaryTabComponents() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/QuickActionList.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/QuickActionList.cls new file mode 100644 index 0000000..050025c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/QuickActionList.cls @@ -0,0 +1,6 @@ +global class QuickActionList { + global List quickActionListItems; + global QuickActionList() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/QuickActionListItem.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/QuickActionListItem.cls new file mode 100644 index 0000000..d0f8594 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/QuickActionListItem.cls @@ -0,0 +1,6 @@ +global class QuickActionListItem { + global String quickActionName; + global QuickActionListItem() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/RelatedContent.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/RelatedContent.cls new file mode 100644 index 0000000..a4bef7c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/RelatedContent.cls @@ -0,0 +1,6 @@ +global class RelatedContent { + global List relatedContentItems; + global RelatedContent() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/RelatedContentItem.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/RelatedContentItem.cls new file mode 100644 index 0000000..fdc8d83 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/RelatedContentItem.cls @@ -0,0 +1,6 @@ +global class RelatedContentItem { + global Metadata.LayoutItem layoutItem; + global RelatedContentItem() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/RelatedList.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/RelatedList.cls new file mode 100644 index 0000000..8947784 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/RelatedList.cls @@ -0,0 +1,7 @@ +global class RelatedList { + global Boolean hideOnDetail; + global String name; + global RelatedList() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/RelatedListItem.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/RelatedListItem.cls new file mode 100644 index 0000000..b72e861 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/RelatedListItem.cls @@ -0,0 +1,11 @@ +global class RelatedListItem { + global List customButtons; + global List excludeButtons; + global List fields; + global String relatedList; + global String sortField; + global Metadata.SortOrder sortOrder; + global RelatedListItem() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/ReportChartComponentLayoutItem.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/ReportChartComponentLayoutItem.cls new file mode 100644 index 0000000..b90909a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/ReportChartComponentLayoutItem.cls @@ -0,0 +1,13 @@ +global class ReportChartComponentLayoutItem { + global Boolean cacheData; + global String contextFilterableField; + global String error; + global Boolean hideOnError; + global Boolean includeContext; + global String reportName; + global Boolean showTitle; + global Metadata.ReportChartComponentSize size; + global ReportChartComponentLayoutItem() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/ReportChartComponentSize.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/ReportChartComponentSize.cls new file mode 100644 index 0000000..c69432a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/ReportChartComponentSize.cls @@ -0,0 +1,5 @@ +global enum ReportChartComponentSize { +LARGE, +MEDIUM, +SMALL +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/SidebarComponent.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/SidebarComponent.cls new file mode 100644 index 0000000..79cec16 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/SidebarComponent.cls @@ -0,0 +1,17 @@ +global class SidebarComponent { + global String componentType; + global String createAction; + global Boolean enableLinking; + global Integer height; + global Boolean knowledgeOneEnable; + global String label; + global String lookup; + global String page_x; + global List relatedLists; + global String unit; + global String updateAction; + global Integer width; + global SidebarComponent() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/SortOrder.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/SortOrder.cls new file mode 100644 index 0000000..a7f4249 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/SortOrder.cls @@ -0,0 +1,4 @@ +global enum SortOrder { +ASC_X, +DESC_X +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/StatusCode.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/StatusCode.cls new file mode 100644 index 0000000..bfcc02d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/StatusCode.cls @@ -0,0 +1,515 @@ +global enum StatusCode { +ALERT_NOTIFICATION_LIMIT_EXCEEDED, +ALL_OR_NONE_OPERATION_ROLLED_BACK, +ALREADY_APPLIED, +ALREADY_IN_PROCESS, +ALREADY_REDEEMED_VOUCHER, +APEX_DATA_ACCESS_RESTRICTION, +APEX_FAILED, +APPLICATION_ALREADY_EXISTS, +ASSIGNEE_TYPE_REQUIRED, +ATTRIBUTE_DEFINITION_LIMIT_EXCEEDED, +AURA_COMPILE_ERROR, +AUTH_PROVIDER_NEEDS_AUTH, +AUTH_PROVIDER_NOT_FOUND, +B2B_SEARCH_ADMIN_ERROR, +BAD_CUSTOM_ENTITY_PARENT_DOMAIN, +BCC_NOT_ALLOWED_IF_BCC_COMPLIANCE_ENABLED, +BLOCKED_EXCLUSIVE, +CANNOT_CASCADE_PRODUCT_ACTIVE, +CANNOT_CHANGE_FIELD_TYPE_OF_APEX_REFERENCED_FIELD, +CANNOT_CHANGE_FIELD_TYPE_OF_REFERENCED_FIELD, +CANNOT_CREATE_ANOTHER_MANAGED_PACKAGE, +CANNOT_DEACTIVATE_DIVISION, +CANNOT_DELETE_GLOBAL_ACTION_LIST, +CANNOT_DELETE_LAST_DATED_CONVERSION_RATE, +CANNOT_DELETE_MANAGED_OBJECT, +CANNOT_DISABLE_LAST_ADMIN, +CANNOT_ENABLE_IP_RESTRICT_REQUESTS, +CANNOT_EXECUTE_FLOW_TRIGGER, +CANNOT_FREEZE_SELF, +CANNOT_INSERT_UPDATE_ACTIVATE_ENTITY, +CANNOT_MODIFY_MANAGED_OBJECT, +CANNOT_PASSWORD_LOCKOUT, +CANNOT_POST_TO_ARCHIVED_GROUP, +CANNOT_RENAME_APEX_REFERENCED_FIELD, +CANNOT_RENAME_APEX_REFERENCED_OBJECT, +CANNOT_RENAME_REFERENCED_FIELD, +CANNOT_RENAME_REFERENCED_OBJECT, +CANNOT_REPARENT_RECORD, +CANNOT_UPDATE_CONVERTED_LEAD, +CANNOT_UPDATE_IS_THIRD_PARTY, +CANNOT_UPDATE_PAYMENT_METHOD_SET, +CANT_DISABLE_CORP_CURRENCY, +CANT_UNSET_CORP_CURRENCY, +CART_ITEM_NOT_FOUND, +CART_NOT_FOUND, +CHECKOUT_CONFLICT, +CHECKOUT_EXPIRED, +CHECKOUT_INVALIDATED, +CHECKOUT_LOCKED, +CHECKOUT_NOT_FOUND, +CHECKOUT_UNAUTHORIZED, +CHILD_SHARE_FAILS_PARENT, +CIRCULAR_DEPENDENCY, +CLEAN_SERVICE_ERROR, +CLONE_FIELD_INTEGRITY_EXCEPTION, +CLONE_NOT_SUPPORTED, +CMS_FOLDER_ITEM_MOVE_FAILED, +COLLISION_DETECTED, +COMMERCE_SEARCH_INDEXING_SYSTEM_ERROR, +COMMERCE_SEARCH_MQ_ERROR, +COMMERCE_SEARCH_PROVIDER_LIMIT_EXCEEDED, +COMMERCE_SEARCH_RESOURCE_NOT_FOUND, +COMMERCIAL_CONTROL_ERROR, +COMMUNITY_NOT_ACCESSIBLE, +CONFLICT, +CONFLICTING_ENVIRONMENT_HUB_MEMBER, +CONFLICTING_SSO_USER_MAPPING, +CONTENT_NOT_FOUND, +CONTENT_SEARCH_NOT_ENABLED, +CONTENT_TYPE_DISABLED_FOR_API, +CONTENT_TYPE_NOT_FOUND, +COUPON_REDEMPTION_LIMIT_EXCEEDED, +CUSTOM_APEX_ERROR, +CUSTOM_CLOB_FIELD_LIMIT_EXCEEDED, +CUSTOM_ENTITY_OR_FIELD_LIMIT, +CUSTOM_FIELD_INDEX_LIMIT_EXCEEDED, +CUSTOM_INDEX_EXISTS, +CUSTOM_LINK_LIMIT_EXCEEDED, +CUSTOM_METADATA_LIMIT_EXCEEDED, +CUSTOM_METADATA_REL_FIELD_MANAGEABILITY, +CUSTOM_SETTINGS_LIMIT_EXCEEDED, +CUSTOM_TAB_LIMIT_EXCEEDED, +DATAASSESSMENT_CONFIG_ASSESSMENT_IN_PROGRESS_ERROR, +DATAASSESSMENT_CONFIG_SERVICE_ERROR, +DATACLOUDADDRESS_NO_RECORDS_FOUND, +DATACLOUDADDRESS_PROCESSING_ERROR, +DATACLOUDADDRESS_SERVER_ERROR, +DATA_MAPPING_NOT_FOUND, +DATA_MAPPING_SCHEMA_NOT_FOUND, +DATA_TRANSFER_RECORD_LIMIT_EXCEEDED, +DATA_TYPE_NOT_SUPPORTED, +DATE_OUT_OF_RANGE, +DELETE_FAILED, +DELETE_NOT_ALLOWED, +DELETE_OPERATION_TOO_LARGE, +DELETE_REQUIRED_ON_CASCADE, +DEPENDENCY_EXISTS, +DUPLICATES_DETECTED, +DUPLICATE_CASE_SOLUTION, +DUPLICATE_COMM_NICKNAME, +DUPLICATE_CUSTOM_ENTITY_DEFINITION, +DUPLICATE_CUSTOM_TAB_MOTIF, +DUPLICATE_DEVELOPER_NAME, +DUPLICATE_EXTERNAL_ID, +DUPLICATE_MASTER_LABEL, +DUPLICATE_SENDER_DISPLAY_NAME, +DUPLICATE_USERNAME, +DUPLICATE_VALUE, +EMAIL_ADDRESS_BOUNCED, +EMAIL_EXTERNAL_TRANSPORT_CONNECTION_ERROR, +EMAIL_EXTERNAL_TRANSPORT_PERMISSION_ERROR, +EMAIL_EXTERNAL_TRANSPORT_TOKEN_ERROR, +EMAIL_EXTERNAL_TRANSPORT_TOO_LARGE_ERROR, +EMAIL_EXTERNAL_TRANSPORT_TOO_MANY_REQUESTS_ERROR, +EMAIL_EXTERNAL_TRANSPORT_UNKNOWN_ERROR, +EMAIL_NOT_PROCESSED_DUE_TO_PRIOR_ERROR, +EMAIL_OPTED_OUT, +EMAIL_TEMPLATE_FORMULA_ERROR, +EMAIL_TEMPLATE_MERGEFIELD_ACCESS_ERROR, +EMAIL_TEMPLATE_MERGEFIELD_ERROR, +EMAIL_TEMPLATE_MERGEFIELD_VALUE_ERROR, +EMAIL_TEMPLATE_PROCESSING_ERROR, +EMPTY_CATALOG, +EMPTY_INGESTION_JOB, +EMPTY_SCONTROL_FILE_NAME, +ENHANCED_EMAIL_TEMPLATE_COMPILATION_ERROR, +ENTITY_FAILED_IFLASTMODIFIED_ON_UPDATE, +ENTITY_IS_ARCHIVED, +ENTITY_IS_DELETED, +ENTITY_IS_LOCKED, +ENTITY_SAVE_ERROR, +ENTITY_SAVE_VALIDATION_ERROR, +ENVIRONMENT_HUB_MEMBERSHIP_CONFLICT, +ENVIRONMENT_HUB_MEMBERSHIP_ERROR_JOINING_HUB, +ENVIRONMENT_HUB_MEMBERSHIP_USER_ALREADY_IN_HUB, +ENVIRONMENT_HUB_MEMBERSHIP_USER_NOT_ORG_ADMIN, +ERROR_CALCULATING_EXPIRY_DATE, +ERROR_IN_MAILER, +EXCEEDED_MAX_SEMIJOIN_SUBSELECTS_WRITE, +EXCHANGE_WEB_SERVICES_URL_INVALID, +EXTERNAL_RESOURCE_FORBIDDEN, +FAILED_ACTIVATION, +FAILED_DUE_TO_OTHER_INPUTS, +FAILED_TO_RESOLVE_MAPPING, +FAILED_TO_RESOLVE_SCHEMA_INFORMATION, +FIELD_CUSTOM_VALIDATION_EXCEPTION, +FIELD_FILTER_VALIDATION_EXCEPTION, +FIELD_INTEGRITY_EXCEPTION, +FIELD_KEYWORD_LIST_MATCH_LIMIT, +FIELD_MAPPING_ERROR, +FIELD_MODERATION_RULE_BLOCK, +FIELD_NOT_UPDATABLE, +FILE_EXTENSION_NOT_ALLOWED, +FILE_SIZE_LIMIT_EXCEEDED, +FILTERED_LOOKUP_LIMIT_EXCEEDED, +FIND_DUPLICATES_ERROR, +FLOW_EXCEPTION, +FUNCTIONALITY_NOT_ENABLED, +GET_EINSTEIN_TENANT_ERROR, +GUEST_INSUFFICIENT_ACCESS, +HAS_PUBLIC_REFERENCES, +HTML_FILE_UPLOAD_NOT_ALLOWED, +IAS_AM_AUTH_BAD_REQUEST, +IAS_AM_AUTH_UNAUTHORIZED, +IAS_INVALID_AUTH, +IAS_INVALID_REQUEST_PARAMETER, +IAS_RECORD_DOES_NOT_EXIST, +IAS_TENANT_NOT_PROVISIONED, +IAS_UNCOMMITTED_WORK, +IMAGE_TOO_LARGE, +INACTIVE_OWNER_OR_USER, +INACTIVE_RULE_ERROR, +INDEX_ITEM_LIMIT_EXCEEDED, +INDEX_PAYLOAD_NOT_FOUND, +INGESTION_JOB_RECORDS_LIMIT_EXCEEDED, +INGESTION_TOTAL_FILE_SIZE_LIMIT_EXCEEDED, +INPUTPARAM_INCOMPATIBLE_DATATYPE, +INSERT_UPDATE_DELETE_NOT_ALLOWED_DURING_MAINTENANCE, +INSUFFICIENT_ACCESS, +INSUFFICIENT_ACCESS_ON_CROSS_REFERENCE_ENTITY, +INSUFFICIENT_ACCESS_OR_READONLY, +INSUFFICIENT_ACCESS_TO_INSIGHTSEXTERNALDATA, +INSUFFICIENT_BALANCE, +INSUFFICIENT_BENEFIT_REMAINING, +INSUFFICIENT_CREDITS, +INTEGRATION_CANCELLED, +INTERNAL_ERROR, +INVALID_ACCESS_LEVEL, +INVALID_ACCESS_TOKEN, +INVALID_ACCOUNT, +INVALID_ACTION_VERSION, +INVALID_API_INPUT, +INVALID_ARGUMENT_TYPE, +INVALID_ASSIGNEE_TYPE, +INVALID_ASSIGNMENT_RULE, +INVALID_AUTH_HEADER, +INVALID_BATCH_OPERATION, +INVALID_BUSINESS_HOURS_NAME, +INVALID_CHECKOUT_INPUT, +INVALID_CONTACT, +INVALID_CONTENT_TYPE, +INVALID_CREDIT_CARD_INFO, +INVALID_CROSS_REFERENCE_KEY, +INVALID_CROSS_REFERENCE_TYPE_FOR_FIELD, +INVALID_CURRENCY_CONV_RATE, +INVALID_CURRENCY_CORP_RATE, +INVALID_CURRENCY_ISO, +INVALID_DATASET_REFERENCE_INPUT, +INVALID_DATA_CATEGORY_GROUP_REFERENCE, +INVALID_DATA_URI, +INVALID_EBV_OPERATION, +INVALID_EMAIL_ADDRESS, +INVALID_EMPTY_KEY_OWNER, +INVALID_ENTITY_FOR_MATCH_ENGINE_ERROR, +INVALID_ENTITY_FOR_MATCH_OPERATION_ERROR, +INVALID_ENTITY_FOR_UPSERT, +INVALID_ENVIRONMENT_HUB_MEMBER, +INVALID_EVENT_DELIVERY, +INVALID_EVENT_INPUT, +INVALID_EVENT_SUBSCRIPTION, +INVALID_EXTENSION_ID, +INVALID_EXTERNAL_ID_FIELD_NAME, +INVALID_FIELD, +INVALID_FIELD_FOR_INSERT_UPDATE, +INVALID_FIELD_WHEN_USING_TEMPLATE, +INVALID_FILTER_ACTION, +INVALID_GOOGLE_DOCS_URL, +INVALID_ID_FIELD, +INVALID_INET_ADDRESS, +INVALID_INPUT, +INVALID_INPUT_FORMAT, +INVALID_KEY_FIELD_INPUT, +INVALID_LINEITEM_CLONE_STATE, +INVALID_MARKUP, +INVALID_MASTER_OR_TRANSLATED_SOLUTION, +INVALID_MERCHANT_ACCOUNT_MODE, +INVALID_MERCHANT_ACCOUNT_MODE_OR_STATUS, +INVALID_MERGE_RECORD, +INVALID_MESSAGE_ID_REFERENCE, +INVALID_NAMESPACE_PREFIX, +INVALID_OAUTH_URL, +INVALID_OPERATION, +INVALID_OPERATOR, +INVALID_OR_NULL_FOR_RESTRICTED_PICKLIST, +INVALID_OWNER, +INVALID_PACKAGE_LICENSE, +INVALID_PACKAGE_VERSION, +INVALID_PARTNER_NETWORK_STATUS, +INVALID_PAYLOAD_VERSION, +INVALID_PERSON_ACCOUNT_OPERATION, +INVALID_PROFILE, +INVALID_PROMOTION, +INVALID_PROVIDER_TYPE, +INVALID_QUERY_KEY, +INVALID_QUERY_LOCATOR, +INVALID_QUERY_VALUE, +INVALID_READ_ONLY_USER_DML, +INVALID_RECEIVEDDOCUMENTID_ATTACHMENT, +INVALID_RECORD_ATTRIBUTE_VALUE, +INVALID_RECORD_TYPE, +INVALID_REFRESH_TOKEN, +INVALID_REQUEST_STATE, +INVALID_RUNTIME_VALUE, +INVALID_SAVE_AS_ACTIVITY_FLAG, +INVALID_SCS_INBOUND_USER, +INVALID_SEARCH_PROVIDER_REQUEST, +INVALID_SESSION_ID, +INVALID_SETUP_OWNER, +INVALID_SIGNUP_COUNTRY, +INVALID_SIGNUP_OPTION, +INVALID_SITE_DELETE_EXCEPTION, +INVALID_SITE_FILE_IMPORTED_EXCEPTION, +INVALID_SITE_FILE_TYPE_EXCEPTION, +INVALID_SOURCE_OBJECT_ID, +INVALID_STATUS, +INVALID_SUBDOMAIN, +INVALID_TARGET_OBJECT_NAME, +INVALID_TEXT_REPRESENTATION, +INVALID_TYPE, +INVALID_TYPE_FOR_OPERATION, +INVALID_TYPE_ON_FIELD_IN_RECORD, +INVALID_UNMERGE_RECORD, +INVALID_USERID, +INVALID_USER_OBJECT, +IP_RANGE_LIMIT_EXCEEDED, +ITEM_NOT_FOUND, +JIGSAW_IMPORT_LIMIT_EXCEEDED, +LICENSE_LIMIT_EXCEEDED, +LIGHT_PORTAL_USER_EXCEPTION, +LIMIT_EXCEEDED, +LIST_PRICE_NOT_FOUND, +MALFORMED_ID, +MANAGER_NOT_DEFINED, +MASSMAIL_RETRY_LIMIT_EXCEEDED, +MASS_MAIL_LIMIT_EXCEEDED, +MATCH_DEFINITION_ERROR, +MATCH_OPERATION_ERROR, +MATCH_OPERATION_INVALID_ENGINE_ERROR, +MATCH_OPERATION_INVALID_RULE_ERROR, +MATCH_OPERATION_MISSING_ENGINE_ERROR, +MATCH_OPERATION_MISSING_OBJECT_TYPE_ERROR, +MATCH_OPERATION_MISSING_OPTIONS_ERROR, +MATCH_OPERATION_MISSING_RULE_ERROR, +MATCH_OPERATION_UNKNOWN_RULE_ERROR, +MATCH_OPERATION_UNSUPPORTED_VERSION_ERROR, +MATCH_PRECONDITION_FAILED, +MATCH_PRECONDITION_REQUIRED, +MATCH_RUNTIME_ERROR, +MATCH_SERVICE_ERROR, +MATCH_SERVICE_TIMED_OUT, +MATCH_SERVICE_UNAVAILABLE_ERROR, +MAXIMUM_CCEMAILS_EXCEEDED, +MAXIMUM_DASHBOARD_COMPONENTS_EXCEEDED, +MAXIMUM_HIERARCHY_CHILDREN_REACHED, +MAXIMUM_HIERARCHY_LEVELS_REACHED, +MAXIMUM_HIERARCHY_TREE_SIZE_REACHED, +MAXIMUM_SIZE_OF_ATTACHMENT, +MAXIMUM_SIZE_OF_DOCUMENT, +MAX_ACTIONS_PER_RULE_EXCEEDED, +MAX_ACTIVE_RULES_EXCEEDED, +MAX_APPROVAL_STEPS_EXCEEDED, +MAX_DEPTH_IN_FLOW_EXECUTION, +MAX_FORMULAS_PER_RULE_EXCEEDED, +MAX_LIMIT_EXCEEDED, +MAX_RULES_EXCEEDED, +MAX_RULE_ENTRIES_EXCEEDED, +MAX_TASK_DESCRIPTION_EXCEEEDED, +MAX_TM_RULES_EXCEEDED, +MAX_TM_RULE_ITEMS_EXCEEDED, +MAX_TRIGGERS_EXCEEDED, +MERGE_FAILED, +METADATA_FIELD_UPDATE_ERROR, +METHOD_NOT_ALLOWED, +MISMATCHING_TYPES, +MISSING_ARGUMENT, +MISSING_OMNI_PROCESS_ID, +MISSING_RECEIVEDDOCUMENTID_ATTACHMENT, +MISSING_RECORD, +MIXED_DML_OPERATION, +MULTIPLE_CONTENT_FOUND, +MULTIPLE_VOUCHERS, +NONUNIQUE_SHIPPING_ADDRESS, +NOT_FOUND, +NOT_RECOVERABLE_SEARCH_PROVIDER_ERROR, +NO_ACCESS_TOKEN, +NO_ACCESS_TOKEN_FROM_REFRESH, +NO_APPLICABLE_PROCESS, +NO_ATTACHMENT_PERMISSION, +NO_AUTH_PROVIDER, +NO_BUSINESS_HOURS_FOUND, +NO_INACTIVE_DIVISION_MEMBERS, +NO_MASS_MAIL_PERMISSION, +NO_PARTNER_PERMISSION, +NO_REFRESH_TOKEN, +NO_SEARCH_ATTRIBUTES, +NO_SINGLE_MAIL_PERMISSION, +NO_SORT_PRICEBOOK_ASSOCIATED_ERROR, +NO_SUCH_USER_EXISTS, +NO_TOKEN_ENDPOINT, +NUMBER_OUTSIDE_VALID_RANGE, +NUM_HISTORY_FIELDS_BY_SOBJECT_EXCEEDED, +OCR_INVALID_REQUEST, +OPERATION_ENQUEUED, +OPTED_OUT_OF_MASS_MAIL, +OP_WITH_INVALID_USER_TYPE_EXCEPTION, +ORCHESTRATION_INVALID, +ORDER_MANAGEMENT_ACTION_NOT_ALLOWED, +ORDER_MANAGEMENT_INVALID_RECORD, +ORDER_MANAGEMENT_RECORD_EXISTS, +ORDER_MANAGEMENT_RECORD_NOT_FOUND, +PACKAGE_DISABLED, +PACKAGE_LICENSE_REQUIRED, +PACKAGING_API_INSTALL_FAILED, +PACKAGING_API_UNINSTALL_FAILED, +PALI_INVALID_ACTION_ID, +PALI_INVALID_ACTION_NAME, +PALI_INVALID_ACTION_TYPE, +PAL_INVALID_ASSISTANT_RECOMMENDATION_TYPE_ID, +PAL_INVALID_ENTITY_ID, +PAL_INVALID_FLEXIPAGE_ID, +PAL_INVALID_LAYOUT_ID, +PAL_INVALID_PARAMETERS, +PARAMETER_TOO_LARGE, +PARTICIPANT_RELATIONSHIP_EXISTS, +PAYLOAD_SIZE_EXCEEDED, +PA_API_EXCEPTION, +PA_AXIS_FAULT, +PA_INVALID_ID_EXCEPTION, +PA_NO_ACCESS_EXCEPTION, +PA_NO_DATA_FOUND_EXCEPTION, +PA_URI_SYNTAX_EXCEPTION, +PA_VISIBLE_ACTIONS_FILTER_ORDERING_EXCEPTION, +PENDING_COMMIT, +PICKLIST_INACTIVE_VALUES_EXCEEDED, +PLATFORM_EVENT_ENCRYPTION_ERROR, +PLATFORM_EVENT_PUBLISHING_UNAVAILABLE, +PLATFORM_EVENT_PUBLISH_FAILED, +PORTAL_NO_ACCESS, +PORTAL_USER_ALREADY_EXISTS_FOR_CONTACT, +PORTAL_USER_CREATION_RESTRICTED_WITH_ENCRYPTION, +PRICE_NOT_FOUND, +PRIVATE_CONTACT_ON_ASSET, +PROCESSING_HALTED, +PROGRAM_PROGRESS_NOT_ACTIVE, +QA_INVALID_CREATE_FEED_ITEM, +QA_INVALID_SUCCESS_MESSAGE, +QUERY_REFINEMENT_VALUE_LIMIT_EXCEEDED, +QUERY_TIMEOUT, +QUICK_ACTION_LIST_ITEM_NOT_ALLOWED, +QUICK_ACTION_LIST_NOT_ALLOWED, +RECORD_CREATION_FAILED, +RECORD_IN_USE_BY_WORKFLOW, +RECORD_UPDATE_FAILED, +RECOVERABLE_SEARCH_PROVIDER_ERROR, +RELATED_ENTITY_FILTER_VALIDATION_EXCEPTION, +REL_FIELD_BAD_ACCESSIBILITY, +REPUTATION_MINIMUM_NUMBER_NOT_REACHED, +REQUEST_RUNNING_TOO_LONG, +REQUIRED_FEATURE_MISSING, +REQUIRED_FIELD_MISSING, +REQUIRE_CONNECTED_APP_SCS, +REQUIRE_CONNECTED_APP_SESSION_SCS, +REQUIRE_RUNAS_USER, +RETRIEVE_EXCHANGE_ATTACHMENT_FAILED, +RETRIEVE_EXCHANGE_EMAIL_FAILED, +RETRIEVE_EXCHANGE_EVENT_FAILED, +RETRIEVE_GOOGLE_EMAIL_FAILED, +RETRIEVE_GOOGLE_EVENT_FAILED, +RETRIEVE_USER_CONFIG_ERROR, +ROUTES_EVALUATION_LIMIT_EXCEEDED, +SALESFORCE_INBOX_TRANSPORT_CONNECTION_ERROR, +SALESFORCE_INBOX_TRANSPORT_INVALID_INPUT_ERROR, +SALESFORCE_INBOX_TRANSPORT_TOKEN_ERROR, +SALESFORCE_INBOX_TRANSPORT_UNKNOWN_ERROR, +SCHEMA_OBJECT_NOT_FOUND, +SCREEN_POP_REQUIRED_INPUT_MISSING, +SEARCH_PROVIDER_REQUEST_RATE_EXCEEDED, +SEGMENT_COUNT_LIMIT_EXCEEDED, +SELF_REFERENCE_FROM_FLOW, +SELF_REFERENCE_FROM_TRIGGER, +SERVICE_UNAVAILABLE, +SESSION_EXPIRED, +SESSION_INVALIDATED, +SHARE_NEEDED_FOR_CHILD_OWNER, +SINGLE_EMAIL_LIMIT_EXCEEDED, +SLACK_API_ERROR, +SOCIAL_ACCOUNT_NOT_FOUND, +SOCIAL_ACTION_INVALID, +SOCIAL_PERSONA_NOT_FOUND, +SOCIAL_POST_INVALID, +SOCIAL_POST_NOT_FOUND, +SPECIFICATION_GENERATION_EXCEPTION, +STANDARD_PRICE_NOT_DEFINED, +STORAGE_LIMIT_EXCEEDED, +STRING_TOO_LONG, +SUBDOMAIN_IN_USE, +TABSET_LIMIT_EXCEEDED, +TEMPLATE_NOT_ACTIVE, +TEMPLATE_NOT_FOUND, +TERMS_OF_SERVICE_UNREAD, +TERRITORY_REALIGN_IN_PROGRESS, +TEXT_DATA_OUTSIDE_SUPPORTED_CHARSET, +TEXT_TO_PICKLIST_VALUES_EXCEEDED, +TOO_MANY_APEX_REQUESTS, +TOO_MANY_ENUM_VALUE, +TOO_MANY_JOBS, +TOO_MANY_POSSIBLE_USERS_EXIST, +TRANSFER_REQUIRES_READ, +TXN_SECURITY_NO_ACCESS, +UISF_ENTITY_QUERY_FAILED, +UISF_NO_MAPPINGS_FOUND, +UISF_TOKEN_NOT_FOUND, +UISF_UNKNOWN_EXCEPTION, +UISF_USER_MAPPING_FAILED, +UNABLE_TO_LOCK_ROW, +UNAUTHORIZED_SEARCH_PROVIDER_REQUEST, +UNAVAILABLE_RECORDTYPE_EXCEPTION, +UNAVAILABLE_REF, +UNDEFINED_MAPPING_DEFINITION, +UNDELETE_FAILED, +UNKNOWN_EXCEPTION, +UNKNOWN_TOKEN_ERROR, +UNPROCESSABLE_REQUEST, +UNQUALIFIED_CART, +UNSAFE_HTML_CONTENT, +UNSPECIFIED_EMAIL_ADDRESS, +UNSUPPORTED_APEX_TRIGGER_OPERATON, +UNSUPPORTED_MODE, +UNSUPPORTED_PAYMENT_GATEWAY_TYPE, +UNSUPPORTED_PAYMENT_REQUEST_TYPE, +UNSUPPORTED_SITE, +UNSUPPORTED_SITE_FILE_IMPORTED_EXCEPTION, +UNSUPPORTED_SOCIAL_PROVIDER, +UNVERIFIED_SENDER_ADDRESS, +UPDATE_GOOGLE_EMAIL_LABEL_FAILED, +USER_OWNS_PORTAL_ACCOUNT_EXCEPTION, +USER_WITHOUT_WEM_PERMISSION, +USER_WITH_APEX_SHARES_EXCEPTION, +VARIANT_NOT_FOUND, +VF_COMPILE_ERROR, +WEBLINK_SIZE_LIMIT_EXCEEDED, +WEBLINK_URL_INVALID, +WEM_SEGMENTS_CAN_NOT_HAVE_NON_ACTIVE_SEGMENT_TYPE, +WEM_SHIFT_SEGMENT_TIME_IS_OUTSIDE_OF_THE_SHIFT_DURATION, +WEM_USER_NOT_ORG_ADMIN, +WORKSPACE_NOT_FOUND, +WRONG_CONTROLLER_TYPE, +XCLEAN_DJ_MATCH_IGNORABLE_ERROR, +XCLEAN_DJ_MATCH_INTERNAL_DJ_ERROR, +XCLEAN_DJ_MATCH_NON_RETRIABLE_ERROR, +XCLEAN_DJ_MATCH_RETRIABLE_ERROR, +XCLEAN_DJ_MATCH_UNKNOWN_ERROR, +XCLEAN_UNEXPECTED_ERROR +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/SubtabComponents.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/SubtabComponents.cls new file mode 100644 index 0000000..c1f0ab8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/SubtabComponents.cls @@ -0,0 +1,7 @@ +global class SubtabComponents { + global List component; + global List containers; + global SubtabComponents() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/SummaryLayout.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/SummaryLayout.cls new file mode 100644 index 0000000..bbbaf3f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/SummaryLayout.cls @@ -0,0 +1,11 @@ +global class SummaryLayout { + global String masterLabel; + global Integer sizeX; + global Integer sizeY; + global Integer sizeZ; + global List summaryLayoutItems; + global Metadata.SummaryLayoutStyleEnum summaryLayoutStyle; + global SummaryLayout() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/SummaryLayoutItem.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/SummaryLayoutItem.cls new file mode 100644 index 0000000..0ef5b4f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/SummaryLayoutItem.cls @@ -0,0 +1,10 @@ +global class SummaryLayoutItem { + global String customLink; + global String field; + global Integer posX; + global Integer posY; + global Integer posZ; + global SummaryLayoutItem() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/SummaryLayoutStyleEnum.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/SummaryLayoutStyleEnum.cls new file mode 100644 index 0000000..5f7deef --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/SummaryLayoutStyleEnum.cls @@ -0,0 +1,12 @@ +global enum SummaryLayoutStyleEnum { +CASEINTERACTION, +CHILDSERVICEREPORTTEMPLATESTYLE, +DEFAULTQUOTETEMPLATE, +DEFAULTSERVICEREPORTTEMPLATE, +DEFAULT_X, +PATHASSISTANT, +QUICKACTIONLAYOUTLEFTRIGHT, +QUICKACTIONLAYOUTTOPDOWN, +QUOTETEMPLATE, +SERVICEREPORTTEMPLATE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Metadata/UiBehavior.cls b/.sfdx/tools/246/StandardApexLibrary/Metadata/UiBehavior.cls new file mode 100644 index 0000000..0d3a562 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Metadata/UiBehavior.cls @@ -0,0 +1,5 @@ +global enum UiBehavior { +EDIT, +READONLY, +REQUIRED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Process/Plugin.cls b/.sfdx/tools/246/StandardApexLibrary/Process/Plugin.cls new file mode 100644 index 0000000..16a01ca --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Process/Plugin.cls @@ -0,0 +1,5 @@ +global interface Plugin { + Process.PluginDescribeResult describe(); + Process.PluginResult invoke(Process.PluginRequest param0); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Process/PluginDescribeResult.cls b/.sfdx/tools/246/StandardApexLibrary/Process/PluginDescribeResult.cls new file mode 100644 index 0000000..da721a1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Process/PluginDescribeResult.cls @@ -0,0 +1,41 @@ +global class PluginDescribeResult { + global String description; + global List inputParameters; + global String name; + global List outputParameters; + global String tag; + global PluginDescribeResult() { } + global Object clone() { } +global class InputParameter { + global String description; + global String name; + global Process.PluginDescribeResult.ParameterType parameterType; + global Boolean required; + global PluginDescribeResult.InputParameter(String name, String description, Process.PluginDescribeResult.ParameterType parameterType, Boolean required) { } + global PluginDescribeResult.InputParameter(String name, Process.PluginDescribeResult.ParameterType parameterType, Boolean required) { } + global Object clone() { } + +} +global class OutputParameter { + global String description; + global String name; + global Process.PluginDescribeResult.ParameterType parameterType; + global PluginDescribeResult.OutputParameter(String name, String description, Process.PluginDescribeResult.ParameterType parameterType) { } + global PluginDescribeResult.OutputParameter(String name, Process.PluginDescribeResult.ParameterType parameterType) { } + global Object clone() { } + +} +global enum ParameterType { +BOOLEAN, +DATE, +DATETIME, +DECIMAL, +DOUBLE, +FLOAT, +ID, +INTEGER, +LONG, +STRING +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Process/PluginRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Process/PluginRequest.cls new file mode 100644 index 0000000..864b201 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Process/PluginRequest.cls @@ -0,0 +1,6 @@ +global class PluginRequest { + global Map inputParameters; + global PluginRequest(Map inputParameters) { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Process/PluginResult.cls b/.sfdx/tools/246/StandardApexLibrary/Process/PluginResult.cls new file mode 100644 index 0000000..fc59f6a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Process/PluginResult.cls @@ -0,0 +1,7 @@ +global class PluginResult { + global Map outputParameters; + global PluginResult(String outputKey, Object outputValue) { } + global PluginResult(Map outputParameters) { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Process/SparkPlugApi.cls b/.sfdx/tools/246/StandardApexLibrary/Process/SparkPlugApi.cls new file mode 100644 index 0000000..a735d82 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Process/SparkPlugApi.cls @@ -0,0 +1,24 @@ +global class SparkPlugApi { + global SparkPlugApi() { } + global Object clone() { } + global static Process.SparkPlugApi.SparkPlugDescribeResult describePlugin(String className) { } + global static List describePlugins() { } + global static String invokePluginWithJson(String className, String parameters) { } +global class SparkPlugDescribeResult { + global List inputParameters; + global String name; + global List outputParameters; + global SparkPlugApi.SparkPlugDescribeResult() { } + global Object clone() { } + +} +global class SparkPlugParameter { + global String name; + global String parameterType; + global Boolean required; + global SparkPlugApi.SparkPlugParameter() { } + global Object clone() { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/QuickAction/Control.cls b/.sfdx/tools/246/StandardApexLibrary/QuickAction/Control.cls new file mode 100644 index 0000000..50007c5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/QuickAction/Control.cls @@ -0,0 +1,7 @@ +global class Control { + global Integer getDisplayLines() { } + global Integer getTabOrder() { } + global String getType() { } + global String getValue() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/QuickAction/DescribeAvailableQuickActionResult.cls b/.sfdx/tools/246/StandardApexLibrary/QuickAction/DescribeAvailableQuickActionResult.cls new file mode 100644 index 0000000..88e5ced --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/QuickAction/DescribeAvailableQuickActionResult.cls @@ -0,0 +1,11 @@ +global class DescribeAvailableQuickActionResult { + global String actionenumorid; + global String label; + global String name; + global String type; + global String getActionEnumOrId() { } + global String getLabel() { } + global String getName() { } + global String getType() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/QuickAction/DescribeLayoutComponent.cls b/.sfdx/tools/246/StandardApexLibrary/QuickAction/DescribeLayoutComponent.cls new file mode 100644 index 0000000..ce6fe03 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/QuickAction/DescribeLayoutComponent.cls @@ -0,0 +1,11 @@ +global class DescribeLayoutComponent { + global Integer displaylines; + global Integer taborder; + global String type; + global String value; + global Integer getDisplayLines() { } + global Integer getTabOrder() { } + global String getType() { } + global String getValue() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/QuickAction/DescribeLayoutItem.cls b/.sfdx/tools/246/StandardApexLibrary/QuickAction/DescribeLayoutItem.cls new file mode 100644 index 0000000..c091814 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/QuickAction/DescribeLayoutItem.cls @@ -0,0 +1,15 @@ +global class DescribeLayoutItem { + global Boolean editablefornew; + global Boolean editableforupdate; + global String label; + global List layoutcomponents; + global Boolean placeholder; + global Boolean required; + global String getLabel() { } + global List getLayoutComponents() { } + global Boolean isEditableForNew() { } + global Boolean isEditableForUpdate() { } + global Boolean isPlaceholder() { } + global Boolean isRequired() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/QuickAction/DescribeLayoutRow.cls b/.sfdx/tools/246/StandardApexLibrary/QuickAction/DescribeLayoutRow.cls new file mode 100644 index 0000000..8d6856b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/QuickAction/DescribeLayoutRow.cls @@ -0,0 +1,7 @@ +global class DescribeLayoutRow { + global List layoutitems; + global Integer numitems; + global List getLayoutItems() { } + global Integer getNumItems() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/QuickAction/DescribeLayoutSection.cls b/.sfdx/tools/246/StandardApexLibrary/QuickAction/DescribeLayoutSection.cls new file mode 100644 index 0000000..b726b85 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/QuickAction/DescribeLayoutSection.cls @@ -0,0 +1,23 @@ +global class DescribeLayoutSection { + global Boolean collapsed; + global Integer columns; + global String heading; + global List layoutrows; + global Id layoutsectionid; + global Id parentlayoutid; + global Integer rows; + global String taborder; + global Boolean usecollapsiblesection; + global Boolean useheading; + global Integer getColumns() { } + global String getHeading() { } + global List getLayoutRows() { } + global Id getLayoutSectionId() { } + global Id getParentLayoutId() { } + global Integer getRows() { } + global String getTabOrder() { } + global Boolean isCollapsed() { } + global Boolean isUseCollapsibleSection() { } + global Boolean isUseHeading() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/QuickAction/DescribeQuickActionDefaultValue.cls b/.sfdx/tools/246/StandardApexLibrary/QuickAction/DescribeQuickActionDefaultValue.cls new file mode 100644 index 0000000..7d3822d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/QuickAction/DescribeQuickActionDefaultValue.cls @@ -0,0 +1,7 @@ +global class DescribeQuickActionDefaultValue { + global String defaultvalue; + global String field; + global String getDefaultValue() { } + global String getField() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/QuickAction/DescribeQuickActionResult.cls b/.sfdx/tools/246/StandardApexLibrary/QuickAction/DescribeQuickActionResult.cls new file mode 100644 index 0000000..1032e60 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/QuickAction/DescribeQuickActionResult.cls @@ -0,0 +1,65 @@ +global class DescribeQuickActionResult { + global String accesslevelrequired; + global String canvasapplicationid; + global String canvasapplicationname; + global List colors; + global String contextsobjecttype; + global List defaultvalues; + global String flowdevname; + global String flowrecordidvar; + global Integer height; + global String iconname; + global List icons; + global String iconurl; + global QuickAction.DescribeLayoutSection layout; + global String lightningcomponentbundleid; + global String lightningcomponentbundlename; + global String lightningcomponentqualifiedname; + global String lightningwebcomponentbundleid; + global String lightningwebcomponentbundlename; + global String lightningwebcomponentqualifiedname; + global String miniiconurl; + global String mobileextensionid; + global Boolean showquickactionlcheader; + global Boolean showquickactionvfheader; + global String targetparentfield; + global String targetrecordtypeid; + global String targetsobjecttype; + global String visualforcepagename; + global String visualforcepageurl; + global Integer width; + global String getAccessLevelRequired() { } + global String getActionEnumOrId() { } + global String getCanvasApplicationId() { } + global String getCanvasApplicationName() { } + global List getColors() { } + global String getContextSobjectType() { } + global List getDefaultValues() { } + global String getFlowDevName() { } + global String getFlowRecordIdVar() { } + global Integer getHeight() { } + global String getIconName() { } + global String getIconUrl() { } + global List getIcons() { } + global String getLabel() { } + global QuickAction.DescribeLayoutSection getLayout() { } + global String getLightningComponentBundleId() { } + global String getLightningComponentBundleName() { } + global String getLightningComponentQualifiedName() { } + global String getLightningWebComponentBundleId() { } + global String getLightningWebComponentBundleName() { } + global String getLightningWebComponentQualifiedName() { } + global String getMiniIconUrl() { } + global String getMobileExtensionId() { } + global String getName() { } + global Boolean getShowQuickActionLcHeader() { } + global Boolean getShowQuickActionVfHeader() { } + global String getTargetParentField() { } + global String getTargetRecordTypeId() { } + global String getTargetSobjectType() { } + global String getType() { } + global String getVisualforcePageName() { } + global String getVisualforcePageUrl() { } + global Integer getWidth() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/QuickAction/EmptySpace.cls b/.sfdx/tools/246/StandardApexLibrary/QuickAction/EmptySpace.cls new file mode 100644 index 0000000..a081fdf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/QuickAction/EmptySpace.cls @@ -0,0 +1,7 @@ +global class EmptySpace { + global Integer getDisplayLines() { } + global Integer getTabOrder() { } + global String getType() { } + global String getValue() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/QuickAction/ExpandedLookup.cls b/.sfdx/tools/246/StandardApexLibrary/QuickAction/ExpandedLookup.cls new file mode 100644 index 0000000..8f7d1de --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/QuickAction/ExpandedLookup.cls @@ -0,0 +1,7 @@ +global class ExpandedLookup { + global Integer getDisplayLines() { } + global Integer getTabOrder() { } + global String getType() { } + global String getValue() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/QuickAction/Field.cls b/.sfdx/tools/246/StandardApexLibrary/QuickAction/Field.cls new file mode 100644 index 0000000..8cbdb7d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/QuickAction/Field.cls @@ -0,0 +1,7 @@ +global class Field { + global Integer getDisplayLines() { } + global Integer getTabOrder() { } + global String getType() { } + global String getValue() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/QuickAction/FieldLayoutComponent.cls b/.sfdx/tools/246/StandardApexLibrary/QuickAction/FieldLayoutComponent.cls new file mode 100644 index 0000000..df4aada --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/QuickAction/FieldLayoutComponent.cls @@ -0,0 +1,7 @@ +global class FieldLayoutComponent { + global Integer getDisplayLines() { } + global Integer getTabOrder() { } + global String getType() { } + global String getValue() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/QuickAction/QuickActionDefaults.cls b/.sfdx/tools/246/StandardApexLibrary/QuickAction/QuickActionDefaults.cls new file mode 100644 index 0000000..4d278c2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/QuickAction/QuickActionDefaults.cls @@ -0,0 +1,8 @@ +global class QuickActionDefaults { + global Object clone() { } + global String getActionName() { } + global String getActionType() { } + global Id getContextId() { } + global SObject getTargetSObject() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/QuickAction/QuickActionDefaultsHandler.cls b/.sfdx/tools/246/StandardApexLibrary/QuickAction/QuickActionDefaultsHandler.cls new file mode 100644 index 0000000..73cd0f5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/QuickAction/QuickActionDefaultsHandler.cls @@ -0,0 +1,4 @@ +global interface QuickActionDefaultsHandler { + void onInitDefaults(List param0); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/QuickAction/QuickActionRequest.cls b/.sfdx/tools/246/StandardApexLibrary/QuickAction/QuickActionRequest.cls new file mode 100644 index 0000000..99974d9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/QuickAction/QuickActionRequest.cls @@ -0,0 +1,13 @@ +global class QuickActionRequest { + global Id contextid; + global String quickactionname; + global SObject record; + global QuickActionRequest() { } + global Id getContextId() { } + global String getQuickActionName() { } + global SObject getRecord() { } + global void setContextId(Id param0) { } + global void setQuickActionName(String param0) { } + global void setRecord(SObject param0) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/QuickAction/QuickActionResult.cls b/.sfdx/tools/246/StandardApexLibrary/QuickAction/QuickActionResult.cls new file mode 100644 index 0000000..3dc6ed0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/QuickAction/QuickActionResult.cls @@ -0,0 +1,15 @@ +global class QuickActionResult { + global Id contextid; + global Boolean created; + global List errors; + global List ids; + global Boolean success; + global String successmessage; + global Id getContextId() { } + global List getErrors() { } + global List getIds() { } + global String getSuccessMessage() { } + global Boolean isCreated() { } + global Boolean isSuccess() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/QuickAction/QuickActionTemplateResult.cls b/.sfdx/tools/246/StandardApexLibrary/QuickAction/QuickActionTemplateResult.cls new file mode 100644 index 0000000..a12bd67 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/QuickAction/QuickActionTemplateResult.cls @@ -0,0 +1,13 @@ +global class QuickActionTemplateResult { + global String contextid; + global SObject defaultvalueformulas; + global SObject defaultvalues; + global List errors; + global Boolean success; + global String getContextId() { } + global SObject getDefaultValueFormulas() { } + global SObject getDefaultValues() { } + global List getErrors() { } + global Boolean isSuccess() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/QuickAction/ReportChartComponent.cls b/.sfdx/tools/246/StandardApexLibrary/QuickAction/ReportChartComponent.cls new file mode 100644 index 0000000..a6374bb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/QuickAction/ReportChartComponent.cls @@ -0,0 +1,21 @@ +global class ReportChartComponent { + global Boolean cachedata; + global String contextfilterablefield; + global String error; + global Boolean hideonerror; + global Boolean includecontext; + global Boolean showtitle; + global String size; + global Boolean getCacheData() { } + global String getContextFilterableField() { } + global Integer getDisplayLines() { } + global String getError() { } + global Boolean getHideOnError() { } + global Boolean getIncludeContext() { } + global Boolean getShowTitle() { } + global String getSize() { } + global Integer getTabOrder() { } + global String getType() { } + global String getValue() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/QuickAction/SControl.cls b/.sfdx/tools/246/StandardApexLibrary/QuickAction/SControl.cls new file mode 100644 index 0000000..7470c2d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/QuickAction/SControl.cls @@ -0,0 +1,7 @@ +global class SControl { + global Integer getDisplayLines() { } + global Integer getTabOrder() { } + global String getType() { } + global String getValue() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/QuickAction/SendEmailQuickActionDefaults.cls b/.sfdx/tools/246/StandardApexLibrary/QuickAction/SendEmailQuickActionDefaults.cls new file mode 100644 index 0000000..ded09e9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/QuickAction/SendEmailQuickActionDefaults.cls @@ -0,0 +1,13 @@ +global class SendEmailQuickActionDefaults { + global Object clone() { } + global String getActionName() { } + global String getActionType() { } + global Id getContextId() { } + global List getFromAddressList() { } + global Id getInReplyToId() { } + global SObject getTargetSObject() { } + global void setIgnoreTemplateSubject(Boolean ignoreSubject) { } + global void setInsertTemplateBody(Boolean insertBody) { } + global void setTemplateId(Id templateId) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/QuickAction/Separator.cls b/.sfdx/tools/246/StandardApexLibrary/QuickAction/Separator.cls new file mode 100644 index 0000000..3e1f06c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/QuickAction/Separator.cls @@ -0,0 +1,7 @@ +global class Separator { + global Integer getDisplayLines() { } + global Integer getTabOrder() { } + global String getType() { } + global String getValue() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/QuickAction/VisualforcePage.cls b/.sfdx/tools/246/StandardApexLibrary/QuickAction/VisualforcePage.cls new file mode 100644 index 0000000..37f184e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/QuickAction/VisualforcePage.cls @@ -0,0 +1,17 @@ +global class VisualforcePage { + global Boolean showlabel; + global Boolean showscrollbars; + global String suggestedheight; + global String suggestedwidth; + global String url; + global Integer getDisplayLines() { } + global Boolean getShowLabel() { } + global Boolean getShowScrollbars() { } + global String getSuggestedHeight() { } + global String getSuggestedWidth() { } + global Integer getTabOrder() { } + global String getType() { } + global String getUrl() { } + global String getValue() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/AggregateColumn.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/AggregateColumn.cls new file mode 100644 index 0000000..2cd647d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/AggregateColumn.cls @@ -0,0 +1,10 @@ +global class AggregateColumn { + global Object clone() { } + global String getAcrossGroupingContext() { } + global reports.ColumnDataType getDataType() { } + global String getDownGroupingContext() { } + global String getLabel() { } + global String getName() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/BucketField.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/BucketField.cls new file mode 100644 index 0000000..94557b9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/BucketField.cls @@ -0,0 +1,22 @@ +global class BucketField { + global BucketField(reports.BucketType bucketType, String devloperName, String label, Boolean nullTreatedAsZero, String otherBucketLabel, String sourceColumnName, List values) { } + global BucketField() { } + global Object clone() { } + global reports.BucketType getBucketType() { } + global String getDevloperName() { } + global String getLabel() { } + global Boolean getNullTreatedAsZero() { } + global String getOtherBucketLabel() { } + global String getSourceColumnName() { } + global List getValues() { } + global void setBucketType(String value) { } + global void setBucketType(reports.BucketType bucketType) { } + global void setDevloperName(String devloperName) { } + global void setLabel(String label) { } + global void setNullTreatedAsZero(Boolean nullTreatedAsZero) { } + global void setOtherBucketLabel(String otherBucketLabel) { } + global void setSourceColumnName(String sourceColumnName) { } + global void setValues(List values) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/BucketFieldValue.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/BucketFieldValue.cls new file mode 100644 index 0000000..4e3a39d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/BucketFieldValue.cls @@ -0,0 +1,13 @@ +global class BucketFieldValue { + global BucketFieldValue(String label, List sourceDimensionValues, Double rangeUpperBound) { } + global BucketFieldValue() { } + global Object clone() { } + global String getLabel() { } + global Double getRangeUpperBound() { } + global List getSourceDimensionValues() { } + global void setLabel(String label) { } + global void setRangeUpperBound(Double rangeUpperBound) { } + global void setSourceDimensionValues(List sourceDimensionValues) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/BucketType.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/BucketType.cls new file mode 100644 index 0000000..b8d5092 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/BucketType.cls @@ -0,0 +1,5 @@ +global enum BucketType { +NUMBER, +PICKLIST, +TEXT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ColumnDataType.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ColumnDataType.cls new file mode 100644 index 0000000..a2e22ca --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ColumnDataType.cls @@ -0,0 +1,21 @@ +global enum ColumnDataType { +BOOLEAN_DATA, +COMBOBOX_DATA, +CURRENCY_DATA, +DATETIME_DATA, +DATE_DATA, +DOUBLE_DATA, +EMAIL_DATA, +HTML_DATA, +ID_DATA, +INT_DATA, +MULTIPICKLIST_DATA, +PERCENT_DATA, +PHONE_DATA, +PICKLIST_DATA, +REFERENCE_DATA, +STRING_DATA, +TEXTAREA_DATA, +TIME_DATA, +URL_DATA +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ColumnSortOrder.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ColumnSortOrder.cls new file mode 100644 index 0000000..5608e8c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ColumnSortOrder.cls @@ -0,0 +1,4 @@ +global enum ColumnSortOrder { +ASCENDING, +DESCENDING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/CrossFilter.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/CrossFilter.cls new file mode 100644 index 0000000..5448c70 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/CrossFilter.cls @@ -0,0 +1,17 @@ +global class CrossFilter { + global CrossFilter(List criteria, Boolean includesObject, String primaryEntityField, String relatedEntity, String relatedEntityJoinField) { } + global CrossFilter() { } + global Object clone() { } + global List getCriteria() { } + global Boolean getIncludesObject() { } + global String getPrimaryEntityField() { } + global String getRelatedEntity() { } + global String getRelatedEntityJoinField() { } + global void setCriteria(List criteria) { } + global void setIncludesObject(Boolean includesObject) { } + global void setPrimaryEntityField(String primaryEntityField) { } + global void setRelatedEntity(String relatedEntity) { } + global void setRelatedEntityJoinField(String relatedEntityJoinField) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/CsfGroupType.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/CsfGroupType.cls new file mode 100644 index 0000000..1febae4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/CsfGroupType.cls @@ -0,0 +1,5 @@ +global enum CsfGroupType { +ALL, +CUSTOM, +GRAND_TOTAL +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/DateGranularity.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/DateGranularity.cls new file mode 100644 index 0000000..fa9b6fe --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/DateGranularity.cls @@ -0,0 +1,14 @@ +global enum DateGranularity { +DAY, +DAY_IN_MONTH, +FISCAL_PERIOD, +FISCAL_QUARTER, +FISCAL_WEEK, +FISCAL_YEAR, +MONTH, +MONTH_IN_YEAR, +NONE, +QUARTER, +WEEK, +YEAR +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/DetailColumn.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/DetailColumn.cls new file mode 100644 index 0000000..7a08ea6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/DetailColumn.cls @@ -0,0 +1,8 @@ +global class DetailColumn { + global Object clone() { } + global reports.ColumnDataType getDataType() { } + global String getLabel() { } + global String getName() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/Dimension.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/Dimension.cls new file mode 100644 index 0000000..04153e2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/Dimension.cls @@ -0,0 +1,6 @@ +global class Dimension { + global Object clone() { } + global List getGroupings() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/EvaluatedCondition.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/EvaluatedCondition.cls new file mode 100644 index 0000000..49001af --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/EvaluatedCondition.cls @@ -0,0 +1,12 @@ +global class EvaluatedCondition { + global EvaluatedCondition(String aggregateName, String aggregateLabel, Double compareTo, Double value, String displayCompareTo, String displayValue, reports.EvaluatedConditionOperator operator) { } + global Object clone() { } + global String getAggregateLabel() { } + global String getAggregateName() { } + global Double getCompareTo() { } + global String getDisplayCompareTo() { } + global String getDisplayValue() { } + global reports.EvaluatedConditionOperator getOperator() { } + global Double getValue() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/EvaluatedConditionOperator.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/EvaluatedConditionOperator.cls new file mode 100644 index 0000000..b762aa7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/EvaluatedConditionOperator.cls @@ -0,0 +1,8 @@ +global enum EvaluatedConditionOperator { +EQUAL, +GREATER_THAN, +GREATER_THAN_EQUAL, +LESS_THAN, +LESS_THAN_EQUAL, +NOT_EQUAL +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/FeatureNotSupportedException.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/FeatureNotSupportedException.cls new file mode 100644 index 0000000..3e72492 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/FeatureNotSupportedException.cls @@ -0,0 +1,8 @@ +global class FeatureNotSupportedException extends Exception { + global FeatureNotSupportedException(String param0, Exception param1) { } + global FeatureNotSupportedException(Exception param0) { } + global FeatureNotSupportedException() { } + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/FilterOperator.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/FilterOperator.cls new file mode 100644 index 0000000..8edd6f5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/FilterOperator.cls @@ -0,0 +1,7 @@ +global class FilterOperator { + global Object clone() { } + global String getLabel() { } + global String getName() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/FilterValue.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/FilterValue.cls new file mode 100644 index 0000000..27cbbfd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/FilterValue.cls @@ -0,0 +1,7 @@ +global class FilterValue { + global Object clone() { } + global String getLabel() { } + global String getName() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/FormulaType.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/FormulaType.cls new file mode 100644 index 0000000..9dea316 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/FormulaType.cls @@ -0,0 +1,10 @@ +global enum FormulaType { +CHECKBOX, +CURRENCY, +DATE, +DATE_TIME, +NUMBER, +PERCENT, +TEXT, +TIME +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/GroupingColumn.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/GroupingColumn.cls new file mode 100644 index 0000000..0e722ca --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/GroupingColumn.cls @@ -0,0 +1,9 @@ +global class GroupingColumn { + global Object clone() { } + global reports.ColumnDataType getDataType() { } + global Integer getGroupingLevel() { } + global String getLabel() { } + global String getName() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/GroupingInfo.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/GroupingInfo.cls new file mode 100644 index 0000000..aecc855 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/GroupingInfo.cls @@ -0,0 +1,17 @@ +global class GroupingInfo { + global GroupingInfo(String name, reports.ColumnSortOrder sortOrder, reports.DateGranularity dateGranularity, String sortAggregate) { } + global GroupingInfo() { } + global Object clone() { } + global reports.DateGranularity getDateGranularity() { } + global String getName() { } + global String getSortAggregate() { } + global reports.ColumnSortOrder getSortOrder() { } + global void setDateGranularity(String value) { } + global void setDateGranularity(reports.DateGranularity dateGranularity) { } + global void setName(String name) { } + global void setSortAggregate(String sortAggregate) { } + global void setSortOrder(String value) { } + global void setSortOrder(reports.ColumnSortOrder sortOrder) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/GroupingValue.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/GroupingValue.cls new file mode 100644 index 0000000..f9b9323 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/GroupingValue.cls @@ -0,0 +1,9 @@ +global class GroupingValue { + global Object clone() { } + global List getGroupings() { } + global String getKey() { } + global String getLabel() { } + global Object getValue() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/InstanceAccessException.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/InstanceAccessException.cls new file mode 100644 index 0000000..82c1b11 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/InstanceAccessException.cls @@ -0,0 +1,8 @@ +global class InstanceAccessException extends Exception { + global InstanceAccessException(String param0, Exception param1) { } + global InstanceAccessException(Exception param0) { } + global InstanceAccessException() { } + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/InvalidFilterException.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/InvalidFilterException.cls new file mode 100644 index 0000000..bb56eca --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/InvalidFilterException.cls @@ -0,0 +1,10 @@ +global class InvalidFilterException extends Exception { + global InvalidFilterException(String param0, Exception param1) { } + global InvalidFilterException(Exception param0) { } + global InvalidFilterException(String param0) { } + global InvalidFilterException() { } + global Object clone() { } + global List getFilterErrors() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/InvalidReportMetadataException.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/InvalidReportMetadataException.cls new file mode 100644 index 0000000..32e885d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/InvalidReportMetadataException.cls @@ -0,0 +1,10 @@ +global class InvalidReportMetadataException extends Exception { + global InvalidReportMetadataException(String param0, Exception param1) { } + global InvalidReportMetadataException(Exception param0) { } + global InvalidReportMetadataException(String param0) { } + global InvalidReportMetadataException() { } + global Object clone() { } + global List getReportMetadataErrors() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/InvalidSnapshotDateException.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/InvalidSnapshotDateException.cls new file mode 100644 index 0000000..f38fdbf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/InvalidSnapshotDateException.cls @@ -0,0 +1,10 @@ +global class InvalidSnapshotDateException extends Exception { + global InvalidSnapshotDateException(String param0, Exception param1) { } + global InvalidSnapshotDateException(Exception param0) { } + global InvalidSnapshotDateException(String param0) { } + global InvalidSnapshotDateException() { } + global Object clone() { } + global List getSnapshotDateErrors() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/MetadataException.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/MetadataException.cls new file mode 100644 index 0000000..e6fe2ae --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/MetadataException.cls @@ -0,0 +1,8 @@ +global class MetadataException extends Exception { + global MetadataException(String param0, Exception param1) { } + global MetadataException(Exception param0) { } + global MetadataException() { } + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/NotificationAction.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/NotificationAction.cls new file mode 100644 index 0000000..5ac2886 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/NotificationAction.cls @@ -0,0 +1,4 @@ +global interface NotificationAction { + void execute(reports.NotificationActionContext param0); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/NotificationActionContext.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/NotificationActionContext.cls new file mode 100644 index 0000000..1e4ffb1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/NotificationActionContext.cls @@ -0,0 +1,7 @@ +global class NotificationActionContext { + global NotificationActionContext(reports.ReportInstance reportInstance, reports.ThresholdInformation thresholdInformation) { } + global Object clone() { } + global reports.ReportInstance getReportInstance() { } + global reports.ThresholdInformation getThresholdInformation() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ReportCsf.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportCsf.cls new file mode 100644 index 0000000..e536170 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportCsf.cls @@ -0,0 +1,28 @@ +global class ReportCsf { + global ReportCsf(String label, String description, reports.FormulaType formulaType, Integer decimalPlaces, String downGroup, reports.CsfGroupType downGroupType, String acrossGroup, reports.CsfGroupType acrossGroupType, String formula) { } + global ReportCsf() { } + global Object clone() { } + global String getAcrossGroup() { } + global reports.CsfGroupType getAcrossGroupType() { } + global Integer getDecimalPlaces() { } + global String getDescription() { } + global String getDownGroup() { } + global reports.CsfGroupType getDownGroupType() { } + global String getFormula() { } + global reports.FormulaType getFormulaType() { } + global String getLabel() { } + global void setAcrossGroup(String acrossGroup) { } + global void setAcrossGroupType(String value) { } + global void setAcrossGroupType(reports.CsfGroupType acrossGroupType) { } + global void setDecimalPlaces(Integer decimalPlaces) { } + global void setDescription(String description) { } + global void setDownGroup(String downGroup) { } + global void setDownGroupType(String value) { } + global void setDownGroupType(reports.CsfGroupType downGroupType) { } + global void setFormula(String formula) { } + global void setFormulaType(String value) { } + global void setFormulaType(reports.FormulaType formulaType) { } + global void setLabel(String label) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ReportCurrency.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportCurrency.cls new file mode 100644 index 0000000..9c5d8d5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportCurrency.cls @@ -0,0 +1,7 @@ +global class ReportCurrency { + global Object clone() { } + global Decimal getAmount() { } + global String getCurrencyCode() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ReportDataCell.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportDataCell.cls new file mode 100644 index 0000000..d31dbe7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportDataCell.cls @@ -0,0 +1,7 @@ +global class ReportDataCell { + global Object clone() { } + global String getLabel() { } + global Object getValue() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ReportDescribeResult.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportDescribeResult.cls new file mode 100644 index 0000000..0105573 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportDescribeResult.cls @@ -0,0 +1,8 @@ +global class ReportDescribeResult { + global Object clone() { } + global reports.ReportExtendedMetadata getReportExtendedMetadata() { } + global reports.ReportMetadata getReportMetadata() { } + global reports.ReportTypeMetadata getReportTypeMetadata() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ReportDetailRow.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportDetailRow.cls new file mode 100644 index 0000000..12dcef4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportDetailRow.cls @@ -0,0 +1,6 @@ +global class ReportDetailRow { + global Object clone() { } + global List getDataCells() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ReportDivisionInfo.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportDivisionInfo.cls new file mode 100644 index 0000000..68c8b01 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportDivisionInfo.cls @@ -0,0 +1,7 @@ +global class ReportDivisionInfo { + global Object clone() { } + global String getDefaultValue() { } + global List getValues() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ReportExtendedMetadata.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportExtendedMetadata.cls new file mode 100644 index 0000000..26821c8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportExtendedMetadata.cls @@ -0,0 +1,8 @@ +global class ReportExtendedMetadata { + global Object clone() { } + global Map getAggregateColumnInfo() { } + global Map getDetailColumnInfo() { } + global Map getGroupingColumnInfo() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ReportFact.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportFact.cls new file mode 100644 index 0000000..7390af0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportFact.cls @@ -0,0 +1,7 @@ +global class ReportFact { + global Object clone() { } + global List getAggregates() { } + global String getKey() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ReportFactWithDetails.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportFactWithDetails.cls new file mode 100644 index 0000000..b1f2bad --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportFactWithDetails.cls @@ -0,0 +1,8 @@ +global class ReportFactWithDetails { + global Object clone() { } + global List getAggregates() { } + global String getKey() { } + global List getRows() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ReportFactWithSummaries.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportFactWithSummaries.cls new file mode 100644 index 0000000..dd32156 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportFactWithSummaries.cls @@ -0,0 +1,7 @@ +global class ReportFactWithSummaries { + global Object clone() { } + global List getAggregates() { } + global String getKey() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ReportFilter.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportFilter.cls new file mode 100644 index 0000000..212a177 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportFilter.cls @@ -0,0 +1,17 @@ +global class ReportFilter { + global ReportFilter(String column, String operator, String value, reports.ReportFilterType filterType) { } + global ReportFilter(String column, String operator, String value) { } + global ReportFilter() { } + global Object clone() { } + global String getColumn() { } + global reports.ReportFilterType getFilterType() { } + global String getOperator() { } + global String getValue() { } + global void setColumn(String column) { } + global void setFilterType(String value) { } + global void setFilterType(reports.ReportFilterType filterType) { } + global void setOperator(String operator) { } + global void setValue(String value) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ReportFilterType.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportFilterType.cls new file mode 100644 index 0000000..8dd9c04 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportFilterType.cls @@ -0,0 +1,4 @@ +global enum ReportFilterType { +FIELDTOFIELD, +FIELDVALUE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ReportFormat.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportFormat.cls new file mode 100644 index 0000000..d1c916b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportFormat.cls @@ -0,0 +1,6 @@ +global enum ReportFormat { +MATRIX, +MULTI_BLOCK, +SUMMARY, +TABULAR +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ReportInstance.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportInstance.cls new file mode 100644 index 0000000..ad2bd30 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportInstance.cls @@ -0,0 +1,12 @@ +global class ReportInstance { + global Object clone() { } + global Datetime getCompletionDate() { } + global Id getId() { } + global Id getOwnerId() { } + global Id getReportId() { } + global reports.ReportResults getReportResults() { } + global Datetime getRequestDate() { } + global String getStatus() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ReportInstanceAttributes.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportInstanceAttributes.cls new file mode 100644 index 0000000..f29a8a9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportInstanceAttributes.cls @@ -0,0 +1,10 @@ +global class ReportInstanceAttributes { + global Object clone() { } + global Datetime getCompletionDate() { } + global Id getId() { } + global Id getOwnerId() { } + global Datetime getRequestDate() { } + global String getStatus() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ReportManager.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportManager.cls new file mode 100644 index 0000000..5144722 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportManager.cls @@ -0,0 +1,17 @@ +global class ReportManager { + global ReportManager() { } + global Object clone() { } + global static reports.ReportDescribeResult describeReport(Id reportId) { } + global static Map> getDatatypeFilterOperatorMap() { } + global static reports.ReportInstance getReportInstance(Id instanceId) { } + global static List getReportInstances(Id reportId) { } + global static reports.ReportInstance runAsyncReport(Id reportId, reports.ReportMetadata rmData, Boolean includeDetails) { } + global static reports.ReportInstance runAsyncReport(Id reportId, Boolean includeDetails) { } + global static reports.ReportInstance runAsyncReport(Id reportId, reports.ReportMetadata rmData) { } + global static reports.ReportInstance runAsyncReport(Id reportId) { } + global static reports.ReportResults runReport(Id reportId, reports.ReportMetadata rmData, Boolean includeDetails) { } + global static reports.ReportResults runReport(Id reportId, Boolean includeDetails) { } + global static reports.ReportResults runReport(Id reportId, reports.ReportMetadata rmData) { } + global static reports.ReportResults runReport(Id reportId) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ReportMetadata.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportMetadata.cls new file mode 100644 index 0000000..e93fdf7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportMetadata.cls @@ -0,0 +1,62 @@ +global class ReportMetadata { + global ReportMetadata(String name, String developerName, Id id, List groupingsAcross, List groupingsDown, List aggregates, List buckets, List detailColumns, String reportBooleanFilter, List reportFilters, List historicalSnapshotDates, reports.ReportFormat reportFormat, reports.ReportType reportType, String currencyCode, String scope, String division, List sortBy, reports.StandardDateFilter standardDateFilter, Boolean hasDetailRows, Boolean hasRecordCount, List standardFilters, String description, Boolean showSubtotals, Boolean showGrandTotal, reports.TopRows topRows, Map customSummaryFormula, List crossFilters) { } + global ReportMetadata() { } + global Object clone() { } + global List getAggregates() { } + global List getBuckets() { } + global List getCrossFilters() { } + global String getCurrencyCode() { } + global Map getCustomSummaryFormula() { } + global String getDescription() { } + global List getDetailColumns() { } + global String getDeveloperName() { } + global String getDivision() { } + global List getGroupingsAcross() { } + global List getGroupingsDown() { } + global Boolean getHasDetailRows() { } + global Boolean getHasRecordCount() { } + global List getHistoricalSnapshotDates() { } + global Id getId() { } + global String getName() { } + global String getReportBooleanFilter() { } + global List getReportFilters() { } + global reports.ReportFormat getReportFormat() { } + global reports.ReportType getReportType() { } + global String getScope() { } + global Boolean getShowGrandTotal() { } + global Boolean getShowSubtotals() { } + global List getSortBy() { } + global reports.StandardDateFilter getStandardDateFilter() { } + global List getStandardFilters() { } + global reports.TopRows getTopRows() { } + global void setAggregates(List aggregates) { } + global void setBuckets(List buckets) { } + global void setCrossFilters(List crossFilters) { } + global void setCurrencyCode(String currencyCode) { } + global void setCustomSummaryFormula(Map customSummaryFormula) { } + global void setDescription(String description) { } + global void setDetailColumns(List detailColumns) { } + global void setDeveloperName(String developerName) { } + global void setDivision(String division) { } + global void setGroupingsAcross(List groupingsAcross) { } + global void setGroupingsDown(List groupingsDown) { } + global void setHasDetailRows(Boolean hasDetailRows) { } + global void setHasRecordCount(Boolean hasRecordCount) { } + global void setHistoricalSnapshotDates(List historicalSnapshotDates) { } + global void setId(Id id) { } + global void setName(String name) { } + global void setReportBooleanFilter(String reportBooleanFilter) { } + global void setReportFilters(List reportFilters) { } + global void setReportFormat(String value) { } + global void setReportFormat(reports.ReportFormat reportFormat) { } + global void setReportType(reports.ReportType reportType) { } + global void setScope(String scope) { } + global void setShowGrandTotal(Boolean showGrandTotal) { } + global void setShowSubtotals(Boolean showSubtotals) { } + global void setSortBy(List sortBy) { } + global void setStandardDateFilter(reports.StandardDateFilter standardDateFilter) { } + global void setStandardFilters(List standardFilters) { } + global void setTopRows(reports.TopRows topRows) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ReportResults.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportResults.cls new file mode 100644 index 0000000..8d5026e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportResults.cls @@ -0,0 +1,12 @@ +global class ReportResults { + global Object clone() { } + global Boolean getAllData() { } + global Map getFactMap() { } + global reports.Dimension getGroupingsAcross() { } + global reports.Dimension getGroupingsDown() { } + global Boolean getHasDetailRows() { } + global reports.ReportExtendedMetadata getReportExtendedMetadata() { } + global reports.ReportMetadata getReportMetadata() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ReportRunException.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportRunException.cls new file mode 100644 index 0000000..6d9b016 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportRunException.cls @@ -0,0 +1,8 @@ +global class ReportRunException extends Exception { + global ReportRunException(String param0, Exception param1) { } + global ReportRunException(Exception param0) { } + global ReportRunException() { } + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ReportScopeInfo.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportScopeInfo.cls new file mode 100644 index 0000000..6869201 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportScopeInfo.cls @@ -0,0 +1,7 @@ +global class ReportScopeInfo { + global Object clone() { } + global String getDefaultValue() { } + global List getValues() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ReportScopeValue.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportScopeValue.cls new file mode 100644 index 0000000..52b3ae0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportScopeValue.cls @@ -0,0 +1,8 @@ +global class ReportScopeValue { + global Object clone() { } + global Boolean getAllowsDivision() { } + global String getLabel() { } + global String getValue() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ReportTester.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportTester.cls new file mode 100644 index 0000000..e1b34a6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportTester.cls @@ -0,0 +1,3 @@ +global class ReportTester { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ReportType.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportType.cls new file mode 100644 index 0000000..99e0f42 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportType.cls @@ -0,0 +1,11 @@ +global class ReportType { + global ReportType(String type, String label) { } + global ReportType() { } + global Object clone() { } + global String getLabel() { } + global String getType() { } + global void setLabel(String label) { } + global void setType(String type) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ReportTypeColumn.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportTypeColumn.cls new file mode 100644 index 0000000..f95099d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportTypeColumn.cls @@ -0,0 +1,10 @@ +global class ReportTypeColumn { + global Object clone() { } + global reports.ColumnDataType getDataType() { } + global List getFilterValues() { } + global Boolean getFilterable() { } + global String getLabel() { } + global String getName() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ReportTypeColumnCategory.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportTypeColumnCategory.cls new file mode 100644 index 0000000..5be1145 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportTypeColumnCategory.cls @@ -0,0 +1,7 @@ +global class ReportTypeColumnCategory { + global Object clone() { } + global Map getColumns() { } + global String getLabel() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ReportTypeMetadata.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportTypeMetadata.cls new file mode 100644 index 0000000..bcd3ef9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ReportTypeMetadata.cls @@ -0,0 +1,10 @@ +global class ReportTypeMetadata { + global Object clone() { } + global List getCategories() { } + global reports.ReportDivisionInfo getDivisionInfo() { } + global reports.ReportScopeInfo getScopeInfo() { } + global List getStandardDateFilterDurationGroups() { } + global Map getStandardFilterInfos() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/SortColumn.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/SortColumn.cls new file mode 100644 index 0000000..9462972 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/SortColumn.cls @@ -0,0 +1,12 @@ +global class SortColumn { + global SortColumn(String sortColumn, reports.ColumnSortOrder sortOrder) { } + global SortColumn() { } + global Object clone() { } + global String getSortColumn() { } + global reports.ColumnSortOrder getSortOrder() { } + global void setSortColumn(String sortColumn) { } + global void setSortOrder(String value) { } + global void setSortOrder(reports.ColumnSortOrder sortOrder) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/StandardDateFilter.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/StandardDateFilter.cls new file mode 100644 index 0000000..7d4d575 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/StandardDateFilter.cls @@ -0,0 +1,15 @@ +global class StandardDateFilter { + global StandardDateFilter(String column, String durationValue, String startDate, String endDate) { } + global StandardDateFilter() { } + global Object clone() { } + global String getColumn() { } + global String getDurationValue() { } + global String getEndDate() { } + global String getStartDate() { } + global void setColumn(String column) { } + global void setDurationValue(String durationValue) { } + global void setEndDate(String endDate) { } + global void setStartDate(String startDate) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/StandardDateFilterDuration.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/StandardDateFilterDuration.cls new file mode 100644 index 0000000..12813f6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/StandardDateFilterDuration.cls @@ -0,0 +1,9 @@ +global class StandardDateFilterDuration { + global Object clone() { } + global String getEndDate() { } + global String getLabel() { } + global String getStartDate() { } + global String getValue() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/StandardDateFilterDurationGroup.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/StandardDateFilterDurationGroup.cls new file mode 100644 index 0000000..2753d9b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/StandardDateFilterDurationGroup.cls @@ -0,0 +1,7 @@ +global class StandardDateFilterDurationGroup { + global Object clone() { } + global String getLabel() { } + global List getStandardDateFilterDurations() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/StandardFilter.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/StandardFilter.cls new file mode 100644 index 0000000..f9083b9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/StandardFilter.cls @@ -0,0 +1,11 @@ +global class StandardFilter { + global StandardFilter(String name, String value) { } + global StandardFilter() { } + global Object clone() { } + global String getName() { } + global String getValue() { } + global void setName(String name) { } + global void setValue(String value) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/StandardFilterInfo.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/StandardFilterInfo.cls new file mode 100644 index 0000000..e9c25b0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/StandardFilterInfo.cls @@ -0,0 +1,7 @@ +global class StandardFilterInfo { + global Object clone() { } + global String getLabel() { } + global reports.StandardFilterType getType() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/StandardFilterInfoPicklist.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/StandardFilterInfoPicklist.cls new file mode 100644 index 0000000..41c4bf6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/StandardFilterInfoPicklist.cls @@ -0,0 +1,9 @@ +global class StandardFilterInfoPicklist { + global Object clone() { } + global String getDefaultValue() { } + global List getFilterValues() { } + global String getLabel() { } + global reports.StandardFilterType getType() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/StandardFilterType.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/StandardFilterType.cls new file mode 100644 index 0000000..b9b8f6a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/StandardFilterType.cls @@ -0,0 +1,4 @@ +global enum StandardFilterType { +PICKLIST, +STRING +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/SummaryValue.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/SummaryValue.cls new file mode 100644 index 0000000..5815073 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/SummaryValue.cls @@ -0,0 +1,7 @@ +global class SummaryValue { + global Object clone() { } + global String getLabel() { } + global Object getValue() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/ThresholdInformation.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/ThresholdInformation.cls new file mode 100644 index 0000000..d660494 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/ThresholdInformation.cls @@ -0,0 +1,6 @@ +global class ThresholdInformation { + global ThresholdInformation(List evaluatedConditions) { } + global Object clone() { } + global List getEvaluatedConditions() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/TopRows.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/TopRows.cls new file mode 100644 index 0000000..b35ed6e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/TopRows.cls @@ -0,0 +1,12 @@ +global class TopRows { + global TopRows(Integer rowLimit, reports.ColumnSortOrder direction) { } + global TopRows() { } + global Object clone() { } + global reports.ColumnSortOrder getDirection() { } + global Integer getRowLimit() { } + global void setDirection(String value) { } + global void setDirection(reports.ColumnSortOrder direction) { } + global void setRowLimit(Integer rowLimit) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Reports/UnsupportedOperationException.cls b/.sfdx/tools/246/StandardApexLibrary/Reports/UnsupportedOperationException.cls new file mode 100644 index 0000000..6014b3f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Reports/UnsupportedOperationException.cls @@ -0,0 +1,8 @@ +global class UnsupportedOperationException extends Exception { + global UnsupportedOperationException(String param0, Exception param1) { } + global UnsupportedOperationException(Exception param0) { } + global UnsupportedOperationException() { } + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Schema/ChildRelationship.cls b/.sfdx/tools/246/StandardApexLibrary/Schema/ChildRelationship.cls new file mode 100644 index 0000000..7b08f36 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Schema/ChildRelationship.cls @@ -0,0 +1,19 @@ +global class ChildRelationship { + global Boolean cascadedelete; + global Schema.SObjectType childsobject; + global Boolean deprecatedandhidden; + global Schema.SObjectField field; + global List junctionidlistnames; + global List junctionreferenceto; + global String relationshipname; + global Boolean restricteddelete; + global Schema.SObjectType getChildSObject() { } + global Schema.SObjectField getField() { } + global List getJunctionIdListNames() { } + global List getJunctionReferenceTo() { } + global String getRelationshipName() { } + global Boolean isCascadeDelete() { } + global Boolean isDeprecatedAndHidden() { } + global Boolean isRestrictedDelete() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Schema/DataCategory.cls b/.sfdx/tools/246/StandardApexLibrary/Schema/DataCategory.cls new file mode 100644 index 0000000..665b0ab --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Schema/DataCategory.cls @@ -0,0 +1,9 @@ +global class DataCategory { + global List childcategories; + global String label; + global String name; + global List getChildCategories() { } + global String getLabel() { } + global String getName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Schema/DataCategoryGroupSobjectTypePair.cls b/.sfdx/tools/246/StandardApexLibrary/Schema/DataCategoryGroupSobjectTypePair.cls new file mode 100644 index 0000000..2e8ed69 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Schema/DataCategoryGroupSobjectTypePair.cls @@ -0,0 +1,10 @@ +global class DataCategoryGroupSobjectTypePair { + global String datacategorygroupname; + global String sobject; + global DataCategoryGroupSobjectTypePair() { } + global String getDataCategoryGroupName() { } + global String getSobject() { } + global void setDataCategoryGroupName(String param0) { } + global void setSobject(String param0) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Schema/DescribeColorResult.cls b/.sfdx/tools/246/StandardApexLibrary/Schema/DescribeColorResult.cls new file mode 100644 index 0000000..d40177e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Schema/DescribeColorResult.cls @@ -0,0 +1,9 @@ +global class DescribeColorResult { + global String color; + global String context; + global String theme; + global String getColor() { } + global String getContext() { } + global String getTheme() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Schema/DescribeDataCategoryGroupResult.cls b/.sfdx/tools/246/StandardApexLibrary/Schema/DescribeDataCategoryGroupResult.cls new file mode 100644 index 0000000..de941c2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Schema/DescribeDataCategoryGroupResult.cls @@ -0,0 +1,13 @@ +global class DescribeDataCategoryGroupResult { + global Integer categorycount; + global String description; + global String label; + global String name; + global String sobject; + global Integer getCategoryCount() { } + global String getDescription() { } + global String getLabel() { } + global String getName() { } + global String getSobject() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Schema/DescribeDataCategoryGroupStructureResult.cls b/.sfdx/tools/246/StandardApexLibrary/Schema/DescribeDataCategoryGroupStructureResult.cls new file mode 100644 index 0000000..e50877a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Schema/DescribeDataCategoryGroupStructureResult.cls @@ -0,0 +1,13 @@ +global class DescribeDataCategoryGroupStructureResult { + global String description; + global String label; + global String name; + global String sobject; + global List topcategories; + global String getDescription() { } + global String getLabel() { } + global String getName() { } + global String getSobject() { } + global List getTopCategories() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Schema/DescribeFieldResult.cls b/.sfdx/tools/246/StandardApexLibrary/Schema/DescribeFieldResult.cls new file mode 100644 index 0000000..8f6c843 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Schema/DescribeFieldResult.cls @@ -0,0 +1,123 @@ +global class DescribeFieldResult { + global Boolean accessible; + global Boolean aggregatable; + global Boolean aipredictionfield; + global Boolean autonumber; + global Integer bytelength; + global Boolean calculated; + global String calculatedformula; + global Boolean cascadedelete; + global Boolean casesensitive; + global String compoundfieldname; + global Schema.SObjectField controller; + global Boolean createable; + global Boolean custom; + global Boolean datatranslationenabled; + global Boolean defaultedoncreate; + global Object defaultvalue; + global String defaultvalueformula; + global Boolean dependentpicklist; + global Boolean deprecatedandhidden; + global Integer digits; + global Boolean displaylocationindecimal; + global Boolean encrypted; + global Boolean externalid; + global Boolean filterable; + global Schema.FilteredLookupInfo filteredlookupinfo; + global Boolean formulatreatnullnumberaszero; + global Boolean groupable; + global Boolean highscalenumber; + global Boolean htmlformatted; + global Boolean idlookup; + global String inlinehelptext; + global String label; + global Integer length; + global String localname; + global String mask; + global String masktype; + global String name; + global Boolean namefield; + global Boolean namepointing; + global Boolean nillable; + global Boolean permissionable; + global List picklistvalues; + global Integer precision; + global Boolean querybydistance; + global String referencetargetfield; + global List referenceto; + global String relationshipname; + global Integer relationshiporder; + global Boolean restricteddelete; + global Boolean restrictedpicklist; + global Integer scale; + global Boolean searchprefilterable; + global Schema.SoapType soaptype; + global Schema.SObjectField sobjectfield; + global Schema.SObjectType sobjecttype; + global Boolean sortable; + global Schema.DisplayType type; + global Boolean unique; + global Boolean updateable; + global Boolean writerequiresmasterread; + global Integer getByteLength() { } + global String getCalculatedFormula() { } + global String getCompoundFieldName() { } + global Schema.SObjectField getController() { } + global Boolean getDataTranslationEnabled() { } + global Object getDefaultValue() { } + global String getDefaultValueFormula() { } + global Integer getDigits() { } + global Schema.FilteredLookupInfo getFilteredLookupInfo() { } + global String getInlineHelpText() { } + global String getLabel() { } + global Integer getLength() { } + global String getLocalName() { } + global String getMask() { } + global String getMaskType() { } + global String getName() { } + global List getPicklistValues() { } + global Integer getPrecision() { } + global String getReferenceTargetField() { } + global List getReferenceTo() { } + global String getRelationshipName() { } + global Integer getRelationshipOrder() { } + global Schema.SObjectType getSObjectType() { } + global Integer getScale() { } + global Schema.SoapType getSoapType() { } + global Schema.SObjectField getSobjectField() { } + global Schema.DisplayType getType() { } + global Boolean isAccessible() { } + global Boolean isAggregatable() { } + global Boolean isAiPredictionField() { } + global Boolean isAutoNumber() { } + global Boolean isCalculated() { } + global Boolean isCascadeDelete() { } + global Boolean isCaseSensitive() { } + global Boolean isCreateable() { } + global Boolean isCustom() { } + global Boolean isDefaultedOnCreate() { } + global Boolean isDependentPicklist() { } + global Boolean isDeprecatedAndHidden() { } + global Boolean isDisplayLocationInDecimal() { } + global Boolean isEncrypted() { } + global Boolean isExternalId() { } + global Boolean isFilterable() { } + global Boolean isFormulaTreatNullNumberAsZero() { } + global Boolean isGroupable() { } + global Boolean isHighScaleNumber() { } + global Boolean isHtmlFormatted() { } + global Boolean isIdLookup() { } + global Boolean isNameField() { } + global Boolean isNamePointing() { } + global Boolean isNillable() { } + global Boolean isPermissionable() { } + global Boolean isQueryByDistance() { } + global Boolean isRestrictedDelete() { } + global Boolean isRestrictedPicklist() { } + global Boolean isSearchPrefilterable() { } + global Boolean isSortable() { } + global Boolean isUnique() { } + global Boolean isUpdateable() { } + global Boolean isWriteRequiresMasterRead() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Schema/DescribeIconResult.cls b/.sfdx/tools/246/StandardApexLibrary/Schema/DescribeIconResult.cls new file mode 100644 index 0000000..1309afd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Schema/DescribeIconResult.cls @@ -0,0 +1,13 @@ +global class DescribeIconResult { + global String contenttype; + global Integer height; + global String theme; + global String url; + global Integer width; + global String getContentType() { } + global Integer getHeight() { } + global String getTheme() { } + global String getUrl() { } + global Integer getWidth() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Schema/DescribeSObjectResult.cls b/.sfdx/tools/246/StandardApexLibrary/Schema/DescribeSObjectResult.cls new file mode 100644 index 0000000..40c1565 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Schema/DescribeSObjectResult.cls @@ -0,0 +1,75 @@ +global class DescribeSObjectResult { + global Boolean accessible; + global String associateentitytype; + global String associateparententity; + global List childrelationships; + global Boolean createable; + global Boolean custom; + global Boolean customsetting; + global Boolean datatranslationenabled; + global String defaultimplementation; + global Boolean deletable; + global Boolean deprecatedandhidden; + global Boolean feedenabled; + global Schema.SObjectTypeFields fields; + global Schema.SObjectTypeFieldSets fieldsets; + global Boolean hassubtypes; + global String implementedby; + global String implementsinterfaces; + global Boolean isinterface; + global Boolean issubtype; + global String keyprefix; + global String label; + global String labelplural; + global String localname; + global Boolean mergeable; + global Boolean mruenabled; + global String name; + global Boolean queryable; + global List recordtypeinfos; + global Map recordtypeinfosbydevelopername; + global Map recordtypeinfosbyid; + global Map recordtypeinfosbyname; + global Boolean searchable; + global Schema.SObjectDescribeOptions sobjectdescribeoption; + global Schema.SObjectType sobjecttype; + global Boolean undeletable; + global Boolean updateable; + global String getAssociateEntityType() { } + global String getAssociateParentEntity() { } + global List getChildRelationships() { } + global Boolean getDataTranslationEnabled() { } + global String getDefaultImplementation() { } + global Schema.SObjectTypeFieldSets getFieldSets() { } + global Schema.SObjectTypeFields getFields() { } + global Boolean getHasSubtypes() { } + global String getImplementedBy() { } + global String getImplementsInterfaces() { } + global Boolean getIsInterface() { } + global Boolean getIsSubtype() { } + global String getKeyPrefix() { } + global String getLabel() { } + global String getLabelPlural() { } + global String getLocalName() { } + global String getName() { } + global List getRecordTypeInfos() { } + global Map getRecordTypeInfosByDeveloperName() { } + global Map getRecordTypeInfosById() { } + global Map getRecordTypeInfosByName() { } + global Schema.SObjectDescribeOptions getSObjectDescribeOption() { } + global Schema.SObjectType getSObjectType() { } + global Boolean isAccessible() { } + global Boolean isCreateable() { } + global Boolean isCustom() { } + global Boolean isCustomSetting() { } + global Boolean isDeletable() { } + global Boolean isDeprecatedAndHidden() { } + global Boolean isFeedEnabled() { } + global Boolean isMergeable() { } + global Boolean isMruEnabled() { } + global Boolean isQueryable() { } + global Boolean isSearchable() { } + global Boolean isUndeletable() { } + global Boolean isUpdateable() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Schema/DescribeTabResult.cls b/.sfdx/tools/246/StandardApexLibrary/Schema/DescribeTabResult.cls new file mode 100644 index 0000000..ef44bb4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Schema/DescribeTabResult.cls @@ -0,0 +1,25 @@ +global class DescribeTabResult { + global List colors; + global Boolean custom; + global List icons; + global String iconurl; + global String label; + global String miniiconurl; + global String mobileurl; + global String name; + global String sobjectname; + global String tabenumorid; + global String url; + global List getColors() { } + global String getIconUrl() { } + global List getIcons() { } + global String getLabel() { } + global String getMiniIconUrl() { } + global String getMobileUrl() { } + global String getName() { } + global String getSobjectName() { } + global String getTabEnumOrId() { } + global String getUrl() { } + global Boolean isCustom() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Schema/DescribeTabSetResult.cls b/.sfdx/tools/246/StandardApexLibrary/Schema/DescribeTabSetResult.cls new file mode 100644 index 0000000..69b9f0e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Schema/DescribeTabSetResult.cls @@ -0,0 +1,17 @@ +global class DescribeTabSetResult { + global String description; + global String label; + global String logourl; + global String namespace; + global Boolean selected; + global List tabs; + global String tabsetid; + global String getDescription() { } + global String getLabel() { } + global String getLogoUrl() { } + global String getNamespace() { } + global String getTabSetId() { } + global List getTabs() { } + global Boolean isSelected() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Schema/DisplayType.cls b/.sfdx/tools/246/StandardApexLibrary/Schema/DisplayType.cls new file mode 100644 index 0000000..5b2d060 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Schema/DisplayType.cls @@ -0,0 +1,30 @@ +global enum DisplayType { +ADDRESS, +ANYTYPE, +BASE64, +BOOLEAN, +COMBOBOX, +COMPLEXVALUE, +CURRENCY, +DATACATEGORYGROUPREFERENCE, +DATE, +DATETIME, +DOUBLE, +EMAIL, +ENCRYPTEDSTRING, +ID, +INTEGER, +JSON, +LOCATION, +LONG, +MULTIPICKLIST, +PERCENT, +PHONE, +PICKLIST, +REFERENCE, +SOBJECT, +STRING, +TEXTAREA, +TIME, +URL +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Schema/FieldDescribeOptions.cls b/.sfdx/tools/246/StandardApexLibrary/Schema/FieldDescribeOptions.cls new file mode 100644 index 0000000..89fed9e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Schema/FieldDescribeOptions.cls @@ -0,0 +1,4 @@ +global enum FieldDescribeOptions { +DEFAULT, +FULL_DESCRIBE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Schema/FieldSet.cls b/.sfdx/tools/246/StandardApexLibrary/Schema/FieldSet.cls new file mode 100644 index 0000000..2167de5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Schema/FieldSet.cls @@ -0,0 +1,15 @@ +global class FieldSet { + global String description; + global List fields; + global String label; + global String name; + global String namespace; + global Schema.SObjectType sobjecttype; + global String getDescription() { } + global List getFields() { } + global String getLabel() { } + global String getName() { } + global String getNameSpace() { } + global Schema.SObjectType getSObjectType() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Schema/FieldSetMember.cls b/.sfdx/tools/246/StandardApexLibrary/Schema/FieldSetMember.cls new file mode 100644 index 0000000..874a78f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Schema/FieldSetMember.cls @@ -0,0 +1,15 @@ +global class FieldSetMember { + global Boolean dbrequired; + global String fieldpath; + global String label; + global Boolean required; + global Schema.SObjectField sobjectfield; + global Schema.DisplayType type; + global Boolean getDbRequired() { } + global String getFieldPath() { } + global String getLabel() { } + global Boolean getRequired() { } + global Schema.SObjectField getSObjectField() { } + global Schema.DisplayType getType() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Schema/FilteredLookupInfo.cls b/.sfdx/tools/246/StandardApexLibrary/Schema/FilteredLookupInfo.cls new file mode 100644 index 0000000..769e99a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Schema/FilteredLookupInfo.cls @@ -0,0 +1,9 @@ +global class FilteredLookupInfo { + global List controllingfields; + global Boolean dependent; + global Boolean optionalfilter; + global List getControllingFields() { } + global Boolean isDependent() { } + global Boolean isOptionalFilter() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Schema/PicklistEntry.cls b/.sfdx/tools/246/StandardApexLibrary/Schema/PicklistEntry.cls new file mode 100644 index 0000000..0d3144e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Schema/PicklistEntry.cls @@ -0,0 +1,11 @@ +global class PicklistEntry { + global Boolean active; + global Boolean defaultvalue; + global String label; + global String value; + global String getLabel() { } + global String getValue() { } + global Boolean isActive() { } + global Boolean isDefaultValue() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Schema/RecordTypeInfo.cls b/.sfdx/tools/246/StandardApexLibrary/Schema/RecordTypeInfo.cls new file mode 100644 index 0000000..5f7da86 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Schema/RecordTypeInfo.cls @@ -0,0 +1,17 @@ +global class RecordTypeInfo { + global Boolean active; + global Boolean available; + global Boolean defaultrecordtypemapping; + global String developername; + global Boolean master; + global String name; + global Id recordtypeid; + global String getDeveloperName() { } + global String getName() { } + global Id getRecordTypeId() { } + global Boolean isActive() { } + global Boolean isAvailable() { } + global Boolean isDefaultRecordTypeMapping() { } + global Boolean isMaster() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Schema/SObjectDescribeOptions.cls b/.sfdx/tools/246/StandardApexLibrary/Schema/SObjectDescribeOptions.cls new file mode 100644 index 0000000..4a58ea3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Schema/SObjectDescribeOptions.cls @@ -0,0 +1,5 @@ +global enum SObjectDescribeOptions { +DEFAULT, +DEFERRED, +FULL +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Schema/SObjectField.cls b/.sfdx/tools/246/StandardApexLibrary/Schema/SObjectField.cls new file mode 100644 index 0000000..80c129b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Schema/SObjectField.cls @@ -0,0 +1,5 @@ +global class SObjectField { + global Schema.DescribeFieldResult getDescribe(Object options) { } + global Schema.DescribeFieldResult getDescribe() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Schema/SObjectType.cls b/.sfdx/tools/246/StandardApexLibrary/Schema/SObjectType.cls new file mode 100644 index 0000000..9eab107 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Schema/SObjectType.cls @@ -0,0 +1,8 @@ +global class SObjectType { + global Schema.DescribeSObjectResult getDescribe(Object options) { } + global Schema.DescribeSObjectResult getDescribe() { } + global SObject newSObject(Id recordTypeId, Boolean loadDefaultValues) { } + global SObject newSObject(Id id) { } + global SObject newSObject() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Schema/SoapType.cls b/.sfdx/tools/246/StandardApexLibrary/Schema/SoapType.cls new file mode 100644 index 0000000..bbc3e37 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Schema/SoapType.cls @@ -0,0 +1,1308 @@ +global enum SoapType { +ABSTRACT_COMPONENT_INSTANCE, +ABSTRACT_ITEM_INSTANCE, +ABSTRACT_ITEM_INSTANCE_PROPERTY, +ABSTRACT_METADATA_VALUE_WITH_EXTENSIONS, +ABSTRACT_PLACEHOLDER_METADATA, +ACCESS_CONTROL_POLICY, +ACCESS_MAPPING, +ACCOUNT_CRITERIA_BASED_SHARING_RULE, +ACCOUNT_FORECAST_FORMULA, +ACCOUNT_FORECAST_SETTINGS, +ACCOUNT_INSIGHTS_SETTINGS, +ACCOUNT_INTELLIGENCE_SETTINGS, +ACCOUNT_OWNER_SHARING_RULE, +ACCOUNT_RELATIONSHIP_SHARE_RULE, +ACCOUNT_SETTINGS, +ACCOUNT_SHARING_RULES, +ACCOUNT_SHARING_RULE_SETTINGS, +ACCOUNT_TERRITORY_SHARING_RULE, +ACCOUNT_TERRITORY_SHARING_RULES, +ACCT_MGR_TARGET_SETTINGS, +ACTIONS_SETTINGS, +ACTION_LINK_GROUP_TEMPLATE, +ACTION_LINK_TEMPLATE, +ACTION_OVERRIDE, +ACTION_PLAN_TEMPLATE, +ACTION_PLAN_TEMPLATE_ITEM, +ACTION_PLAN_TEMPLATE_ITEM_VALUE, +ACTIVITIES_SETTINGS, +ADDRESS, +ADDRESS_SETTINGS, +ADD_ON_DEFINITION, +ADJUSTMENTS_SETTINGS, +AGENT_CONFIG_ASSIGNMENTS, +AGENT_CONFIG_BUTTONS, +AGENT_CONFIG_PROFILE_ASSIGNMENTS, +AGENT_CONFIG_SKILLS, +AGENT_CONFIG_USER_ASSIGNMENTS, +ANALYSIS_CONFIGURATION, +ANALYTICS_CLOUD_COMPONENT_LAYOUT_ITEM, +ANALYTIC_SNAPSHOT, +ANALYTIC_SNAPSHOT_MAPPING, +ANDROID_PUSH_APPLICATION_SETUP, +ANIMATION_RULE, +ANYTYPE, +APEXCODECOVERAGE_COVERAGE, +APEX_CLASS, +APEX_COMPONENT, +APEX_EMAIL_NOTIFICATION, +APEX_EMAIL_NOTIFICATIONS, +APEX_PAGE, +APEX_SETTINGS, +APEX_TEST_SUITE, +APEX_TRIGGER, +APPLE_DOMAIN_VERIFICATION, +APPLE_PUSH_APPLICATION_SETUP, +APPLICATION, +APPLICATIONS, +APPLICATION_RECORD_TYPE_CONFIG, +APPOINTMENT_SCHEDULING_POLICY, +APPROVAL_ACTION, +APPROVAL_ENTRY_CRITERIA, +APPROVAL_PAGE_FIELD, +APPROVAL_PROCESS, +APPROVAL_STEP, +APPROVAL_STEP_APPROVER, +APPROVAL_STEP_REJECT_BEHAVIOR, +APPROVAL_SUBMITTER, +APPROVER, +APP_ACTION_OVERRIDE, +APP_ANALYTICS_SETTINGS, +APP_BRAND, +APP_CAPABILITY_CONFIG, +APP_COMPONENT_LIST, +APP_EXPERIENCE_SETTINGS, +APP_MENU, +APP_MENU_ITEM, +APP_NOTIFICATION_TYPE, +APP_PREFERENCES, +APP_PROFILE_ACTION_OVERRIDE, +APP_SETTINGS, +APP_WORKSPACE_CONFIG, +ARCHIVE_SETTINGS, +ARRAY, +ARTICLE_TYPE_CHANNEL_DISPLAY, +ARTICLE_TYPE_TEMPLATE, +ASSIGNMENT_RULE, +ASSIGNMENT_RULES, +ASSISTANT_CONTEXT_ITEM, +ASSISTANT_DEFINITION, +ASSISTANT_DEFINITION_PROFILE, +ASSISTANT_RECOMMENDATION_TYPE, +ASSISTANT_SKILL, +ASSISTANT_SKILL_INTENT, +ASSISTANT_SKILL_QUICK_ACTION, +ASSISTANT_SKILL_QUICK_ACTION_PARAM, +ASSISTANT_SKILL_SOBJECT_ACTION, +ASSISTANT_SKILL_SOBJECT_PARAM, +ASSISTANT_VERSION, +ASSISTANT_VERSION_ACTION, +ATTACHMENT, +AUDIENCE, +AUDIENCE_CONTACT_POINT, +AUDIENCE_CRITERIA, +AUDIENCE_CRITERIA_VALUE, +AUDIENCE_CRITERION, +AURA_COMPONENT, +AURA_DEFINITION, +AURA_DEFINITIONS, +AURA_DEFINITION_BUNDLE, +AUTH_PROVIDER, +AUTOMATED_CONTACTS_SETTINGS, +AUTO_RESPONSE_RULE, +AUTO_RESPONSE_RULES, +A_I_APPLICATION, +A_I_APPLICATION_CONFIG, +A_I_ASSISTANT_TEMPLATE, +A_I_DATA_DEFINITION, +A_I_FACTOR_COMPONENT, +A_I_FILTER, +A_I_FILTER_GROUP, +A_I_FILTER_VALUE, +A_I_LIVE_METRIC_DEFINITION, +A_I_MANAGED_FIELD, +A_I_MODEL, +A_I_MODEL_DEFINITION, +A_I_MODEL_FACTOR, +A_I_MODEL_GRAPH, +A_I_MODEL_METRIC, +A_I_PREDICTION_DEFINITION, +A_I_PREDICTION_EXPRESSION, +A_I_PREDICTION_FIELD, +A_I_PREDICTION_TARGET, +A_I_REPLY_RECOMMENDATIONS_SETTINGS, +BASE64, +BASE64BINARY, +BASE_CONVERSATION_VARIABLE, +BASE_ENTITY_RULE, +BASE_ENTITY_RULES, +BASE_FIELD_ASSIGNMENT, +BASE_GLOBAL_VALUE_SET, +BASE_LIVE_AGENT_METADATA, +BASE_NETWORK_PARENTED_METADATA, +BASE_PERMISSION_METADATA, +BASE_PUSH_SETTINGS_METADATA, +BASE_SHARING_RULE, +BASE_TRANSLATION_METADATA, +BASE_VALUE_SET, +BASE_VALUE_TRANSLATION, +BASE_VISUALFORCE_METADATA, +BATCH_CALC_JOB_ABSTRACT_METADATA_VALUE, +BATCH_CALC_JOB_AGGREGATE, +BATCH_CALC_JOB_AGGREGATE_FIELD, +BATCH_CALC_JOB_AGGREGATE_KEY, +BATCH_CALC_JOB_DATASOURCE, +BATCH_CALC_JOB_DATASOURCE_FIELD, +BATCH_CALC_JOB_DEFINITION, +BATCH_CALC_JOB_FILTER, +BATCH_CALC_JOB_FILTER_CRITERIA, +BATCH_CALC_JOB_JOIN_KEY, +BATCH_CALC_JOB_JOIN_RESULT_FIELD, +BATCH_CALC_JOB_PARAMETER, +BATCH_CALC_JOB_PROCESS_TYPE, +BATCH_CALC_JOB_SOURCE_JOIN, +BATCH_CALC_JOB_TRANSFORM, +BATCH_CALC_JOB_TRANSFORM_ADDED_FIELD, +BATCH_CALC_JOB_TRANSFORM_DROPPED_FIELD, +BATCH_CALC_JOB_UNION, +BATCH_CALC_JOB_UNION_SOURCE, +BATCH_CALC_JOB_VERSION, +BATCH_CALC_JOB_WRITEBACK_MAPPING, +BATCH_CALC_JOB_WRITEBACK_OBJECT, +BATCH_DATA_SOURCE, +BATCH_DATA_SRC_FILTER_CRITERIA, +BATCH_PROCESS_JOB_DEFINITION, +BENEFIT_ACTION, +BLACKLISTED_CONSUMER, +BLOCKCHAIN_SETTINGS, +BOOLEAN, +BOT, +BOT_DIALOG, +BOT_DIALOG_GROUP, +BOT_INVOCATION, +BOT_INVOCATION_MAPPING, +BOT_MESSAGE, +BOT_NAVIGATION, +BOT_NAVIGATION_LINK, +BOT_QUICK_REPLY_OPTION, +BOT_SETTINGS, +BOT_STEP, +BOT_STEP_CONDITION, +BOT_VARIABLE_OPERAND, +BOT_VARIABLE_OPERATION, +BOT_VERSION, +BRANCH_MANAGEMENT_SETTINGS, +BRANDING, +BRANDING_SET, +BRANDING_SET_PROPERTY, +BRANDING_VALUE, +BUSINESS_HOURS_ENTRY, +BUSINESS_HOURS_SETTINGS, +BUSINESS_PROCESS, +BUSINESS_PROCESS_DEFINITION, +BUSINESS_PROCESS_FEEDBACK, +BUSINESS_PROCESS_GROUP, +CALL_CENTER, +CALL_CENTER_ITEM, +CALL_CENTER_SECTION, +CALL_COACHING_MEDIA_PROVIDER, +CAMPAIGN_CRITERIA_BASED_SHARING_RULE, +CAMPAIGN_INFLUENCE_MODEL, +CAMPAIGN_OWNER_SHARING_RULE, +CAMPAIGN_SETTINGS, +CAMPAIGN_SHARING_RULES, +CANVAS_METADATA, +CAPABILITIES, +CARE_PROVIDER_SEARCH_CONFIG, +CARE_REQUEST_CONFIGURATION, +CARE_REQUEST_RECORDS, +CARE_SYSTEM_FIELD_MAPPING, +CASE_CLASSIFICATION_SETTINGS, +CASE_CRITERIA_BASED_SHARING_RULE, +CASE_OWNER_SHARING_RULE, +CASE_SETTINGS, +CASE_SHARING_RULES, +CASE_SUBJECT_PARTICLE, +CASE_TEAM, +CASE_TEAM_ROLE, +CERTIFICATE, +CHANGE_EVENT_HEADER, +CHANNEL_LAYOUT, +CHANNEL_LAYOUT_ITEM, +CHANNEL_OBJECT_LINKING_RULE, +CHART_SUMMARY, +CHATTER_ANSWERS_REPUTATION_LEVEL, +CHATTER_ANSWERS_SETTINGS, +CHATTER_EMAILS_M_D_SETTINGS, +CHATTER_EXTENSION, +CHATTER_MOBILE_SETTINGS, +CHATTER_SETTINGS, +CLEAN_DATA_SERVICE, +CLEAN_RULE, +CLOUD_SERVICE_PROVIDER, +CLOUD_SERVICE_PROVIDER_API, +CODE_BUNDLE, +COMMUNITIES_SETTINGS, +COMMUNITY, +COMMUNITY_A_I_MODEL_MAPPING, +COMMUNITY_CUSTOM_THEME_LAYOUT_TYPE, +COMMUNITY_ROLES, +COMMUNITY_TEMPLATE_BUNDLE_INFO, +COMMUNITY_TEMPLATE_DEFINITION, +COMMUNITY_TEMPLATE_PAGE_SETTING, +COMMUNITY_THEME_BUNDLE_INFO, +COMMUNITY_THEME_DEFINITION, +COMMUNITY_THEME_ROUTE_OVERRIDE, +COMMUNITY_THEME_SETTING, +COMPACT_LAYOUT, +COMPANY_SETTINGS, +COMPONENT_INSTANCE, +COMPONENT_INSTANCE_PROPERTY, +COMPONENT_INSTANCE_PROPERTY_LIST, +COMPONENT_INSTANCE_PROPERTY_LIST_ITEM, +CONNECTED_APP, +CONNECTED_APP_ATTRIBUTE, +CONNECTED_APP_CANVAS_CONFIG, +CONNECTED_APP_IP_RANGE, +CONNECTED_APP_MOBILE_DETAIL_CONFIG, +CONNECTED_APP_OAUTH_ASSET_TOKEN, +CONNECTED_APP_OAUTH_CONFIG, +CONNECTED_APP_OAUTH_ID_TOKEN, +CONNECTED_APP_OAUTH_POLICY, +CONNECTED_APP_SAML_CONFIG, +CONNECTED_APP_SESSION_POLICY, +CONNECTED_APP_SETTINGS, +CONNECTIVITY_ATTRIBUTES_METADATA, +CONNECTIVITY_DEV_CONFIG_METADATA, +CONSOLE_COMPONENT, +CONTACT_CRITERIA_BASED_SHARING_RULE, +CONTACT_OWNER_SHARING_RULE, +CONTACT_SHARING_RULES, +CONTAINER, +CONTENT_ASSET, +CONTENT_ASSET_LINK, +CONTENT_ASSET_RELATIONSHIPS, +CONTENT_ASSET_VERSION, +CONTENT_ASSET_VERSIONS, +CONTENT_SETTINGS, +CONTRACT_SETTINGS, +CONVERSATIONAL_INTELLIGENCE_SETTINGS, +CONVERSATION_CONTEXT_VARIABLE, +CONVERSATION_CONTEXT_VARIABLE_MAPPING, +CONVERSATION_DEFINITION_NLP_PROVIDER, +CONVERSATION_MESSAGE_DEFINITION, +CONVERSATION_MESSAGE_LAYOUT, +CONVERSATION_MESSAGE_LAYOUT_ITEM, +CONVERSATION_MESSAGE_LAYOUT_OBJECT_VALUE, +CONVERSATION_MESSAGE_LAYOUT_PRIMITIVE_VALUE, +CONVERSATION_MESSAGE_LAYOUT_VALUE, +CONVERSATION_RECORD_LOOKUP, +CONVERSATION_RECORD_LOOKUP_CONDITION, +CONVERSATION_RECORD_LOOKUP_FIELD, +CONVERSATION_SYSTEM_DIALOG, +CONVERSATION_SYSTEM_MESSAGE, +CONVERSATION_SYSTEM_MESSAGE_MAPPING, +CONVERSATION_VARIABLE, +CONVERSATION_VENDOR_FIELD_DEF, +CONVERSATION_VENDOR_INFO, +COUNTRIES_AND_STATES, +COUNTRY, +CRITERIA_BASED_SHARING_RULE, +CSP_TRUSTED_SITE, +CURRENCY_SETTINGS, +CUSTOMER_DATA_PLATFORM_SETTINGS, +CUSTOM_APPLICATION, +CUSTOM_APPLICATION_COMPONENT, +CUSTOM_APPLICATION_COMPONENTS, +CUSTOM_APPLICATION_TRANSLATION, +CUSTOM_CONSOLE_COMPONENTS, +CUSTOM_DATA_TYPE, +CUSTOM_DATA_TYPE_COMPONENT, +CUSTOM_DATA_TYPE_COMPONENT_TRANSLATION, +CUSTOM_DATA_TYPE_TRANSLATION, +CUSTOM_FEED_FILTER, +CUSTOM_FIELD, +CUSTOM_FIELD_TRANSLATION, +CUSTOM_HELP_MENU_ITEM, +CUSTOM_HELP_MENU_SECTION, +CUSTOM_HTTP_HEADER, +CUSTOM_INDEX, +CUSTOM_LABEL, +CUSTOM_LABELS, +CUSTOM_LABEL_TRANSLATION, +CUSTOM_METADATA, +CUSTOM_METADATA_VALUE, +CUSTOM_NOTIFICATION_TYPE, +CUSTOM_OBJECT, +CUSTOM_OBJECT_CRITERIA_BASED_SHARING_RULE, +CUSTOM_OBJECT_OWNER_SHARING_RULE, +CUSTOM_OBJECT_SHARING_RULES, +CUSTOM_OBJECT_TRANSLATION, +CUSTOM_PAGE_WEB_LINK, +CUSTOM_PAGE_WEB_LINK_TRANSLATION, +CUSTOM_PERMISSION, +CUSTOM_PERMISSION_DEPENDENCY_REQUIRED, +CUSTOM_SHORTCUT, +CUSTOM_SITE, +CUSTOM_TAB, +CUSTOM_TAB_TRANSLATION, +CUSTOM_VALUE, +C_M_S_CONNECT_ASSET, +C_M_S_CONNECT_LANGUAGE, +C_M_S_CONNECT_PERSONALIZATION, +C_M_S_CONNECT_RESOURCE_DEFINITION, +C_M_S_CONNECT_RESOURCE_TYPE, +C_M_S_CONNECT_SOURCE, +DASHBOARD, +DASHBOARD_COMPONENT, +DASHBOARD_COMPONENT_COLUMN, +DASHBOARD_COMPONENT_GROUPING_SORT, +DASHBOARD_COMPONENT_GROUPING_SORT_PROPERTIES, +DASHBOARD_COMPONENT_SECTION, +DASHBOARD_COMPONENT_SORT_INFO, +DASHBOARD_FILTER, +DASHBOARD_FILTER_COLUMN, +DASHBOARD_FILTER_OPTION, +DASHBOARD_FLEX_TABLE_COMPONENT_PROPERTIES, +DASHBOARD_FOLDER, +DASHBOARD_GRID_COMPONENT, +DASHBOARD_GRID_LAYOUT, +DASHBOARD_MOBILE_SETTINGS, +DASHBOARD_TABLE_COLUMN, +DATA_CATEGORY, +DATA_CATEGORY_GROUP, +DATA_CLASSIFICATION, +DATA_CONNECTOR_M_C, +DATA_CONNECTOR_S3, +DATA_CONNECTOR_SFTP, +DATA_CONNECTOR_UPLOAD, +DATA_CON_SUP_DATA_SET_BUNDLE, +DATA_MODEL_TAXONOMY, +DATA_OBJECT_CATEGORY, +DATA_PIPELINE, +DATA_PLATFORM, +DATA_PLATFORM_DATA_SET, +DATA_PLAT_DATA_SET_BUNDLE, +DATA_SOURCE, +DATA_SOURCE_OBJECT, +DATA_SOURCE_SETTINGS, +DATA_SOURCE_TENANT, +DATA_STREAM_DEFINITION, +DATE, +DATETIME, +DECIMAL, +DECISION_TABLE, +DECISION_TABLE_DATASET_LINK, +DECISION_TABLE_PARAMETER, +DECISION_TBL_DATASET_PARAMETER, +DEFAULT_SHORTCUT, +DELEGATE_GROUP, +DELETED_MEMBERS, +DEPLOYMENT_SETTINGS, +DEPLOY_DETAILS, +DEV_HUB_SETTINGS, +DISCOVERY_A_I_MODEL, +DISCOVERY_CUSTOM_PRESCRIBABLE_FIELD_DEFINITION, +DISCOVERY_DEPLOYED_MODEL, +DISCOVERY_FIELD_MAP, +DISCOVERY_FILTER, +DISCOVERY_FILTER_VALUE, +DISCOVERY_GOAL, +DISCOVERY_GOAL_OUTCOME, +DISCOVERY_MODEL_FIELD, +DISCOVERY_PRESCRIBABLE_FIELD, +DISCOVERY_SETTINGS, +DIVISION, +DOCUMENT, +DOCUMENT_CHECKLIST_SETTINGS, +DOCUMENT_FOLDER, +DOCUMENT_TYPE, +DOMAIN_PROVISION, +DOMAIN_WHITELIST, +DOUBLE, +DPE_TO_RECIPE_TRANSLATE_ABSTRACT_METADATA_VALUE, +DUPLICATE_RULE, +DUPLICATE_RULE_FILTER, +DUPLICATE_RULE_FILTER_ITEM, +DUPLICATE_RULE_MATCH_RULE, +DURABLE_ID_LIST, +DYNAMIC_TRIGGER, +ECLAIR_GEO_DATA, +ECLAIR_MAP, +EDITION_DEFINITION, +EINSTEIN_ASSISTANT_SETTINGS, +EMAIL_ADMINISTRATION_SETTINGS, +EMAIL_FOLDER, +EMAIL_INTEGRATION_SETTINGS, +EMAIL_SERVICES_ADDRESS, +EMAIL_SERVICES_FUNCTION, +EMAIL_TEMPLATE, +EMAIL_TEMPLATE_FOLDER, +EMAIL_TEMPLATE_SETTINGS, +EMAIL_TO_CASE_ROUTING_ADDRESS, +EMAIL_TO_CASE_SETTINGS, +EMBEDDED_SERVICE_APPOINTMENT_SETTINGS, +EMBEDDED_SERVICE_BRANDING, +EMBEDDED_SERVICE_CONFIG, +EMBEDDED_SERVICE_CUSTOMIZATION, +EMBEDDED_SERVICE_CUSTOM_COMPONENT, +EMBEDDED_SERVICE_CUSTOM_LABEL, +EMBEDDED_SERVICE_FIELD_SERVICE, +EMBEDDED_SERVICE_FLOW, +EMBEDDED_SERVICE_FLOW_CONFIG, +EMBEDDED_SERVICE_LAYOUT, +EMBEDDED_SERVICE_LAYOUT_RULE, +EMBEDDED_SERVICE_LIVE_AGENT, +EMBEDDED_SERVICE_MENU_ITEM, +EMBEDDED_SERVICE_MENU_SETTINGS, +EMBEDDED_SERVICE_MESSAGING_CHANNEL, +EMBEDDED_SERVICE_MOBILE_PLATFORM, +EMBEDDED_SERVICE_QUICK_ACTION, +EMBEDDED_SERVICE_RESOURCE, +EMPLOYEE_USER_SETTINGS, +ENCRYPTION_KEY_SETTINGS, +ENHANCED_NOTES_SETTINGS, +ENRICHED_FIELD, +ENTITLEMENT_PROCESS, +ENTITLEMENT_PROCESS_MILESTONE_ITEM, +ENTITLEMENT_PROCESS_MILESTONE_TIME_TRIGGER, +ENTITLEMENT_SETTINGS, +ENTITLEMENT_TEMPLATE, +ENTITY_ARCHIVING_SETUP, +ENTITY_IMPLEMENTS, +ESCALATION_ACTION, +ESCALATION_RULE, +ESCALATION_RULES, +ESSENTIALS_SETTINGS, +ESSENTIALS_TRIAL_ORG_SETTINGS, +EVENT_DELIVERY, +EVENT_PARAMETER_MAP, +EVENT_SETTINGS, +EVENT_SUBSCRIPTION, +EVENT_TYPE, +EVENT_TYPE_PARAMETER, +EXECUTION_OVERLAY_APEX_RESULT, +EXECUTION_OVERLAY_HEAPDUMP, +EXECUTION_OVERLAY_SOQL_RESULT, +EXPERIENCE_BUNDLE, +EXPERIENCE_BUNDLE_SETTINGS, +EXPERIENCE_RESOURCE, +EXPERIENCE_RESOURCES, +EXTERNAL_A_I_MODEL, +EXTERNAL_DATA_CONNECTOR, +EXTERNAL_DATA_SOURCE, +EXTERNAL_DATA_TRAN_FIELD, +EXTERNAL_DATA_TRAN_OBJECT, +EXTERNAL_SERVICES_SETTINGS, +EXTERNAL_SERVICE_OPERATION, +EXTERNAL_SERVICE_REGISTRATION, +E_A_C_SETTINGS, +FEATURE_PARAMETER_BOOLEAN, +FEATURE_PARAMETER_DATE, +FEATURE_PARAMETER_INTEGER, +FEED_FILTER_CRITERION, +FEED_ITEM_SETTINGS, +FEED_LAYOUT, +FEED_LAYOUT_COMPONENT, +FEED_LAYOUT_FILTER, +FIELDS_INFO, +FIELD_CLASSIFICATION_SETTING, +FIELD_CRITERIA, +FIELD_CRITERION, +FIELD_IMPLEMENTS, +FIELD_INSTANCE, +FIELD_INSTANCE_PROPERTY, +FIELD_MAPPING, +FIELD_MAPPING_FIELD, +FIELD_MAPPING_ROW, +FIELD_OVERRIDE, +FIELD_SERVICE_MOBILE_EXTENSION, +FIELD_SERVICE_SETTINGS, +FIELD_SET, +FIELD_SET_ITEM, +FIELD_SET_TRANSLATION, +FIELD_SOURCE_TARGET_MAP, +FIELD_SRC_TRGT_RELATIONSHIP, +FIELD_VALUE, +FILES_CONNECT_SETTINGS, +FILE_TYPE_DISPOSITION_ASSIGNMENT_BEAN, +FILE_UPLOAD_AND_DOWNLOAD_SECURITY_SETTINGS, +FILTER_ITEM, +FIND_SIMILAR_OPP_FILTER, +FISCAL_YEAR_SETTINGS, +FLEXI_PAGE, +FLEXI_PAGE_REGION, +FLEXI_PAGE_TEMPLATE_INSTANCE, +FLOAT, +FLOW, +FLOW_ABSTRACT_PARAMETER, +FLOW_ABSTRACT_VALUE_ELEMENT, +FLOW_ACTION_CALL, +FLOW_ACTION_CALL_INPUT_PARAMETER, +FLOW_ACTION_CALL_OUTPUT_PARAMETER, +FLOW_APEX_PLUGIN_CALL, +FLOW_APEX_PLUGIN_CALL_INPUT_PARAMETER, +FLOW_APEX_PLUGIN_CALL_OUTPUT_PARAMETER, +FLOW_ASSIGNMENT, +FLOW_ASSIGNMENT_ITEM, +FLOW_BASE_ELEMENT, +FLOW_BASE_METADATA_VALUE, +FLOW_CATEGORY, +FLOW_CATEGORY_ITEM, +FLOW_CATEGORY_ITEMS, +FLOW_CHOICE, +FLOW_CHOICE_TRANSLATION, +FLOW_CHOICE_USER_INPUT, +FLOW_CHOICE_USER_INPUT_TRANSLATION, +FLOW_COLLECTION_PROCESSOR, +FLOW_COLLECTION_SORT_OPTION, +FLOW_CONDITION, +FLOW_CONNECTOR, +FLOW_CONSTANT, +FLOW_DATA_TYPE_MAPPING, +FLOW_DECISION, +FLOW_DEFINITION, +FLOW_DEFINITION_TRANSLATION, +FLOW_DYNAMIC_CHOICE_SET, +FLOW_ELEMENT, +FLOW_ELEMENT_REFERENCE_OR_VALUE, +FLOW_ELEMENT_SUBTYPE_DEFINITION, +FLOW_FORMULA, +FLOW_INPUT_FIELD_ASSIGNMENT, +FLOW_INPUT_VALIDATION_RULE, +FLOW_INPUT_VALIDATION_RULE_TRANSLATION, +FLOW_LOOP, +FLOW_METADATA_VALUE, +FLOW_NODE, +FLOW_OUTPUT_FIELD_ASSIGNMENT, +FLOW_RECORD_CREATE, +FLOW_RECORD_DELETE, +FLOW_RECORD_FILTER, +FLOW_RECORD_LOOKUP, +FLOW_RECORD_UPDATE, +FLOW_RULE, +FLOW_SCHEDULE, +FLOW_SCHEDULED_PATH, +FLOW_SCREEN, +FLOW_SCREEN_FIELD, +FLOW_SCREEN_FIELD_INPUT_PARAMETER, +FLOW_SCREEN_FIELD_OUTPUT_PARAMETER, +FLOW_SCREEN_FIELD_TRANSLATION, +FLOW_SCREEN_RULE, +FLOW_SCREEN_RULE_ACTION, +FLOW_SCREEN_TRANSLATION, +FLOW_SETTINGS, +FLOW_STAGE, +FLOW_STAGE_TRANSLATION, +FLOW_START, +FLOW_STEP, +FLOW_STEPPED_STAGE, +FLOW_STEPPED_STAGE_ITEM, +FLOW_STEPPED_STAGE_ITEM_INPUT_PARAMETER, +FLOW_SUBFLOW, +FLOW_SUBFLOW_INPUT_ASSIGNMENT, +FLOW_SUBFLOW_OUTPUT_ASSIGNMENT, +FLOW_TEXT_TEMPLATE, +FLOW_TEXT_TEMPLATE_TRANSLATION, +FLOW_TRANSLATION, +FLOW_TRIGGER_TYPE_DEFINITION, +FLOW_VARIABLE, +FLOW_VISIBILITY_RULE, +FLOW_WAIT, +FLOW_WAIT_EVENT, +FLOW_WAIT_EVENT_INPUT_PARAMETER, +FLOW_WAIT_EVENT_OUTPUT_PARAMETER, +FOLDER, +FOLDER_AWARE_METADATA, +FOLDER_SHARE, +FORECASTING_CATEGORY_MAPPING, +FORECASTING_DISPLAYED_FAMILY_SETTINGS, +FORECASTING_OBJECT_LIST_LABEL_MAPPING, +FORECASTING_OBJECT_LIST_SELECTED_SETTINGS, +FORECASTING_OBJECT_LIST_SETTINGS, +FORECASTING_OBJECT_LIST_UNSELECTED_SETTINGS, +FORECASTING_SETTINGS, +FORECASTING_SOURCE_DEFINITION, +FORECASTING_TYPE_OBJECT_LIST_SETTINGS, +FORECASTING_TYPE_SETTINGS, +FORECASTING_TYPE_SOURCE, +FORECAST_RANGE_SETTINGS, +FORM, +FORMULA_SETTINGS, +FORM_COLUMN, +FORM_ITEM, +FORM_SECTION, +FTEST_COMPLEX_TYPE, +FTEST_FIRST_TOP_LEVEL, +FTEST_GENERATED_ENTITY_COMPLEX_VALUE_TYPE, +FTEST_GENERATED_ENTITY_COMPLEX_VALUE_TYPE2, +FTEST_SECOND_TOP_LEVEL, +FTEST_TOP_LEVEL_WITH_CRUD, +FUNCTION_REFERENCE, +F_TEST_FIELD_MAPPING_MD, +F_TEST_TOOLING_F_L_U, +GATEWAY_PROVIDER_PAYMENT_METHOD_TYPE, +GLOBAL_PICKLIST, +GLOBAL_PICKLIST_TRANSLATION, +GLOBAL_PICKLIST_VALUE, +GLOBAL_QUICK_ACTION_TRANSLATION, +GLOBAL_VALUE_SET, +GLOBAL_VALUE_SET_TRANSLATION, +GOOGLE_APPS_SETTINGS, +GROUP, +HIGH_VELOCITY_SALES_SETTINGS, +HISTORY_RETENTION_POLICY, +HOLIDAY, +HOME_PAGE_COMPONENT, +HOME_PAGE_LAYOUT, +ICON, +ID, +IDEAS_SETTINGS, +IDEA_REPUTATION_LEVEL, +IFRAME_WHITE_LIST_URL, +IFRAME_WHITE_LIST_URL_SETTINGS, +IF_EXPRESSION, +INBOUND_CERTIFICATE, +INBOUND_NETWORK_CONNECTION, +INBOUND_NETWORK_CONN_PROPERTY, +INCLUDED_FEATURE, +INCLUDED_PLATFORM_LICENSE_DEFINITION, +INCLUDED_USER_LICENSE_DEFINITION, +INDEX, +INDEX_FIELD, +INDUSTRIES_MANUFACTURING_SETTINGS, +INDUSTRIES_SETTINGS, +INSIGHTS_EXTERNAL_DATA_PART_METADATA, +INSTALLED_PACKAGE, +INTEGER, +INTEGRATION_HUB_SETTINGS, +INTEGRATION_HUB_SETTINGS_TYPE, +INTERNAL_DATA_CONNECTOR, +INTERNAL_ORGANIZATION, +INVENTORY_SETTINGS, +INVOCABLE_ACTION_SETTINGS, +IO_T_SETTINGS, +IP_RANGE, +ITEM_INSTANCE, +JSON, +JUNCTION_ID_LIST_NAMES, +KEYBOARD_SHORTCUTS, +KEYWORD, +KEYWORD_LIST, +KNOWLEDGE_ANSWER_SETTINGS, +KNOWLEDGE_CASE_FIELD, +KNOWLEDGE_CASE_FIELDS_SETTINGS, +KNOWLEDGE_CASE_SETTINGS, +KNOWLEDGE_COMMUNITIES_SETTINGS, +KNOWLEDGE_LANGUAGE, +KNOWLEDGE_LANGUAGE_SETTINGS, +KNOWLEDGE_SETTINGS, +KNOWLEDGE_SITES_SETTINGS, +KNOWLEDGE_SUGGESTED_ARTICLES_SETTINGS, +KNOWLEDGE_WORK_ORDER_FIELD, +KNOWLEDGE_WORK_ORDER_FIELDS_SETTINGS, +KNOWLEDGE_WORK_ORDER_LINE_ITEM_FIELD, +KNOWLEDGE_WORK_ORDER_LINE_ITEM_FIELDS_SETTINGS, +LANGUAGE_SETTINGS, +LAYOUT, +LAYOUT_COLUMN, +LAYOUT_ITEM, +LAYOUT_SECTION, +LAYOUT_SECTION_TRANSLATION, +LAYOUT_TRANSLATION, +LEAD_CONFIG_SETTINGS, +LEAD_CONVERT_SETTINGS, +LEAD_CRITERIA_BASED_SHARING_RULE, +LEAD_OWNER_SHARING_RULE, +LEAD_SHARING_RULES, +LETTERHEAD, +LETTERHEAD_HEADER_FOOTER, +LETTERHEAD_LINE, +LICENSED_CUSTOM_PERMISSIONS, +LICENSE_DEFINITION, +LIGHTNING_BOLT, +LIGHTNING_BOLT_ABSTRACT, +LIGHTNING_BOLT_FEATURE, +LIGHTNING_BOLT_FEATURES, +LIGHTNING_BOLT_IMAGE, +LIGHTNING_BOLT_IMAGES, +LIGHTNING_BOLT_ITEM, +LIGHTNING_BOLT_ITEMS, +LIGHTNING_COMPONENT, +LIGHTNING_COMPONENT_BUNDLE, +LIGHTNING_EXPERIENCE_SETTINGS, +LIGHTNING_EXPERIENCE_THEME, +LIGHTNING_ONBOARDING_CONFIG, +LIST_PLACEMENT, +LIST_VIEW, +LIST_VIEW_FILTER, +LIVE_AGENT_CONFIG, +LIVE_AGENT_SETTINGS, +LIVE_CHAT_AGENT_CONFIG, +LIVE_CHAT_BUTTON, +LIVE_CHAT_BUTTON_DEPLOYMENTS, +LIVE_CHAT_BUTTON_SKILLS, +LIVE_CHAT_DEPLOYMENT, +LIVE_CHAT_DEPLOYMENT_DOMAIN_WHITELIST, +LIVE_CHAT_SENSITIVE_DATA_RULE, +LIVE_MESSAGE_SETTINGS, +LOCALIZED_VALUE, +LOCAL_ML_DOMAIN, +LOCATION, +LOGIN_FLOW, +LONG, +LOOKUP_FILTER, +LOOKUP_FILTER_TRANSLATION, +LWC_RESOURCE, +LWC_RESOURCES, +MACRO_SETTINGS, +MANAGED_CONTENT_NODE_TYPE, +MANAGED_CONTENT_TYPE, +MANAGED_TOPIC, +MANAGED_TOPICS, +MAPS_AND_LOCATION_SETTINGS, +MAP_ENTRY, +MAP_EXPRESSION, +MARKETING_RESOURCE_TYPE, +MARKET_AUDIENCE_DEFINITION, +MARKET_AUDIENCE_FIELD, +MATCHING_RULE, +MATCHING_RULES, +MATCHING_RULE_ITEM, +METADATA, +METADATA_FOR_SETTINGS, +METADATA_VALUE, +METADATA_WITH_CONTENT, +METADATA_WITH_ONLY_HARDCODED_FILES, +MIGRATION_ALIAS, +MILESTONE_TYPE, +MINI_LAYOUT, +MKT_CALCULATED_INSIGHT_ATTRIBUTES, +MKT_CALCULATED_INSIGHT_FIELD_ATTRIBUTES, +MKT_CALCULATED_INSIGHT_OBJECT, +MKT_DATA_LAKE_ATTRIBUTES, +MKT_DATA_LAKE_FIELD_ATTRIBUTES, +MKT_DATA_LAKE_OBJECT, +MKT_DATA_MODEL_ATTRIBUTES, +MKT_DATA_MODEL_FIELD_ATTRIBUTES, +MKT_DATA_MODEL_OBJECT, +MKT_DATA_TRAN_FIELD, +MKT_DATA_TRAN_OBJECT, +ML_DOMAIN, +ML_INTENT, +ML_INTENT_UTTERANCE, +ML_RELATED_INTENT, +ML_SLOT, +ML_SLOT_CLASS, +ML_SLOT_CLASS_VALUE, +MOBILE_APPLICATION_DETAIL, +MOBILE_PUSH_NOTIFICATION_CREDENTIAL, +MOBILE_SECURITY_ASSIGNMENT, +MOBILE_SECURITY_POLICY, +MOBILE_SECURITY_POLICY_SET, +MOBILE_SETTINGS, +MODERATED_ENTITY_FIELD, +MODERATION_RULE, +MODULE, +MODULES, +MODULE_DEPENDENCIES, +MODULE_REF, +MODULE_REFS, +MUTING_PERMISSION_SET, +MY_DOMAIN_DISCOVERABLE_LOGIN, +MY_DOMAIN_SETTINGS, +M_L_DATA_DEFINITION, +M_L_FIELD, +M_L_FILTER, +M_L_FILTER_VALUE, +M_L_PREDICTION_DEFINITION, +M_L_RECOMMENDATION_DEFINITION, +NAMED_CREDENTIAL, +NAMED_FILTER, +NAMED_FILTER_TRANSLATION, +NAME_SETTINGS, +NAVIGATION_LINK_SET, +NAVIGATION_MENU, +NAVIGATION_MENU_ITEM, +NAVIGATION_MENU_ITEM_BRANDING, +NAVIGATION_SUB_MENU, +NETWORK, +NETWORK_ACCESS, +NETWORK_BRANDING, +NETWORK_MEMBER_GROUP, +NETWORK_PAGE_OVERRIDE, +NETWORK_TAB_SET, +NEXT_AUTOMATED_APPROVER, +NOTIFICATIONS_SETTINGS, +NOTIFICATION_CHANNELS, +NOTIFICATION_TYPE_CONFIG, +NOTIFICATION_TYPE_SETTINGS, +NO_ACCESS_FILTERABLE, +OAUTH_CUSTOM_SCOPE, +OAUTH_CUSTOM_SCOPE_APP, +OBJECT_CHILD_TRANSLATION, +OBJECT_HIERARCHY_RELATIONSHIP, +OBJECT_LINKING_SETTINGS, +OBJECT_MAPPING, +OBJECT_MAPPING_FIELD, +OBJECT_NAME_CASE_VALUE, +OBJECT_RELATIONSHIP, +OBJECT_SOURCE_TARGET_MAP, +OBJECT_USAGE, +OCR_SAMPLE_DOCUMENT, +OCR_SAMPLE_DOCUMENT_FIELD, +OCR_TARGET_OBJECT, +OCR_TARGET_OBJ_FIELD_MAPPING, +OCR_TEMPLATE, +OCR_TEMPLATE_SAMPLE_DOCUMENT, +OLD_SHARING_RULES, +OMNI_CHANNEL_SETTINGS, +OMNI_INTERACTION_CONFIG, +OPERATION_PARAMETERS, +OPPORTUNITY_CRITERIA_BASED_SHARING_RULE, +OPPORTUNITY_INSIGHTS_SETTINGS, +OPPORTUNITY_LIST_FIELDS_LABEL_MAPPING, +OPPORTUNITY_LIST_FIELDS_SELECTED_SETTINGS, +OPPORTUNITY_LIST_FIELDS_UNSELECTED_SETTINGS, +OPPORTUNITY_OWNER_SHARING_RULE, +OPPORTUNITY_SCORE_SETTINGS, +OPPORTUNITY_SETTINGS, +OPPORTUNITY_SHARING_RULES, +ORCHESTRATION, +ORCHESTRATION_CONTEXT, +ORCHESTRATION_CONTEXT_DATASET, +ORCHESTRATION_CONTEXT_EVENT, +ORDER_MANAGEMENT_SETTINGS, +ORDER_SETTINGS, +ORG_ENTITY_FEATURE_PAYLOAD, +ORG_FEATURE_PAYLOAD, +OUTBOUND_NETWORK_CONNECTION, +OUTBOUND_NETWORK_CONN_PROPERTY, +OVERRIDE_PRESET, +OWNER_SHARING_RULE, +PACKAGE, +PACKAGE2_VERSION_CODE_COVERAGE, +PACKAGE_BRANDING_SETTINGS, +PACKAGE_EXTENSION, +PACKAGE_ID_MAPPING, +PACKAGE_LOCALIZATION, +PACKAGE_TYPE_MEMBERS, +PACKAGE_UPLOAD_ERROR, +PACKAGE_UPLOAD_ERRORS, +PACKAGE_VERSION, +PACKAGING_GACK_EMAIL, +PAGES_TO_OPEN, +PARDOT_EINSTEIN_SETTINGS, +PARDOT_SETTINGS, +PARDOT_TENANT, +PARTICIPANT_ROLE, +PARTY_DATA_MODEL_SETTINGS, +PARTY_ID_MATCH_RULE_CRITERIA, +PARTY_MATCH_RULE, +PARTY_MATCH_RULE_CRITERIA, +PARTY_RECON_RULE, +PARTY_RECON_RULE_SEQ, +PASSWORD_POLICIES, +PATH_ASSISTANT, +PATH_ASSISTANT_SETTINGS, +PATH_ASSISTANT_STEP, +PAYMENT_GATEWAY_PROVIDER, +PERMISSION_SET, +PERMISSION_SET_APEX_CLASS_ACCESS, +PERMISSION_SET_APEX_PAGE_ACCESS, +PERMISSION_SET_APPLICATION_VISIBILITY, +PERMISSION_SET_CUSTOM_METADATA_TYPE_ACCESS, +PERMISSION_SET_CUSTOM_PERMISSIONS, +PERMISSION_SET_CUSTOM_SETTING_ACCESS, +PERMISSION_SET_EXTERNAL_DATA_SOURCE_ACCESS, +PERMISSION_SET_FIELD_PERMISSIONS, +PERMISSION_SET_FLOW_ACCESS, +PERMISSION_SET_GROUP, +PERMISSION_SET_LICENSE, +PERMISSION_SET_OBJECT_PERMISSIONS, +PERMISSION_SET_RECORD_TYPE_VISIBILITY, +PERMISSION_SET_TAB_SETTING, +PERMISSION_SET_USER_PERMISSION, +PERSONALIZATION_ACTIVITY, +PERSONALIZATION_TARGET_INFO, +PERSONALIZATION_TARGET_INFOS, +PERSONALIZATION_TARGET_SET, +PERSON_LIST_SETTINGS, +PICKLIST, +PICKLIST_SETTINGS, +PICKLIST_VALUE, +PICKLIST_VALUE_TRANSLATION, +PLATFORM_ACTION_LIST, +PLATFORM_ACTION_LIST_ITEM, +PLATFORM_CACHE_PARTITION, +PLATFORM_CACHE_PARTITION_TYPE, +PLATFORM_ENCRYPTION_SETTINGS, +PLATFORM_EVENT_CHANNEL, +PLATFORM_EVENT_CHANNEL_MEMBER, +PLATFORM_EVENT_CHANNEL_SELECTED_ENTITY, +PLATFORM_EVENT_ENRICHMENT_FIELD, +PLATFORM_EVENT_SUBSCRIBER_CONFIG, +PLATFORM_LICENSE_DEFINITION, +PORTAL, +PORTALS_SETTINGS, +PORTAL_DELEGABLE_PERMISSION_SET, +POST_TEMPLATE, +PREDICTION_BUILDER_SETTINGS, +PRESENCE_CONFIG_ASSIGNMENTS, +PRESENCE_CONFIG_PROFILE_ASSIGNMENTS, +PRESENCE_CONFIG_USER_ASSIGNMENTS, +PRESENCE_DECLINE_REASON, +PRESENCE_USER_CONFIG, +PRIMARY_TAB_COMPONENTS, +PRIVACY_SETTINGS, +PROCESS_APPROVER, +PROCESS_DEFINITION, +PROCESS_NODE, +PROCESS_PALETTE, +PROCESS_TRANSITION, +PROCESS_TYPE_DEFINITION, +PRODUCT_FAMILY_USAGE, +PRODUCT_SETTINGS, +PROFILE, +PROFILE_ACTION_OVERRIDE, +PROFILE_APEX_CLASS_ACCESS, +PROFILE_APEX_PAGE_ACCESS, +PROFILE_APPLICATION_VISIBILITY, +PROFILE_CATEGORY_GROUP_VISIBILITY, +PROFILE_CUSTOM_METADATA_TYPE_ACCESS, +PROFILE_CUSTOM_PERMISSIONS, +PROFILE_CUSTOM_SETTING_ACCESS, +PROFILE_EXTERNAL_DATA_SOURCE_ACCESS, +PROFILE_FIELD_LEVEL_SECURITY, +PROFILE_FLOW_ACCESS, +PROFILE_LAYOUT_ASSIGNMENT, +PROFILE_LOGIN_HOURS, +PROFILE_LOGIN_IP_RANGE, +PROFILE_MAPPING, +PROFILE_OBJECT_PERMISSIONS, +PROFILE_PASSWORD_POLICY, +PROFILE_RECORD_TYPE_VISIBILITY, +PROFILE_SEARCH_LAYOUTS, +PROFILE_SESSION_SETTING, +PROFILE_TAB_VISIBILITY, +PROFILE_USER_PERMISSION, +PROMPT, +PROMPT_TRANSLATION, +PROMPT_VERSION, +PROMPT_VERSION_TRANSLATION, +PUBLIC_GROUPS, +PUSH_BACK_DEFINITION, +PUSH_NOTIFICATION, +PUSH_NOTIFICATIONS, +QUEUE, +QUEUE_MEMBERS, +QUEUE_ROUTING_CONFIG, +QUEUE_ROUTING_CONFIG_SKILL, +QUEUE_SOBJECT, +QUICK_ACTION, +QUICK_ACTION_LAYOUT, +QUICK_ACTION_LAYOUT_COLUMN, +QUICK_ACTION_LAYOUT_ITEM, +QUICK_ACTION_LIST, +QUICK_ACTION_LIST_ITEM, +QUICK_ACTION_SEND_EMAIL_OPTIONS, +QUICK_ACTION_TRANSLATION, +QUICK_TEXT_SETTINGS, +QUOTAS_SETTINGS, +QUOTE_SETTINGS, +REAL_TIME_EVENT, +REAL_TIME_EVENT_SETTINGS, +RECOMMENDATION_AUDIENCE, +RECOMMENDATION_AUDIENCE_DETAIL, +RECOMMENDATION_BUILDER_SETTINGS, +RECOMMENDATION_CONDITION_VALUE, +RECOMMENDATION_DEFINITION, +RECOMMENDATION_DEFINITION_DETAIL, +RECOMMENDATION_LOAD_CONDITION, +RECOMMENDATION_STRATEGY, +RECORD_ACTION_DEFAULT_ITEM, +RECORD_ACTION_DEPLOYMENT, +RECORD_ACTION_DEPLOYMENT_CHANNEL, +RECORD_ACTION_DEPLOYMENT_CONTEXT, +RECORD_ACTION_RECOMMENDATION, +RECORD_ACTION_SELECTABLE_ITEM, +RECORD_ACTION_SETTING_TEMPLATE, +RECORD_PAGE_SETTINGS, +RECORD_TYPE, +RECORD_TYPES_SUPPORTED, +RECORD_TYPE_PICKLIST_VALUE, +RECORD_TYPE_TRANSLATION, +REDIRECT_WHITELIST_URL, +REF_MODEL_INSTALLED, +REGISTERED_EXTERNAL_SERVICE, +RELATED_CONTENT, +RELATED_CONTENT_ITEM, +RELATED_LIST, +RELATED_LISTS_INFO, +RELATED_LIST_ITEM, +RELATIONSHIP_REFERENCE_TO, +REMOTE_SITE_SETTING, +REPORT, +REPORT_AGGREGATE, +REPORT_AGGREGATE_REFERENCE, +REPORT_BLOCK_INFO, +REPORT_BUCKET_FIELD, +REPORT_BUCKET_FIELD_SOURCE_VALUE, +REPORT_BUCKET_FIELD_VALUE, +REPORT_CHART, +REPORT_CHART_COMPONENT_LAYOUT_ITEM, +REPORT_COLOR_RANGE, +REPORT_COLUMN, +REPORT_CROSS_FILTER, +REPORT_CUSTOM_DETAIL_FORMULA, +REPORT_DATA_CATEGORY_FILTER, +REPORT_FILTER, +REPORT_FILTER_ITEM, +REPORT_FOLDER, +REPORT_FORMATTING_RULE, +REPORT_FORMATTING_RULE_VALUE, +REPORT_GROUPING, +REPORT_HISTORICAL_SELECTOR, +REPORT_LAYOUT_SECTION, +REPORT_PARAM, +REPORT_TIME_FRAME_FILTER, +REPORT_TYPE, +REPORT_TYPE_COLUMN, +REPORT_TYPE_COLUMN_TRANSLATION, +REPORT_TYPE_SECTION_TRANSLATION, +REPORT_TYPE_TRANSLATION, +REPUTATION_BRANDING, +REPUTATION_LEVEL, +REPUTATION_LEVELS, +REPUTATION_LEVEL_DEFINITIONS, +REPUTATION_POINTS_RULE, +REPUTATION_POINTS_RULES, +RESTRICTION_RULE, +RETAIL_EXECUTION_SETTINGS, +ROLE, +ROLES, +ROLE_AND_SUBORDINATES, +ROLE_AND_SUBORDINATES_INTERNAL, +ROLE_OR_TERRITORY, +RULE_ENTRY, +SALES_AGREEMENT_SETTINGS, +SALES_WORK_QUEUE_SETTINGS, +SAML_SSO_CONFIG, +SCHEDULED_RECOMMENDATION, +SCHEDULED_RECOMMENDATION_DETAIL, +SCHEDULING_RULE, +SCHEDULING_RULE_PARAMETER, +SCHEMA_SETTINGS, +SCONTROL, +SCONTROL_TRANSLATION, +SCORE_CATEGORY, +SCORE_RANGE, +SCORE_RANGE_CLASSIFICATION, +SEARCH_LAYOUTS, +SEARCH_LAYOUT_BUTTON, +SEARCH_LAYOUT_BUTTONS_DISPLAYED, +SEARCH_LAYOUT_FIELD, +SEARCH_LAYOUT_FIELDS_DISPLAYED, +SECURITY_SETTINGS, +SERVICE_A_I_SETUP_DEFINITION, +SERVICE_A_I_SETUP_FIELD, +SERVICE_CHANNEL, +SERVICE_CHANNEL_FIELD_PRIORITY, +SERVICE_CHANNEL_STATUS, +SERVICE_CLOUD_CONSOLE_CONFIG, +SERVICE_CLOUD_VOICE_SETTINGS, +SERVICE_PRESENCE_STATUS, +SERVICE_SETUP_ASSISTANT_SETTINGS, +SESSION_LEVEL_POLICY, +SESSION_SETTINGS, +SETTING_ITEM, +SETTING_OVERRIDE, +SETTING_USAGE_DEFINITION, +SETTING_VALUE, +SHARED_TO, +SHARING_BASE_RULE, +SHARING_CRITERIA_RULE, +SHARING_GUEST_RULE, +SHARING_OWNER_RULE, +SHARING_REASON, +SHARING_REASON_TRANSLATION, +SHARING_RECALCULATION, +SHARING_RULES, +SHARING_SET, +SHARING_SETTINGS, +SHARING_TERRITORY_RULE, +SIDEBAR_COMPONENT, +SINGLE_RELATED_LIST_INFO, +SINGLE_SIGN_ON_SETTINGS, +SITE_DOT_COM, +SITE_IFRAME_WHITE_LIST_URL, +SITE_REDIRECT_MAPPING, +SITE_SETTINGS, +SITE_WEB_ADDRESS, +SKILL, +SKILL_ASSIGNMENTS, +SKILL_PROFILE_ASSIGNMENTS, +SKILL_USER_ASSIGNMENTS, +SOCIAL_CUSTOMER_SERVICE_SETTINGS, +SOCIAL_PROFILE_SETTINGS, +SOURCE_TRACKING_SETTINGS, +STANDARD_FIELD_TRANSLATION, +STANDARD_PERMISSION_SET, +STANDARD_VALUE, +STANDARD_VALUE_SET, +STANDARD_VALUE_SET_TRANSLATION, +STATE, +STATIC_RESOURCE, +STRATEGY_ACTION, +STRATEGY_ACTION_ARG, +STRATEGY_NODE_AI_LOAD, +STRATEGY_NODE_AI_SORT, +STRATEGY_NODE_BASE, +STRATEGY_NODE_EXCLUSIVE, +STRATEGY_NODE_FILTER, +STRATEGY_NODE_IF, +STRATEGY_NODE_INVOCABLE_ACTION, +STRATEGY_NODE_INVOCABLE_ACTION_ARG, +STRATEGY_NODE_MAP, +STRATEGY_NODE_RECOMMENDATION_LIMIT, +STRATEGY_NODE_RECOMMENDATION_LOAD, +STRATEGY_NODE_SORT, +STRATEGY_NODE_SORT_FIELD, +STRATEGY_NODE_UNION, +STRATEGY_NODE_UNION_BASE, +STREAMING_APP_DATA_CONNECTOR, +STRING, +STRING_LIST, +SUBSCRIBER_PACKAGE_CSP_TRUSTED_SITE, +SUBSCRIBER_PACKAGE_CSP_TRUSTED_SITES, +SUBSCRIBER_PACKAGE_DEPENDENCIES, +SUBSCRIBER_PACKAGE_DEPENDENCY, +SUBSCRIBER_PACKAGE_DESTINATION_PROFILE, +SUBSCRIBER_PACKAGE_INSTALL_ERROR, +SUBSCRIBER_PACKAGE_INSTALL_ERRORS, +SUBSCRIBER_PACKAGE_PROFILES, +SUBSCRIBER_PACKAGE_PROFILE_MAPPING, +SUBSCRIBER_PACKAGE_PROFILE_MAPPINGS, +SUBSCRIBER_PACKAGE_REMOTE_SITE_SETTING, +SUBSCRIBER_PACKAGE_REMOTE_SITE_SETTINGS, +SUBSCRIBER_PACKAGE_SOURCE_PROFILE, +SUBTAB_COMPONENTS, +SUMMARY_LAYOUT, +SUMMARY_LAYOUT_ITEM, +SUPERVISOR_AGENT_CONFIG_SKILLS, +SURVEY_SETTINGS, +SYMBOL_TABLE, +SYNONYM_DICTIONARY, +SYSTEM_NOTIFICATION_SETTINGS, +S_F_D_C_MOBILE_SETTINGS, +TAB_LIMIT_CONFIG, +TARGETS, +TERRITORY, +TERRITORY2, +TERRITORY2_MODEL, +TERRITORY2_RULE, +TERRITORY2_RULE_ASSOCIATION, +TERRITORY2_RULE_ITEM, +TERRITORY2_SETTINGS, +TERRITORY2_SETTINGS_OPPORTUNITY_FILTER, +TERRITORY2_TYPE, +TIME, +TIME_SHEET_TEMPLATE, +TIME_SHEET_TEMPLATE_ASSIGNMENT, +TOPICS_FOR_OBJECTS, +TOUCH_MOBILE_SETTINGS, +TRAILHEAD_SETTINGS, +TRANSACTION_SECURITY_ACTION, +TRANSACTION_SECURITY_NOTIFICATION, +TRANSACTION_SECURITY_POLICY, +TRANSLATIONS, +TRIAL_ORG_SETTINGS, +UI_FORMULA_CRITERION, +UI_FORMULA_RULE, +UI_PLUGIN, +USER, +USERS, +USER_ACTIVITY_TIMELINE_FILTER, +USER_AUTH_CERTIFICATE, +USER_CRITERIA, +USER_CRITERIA_BASED_SHARING_RULE, +USER_ENGAGEMENT_SETTINGS, +USER_LICENSE, +USER_LICENSE_DEFINITION, +USER_MANAGEMENT_SETTINGS, +USER_MAPPED, +USER_MEMBERSHIP_SHARING_RULE, +USER_PROVISIONING_CONFIG, +USER_SHARING_RULES, +U_I_OBJECT_RELATION_CONFIG, +U_I_OBJECT_RELATION_FIELD_CONFIG, +VALIDATION_RULE, +VALIDATION_RULE_TRANSLATION, +VALUE_SET, +VALUE_SETTINGS, +VALUE_SET_TRANSLATION, +VALUE_SET_VALUES_DEFINITION, +VALUE_TRANSLATION, +VISUALIZATION_PLUGIN, +VISUALIZATION_RESOURCE, +VISUALIZATION_TYPE, +VOICE_SETTINGS, +WAVE_APPLICATION, +WAVE_DASHBOARD, +WAVE_DATAFLOW, +WAVE_DATASET, +WAVE_LENS, +WAVE_RECIPE, +WAVE_TEMPLATE_BUNDLE, +WAVE_TEMPLATE_LENS_DASHBOARD_METADATA, +WAVE_VISUALIZATION, +WAVE_XMD, +WAVE_XMD_DATE, +WAVE_XMD_DIMENSION, +WAVE_XMD_DIMENSION_CUSTOM_ACTION, +WAVE_XMD_DIMENSION_MEMBER, +WAVE_XMD_DIMENSION_SALESFORCE_ACTION, +WAVE_XMD_FORMATTING_BIN, +WAVE_XMD_FORMATTING_PREDICATE, +WAVE_XMD_FORMATTING_PROPERTY, +WAVE_XMD_MEASURE, +WAVE_XMD_ORGANIZATION, +WAVE_XMD_RECORD_DISPLAY_LOOKUP, +WEB_LINK, +WEB_LINK_COMMON, +WEB_LINK_TRANSLATION, +WEB_STORE_TEMPLATE, +WEB_TO_CASE_SETTINGS, +WEB_TO_X_SETTINGS, +WEIGHTED_SOURCE_CATEGORY, +WINDOWS_PUSH_APPLICATION_SETUP, +WORKFLOW, +WORKFLOW_ACTION, +WORKFLOW_ACTION_REFERENCE, +WORKFLOW_ALERT, +WORKFLOW_APEX, +WORKFLOW_CHATTER_POST, +WORKFLOW_CHATTER_RECIPIENT, +WORKFLOW_EMAIL_RECIPIENT, +WORKFLOW_FIELD_UPDATE, +WORKFLOW_FLOW_ACTION, +WORKFLOW_FLOW_ACTION_PARAMETER, +WORKFLOW_KNOWLEDGE_PUBLISH, +WORKFLOW_OUTBOUND_MESSAGE, +WORKFLOW_QUICK_CREATE, +WORKFLOW_RULE, +WORKFLOW_SEND, +WORKFLOW_TASK, +WORKFLOW_TASK_TRANSLATION, +WORKFLOW_TIME_TRIGGER, +WORKSPACE_MAPPING, +WORKSPACE_MAPPINGS, +WORK_DOT_COM_SETTINGS, +WORK_SKILL_ROUTING, +WORK_SKILL_ROUTING_ATTRIBUTE, +X_ORG_HUB, +X_ORG_HUB_CONNECTION, +X_ORG_HUB_SHARED_OBJECT, +X_ORG_SPOKE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Search/KnowledgeSuggestionFilter.cls b/.sfdx/tools/246/StandardApexLibrary/Search/KnowledgeSuggestionFilter.cls new file mode 100644 index 0000000..72f4ad0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Search/KnowledgeSuggestionFilter.cls @@ -0,0 +1,12 @@ +global class KnowledgeSuggestionFilter { + global KnowledgeSuggestionFilter() { } + global void addArticleType(String articleType) { } + global void addDataCategory(String dataCategoryGroupName, String dataCategoryName) { } + global void addTopic(String topic) { } + global void setChannel(String channelName) { } + global void setDataCategories(Map dataCategoryFilters) { } + global void setLanguage(String localeCode) { } + global void setPublishStatus(String publishStatus) { } + global void setValidationStatus(String validationStatus) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/Search/QuestionSuggestionFilter.cls b/.sfdx/tools/246/StandardApexLibrary/Search/QuestionSuggestionFilter.cls new file mode 100644 index 0000000..7137823 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Search/QuestionSuggestionFilter.cls @@ -0,0 +1,11 @@ +global class QuestionSuggestionFilter { + global QuestionSuggestionFilter() { } + global void addGroupId(String groupId) { } + global void addNetworkId(String networkId) { } + global void addUserId(String userId) { } + global void setGroupIds(List groupIds) { } + global void setNetworkIds(List networkIds) { } + global void setTopicId(String topicId) { } + global void setUserIds(List userIds) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Search/SearchResult.cls b/.sfdx/tools/246/StandardApexLibrary/Search/SearchResult.cls new file mode 100644 index 0000000..f91f13d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Search/SearchResult.cls @@ -0,0 +1,7 @@ +global class SearchResult { + global Object clone() { } + global SObject getSObject() { } + global String getSnippet(String field) { } + global String getSnippet() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Search/SearchResults.cls b/.sfdx/tools/246/StandardApexLibrary/Search/SearchResults.cls new file mode 100644 index 0000000..5be6100 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Search/SearchResults.cls @@ -0,0 +1,5 @@ +global class SearchResults { + global Object clone() { } + global List get(String sObjectType) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Search/SuggestionOption.cls b/.sfdx/tools/246/StandardApexLibrary/Search/SuggestionOption.cls new file mode 100644 index 0000000..c63ccf6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Search/SuggestionOption.cls @@ -0,0 +1,6 @@ +global class SuggestionOption { + global SuggestionOption() { } + global void setFilter(Object filter) { } + global void setLimit(Integer limit) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Search/SuggestionResult.cls b/.sfdx/tools/246/StandardApexLibrary/Search/SuggestionResult.cls new file mode 100644 index 0000000..f4293d9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Search/SuggestionResult.cls @@ -0,0 +1,5 @@ +global class SuggestionResult { + global Object clone() { } + global SObject getSObject() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Search/SuggestionResults.cls b/.sfdx/tools/246/StandardApexLibrary/Search/SuggestionResults.cls new file mode 100644 index 0000000..1061ed0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Search/SuggestionResults.cls @@ -0,0 +1,6 @@ +global class SuggestionResults { + global Object clone() { } + global List getSuggestionResults() { } + global Boolean hasMoreResults() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Site/UrlRewriter.cls b/.sfdx/tools/246/StandardApexLibrary/Site/UrlRewriter.cls new file mode 100644 index 0000000..7c892af --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Site/UrlRewriter.cls @@ -0,0 +1,5 @@ +global interface UrlRewriter { + List generateUrlFor(List param0); + System.PageReference mapRequestUrl(System.PageReference param0); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ActionDispatcher.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ActionDispatcher.cls new file mode 100644 index 0000000..ad6eb9e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ActionDispatcher.cls @@ -0,0 +1,7 @@ +global class ActionDispatcher { + global ActionDispatcher() { } + global Boolean allowUnauthenticatedUsers() { } + global Object clone() { } + global Slack.ActionHandler invoke(Map param0, Slack.RequestContext param1) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ActionHandler.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ActionHandler.cls new file mode 100644 index 0000000..40e3a30 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ActionHandler.cls @@ -0,0 +1,14 @@ +global class ActionHandler { + global static Slack.ActionHandler ack(Slack.CallableHandler handler) { } + global static Slack.ActionHandler ack(Slack.RunnableHandler handler) { } + global static Slack.ActionHandler clearModal(Slack.CallableHandler handler) { } + global static Slack.ActionHandler clearModal(Slack.RunnableHandler handler) { } + global Object clone() { } + global static Slack.ActionHandler modal(Slack.ModalHandler handler, String stagedModalTitle) { } + global static Slack.ActionHandler modal(Slack.ModalHandler handler) { } + global static Slack.ActionHandler pushModal(Slack.ModalHandler handler, String stagedModalTitle) { } + global static Slack.ActionHandler pushModal(Slack.ModalHandler handler) { } + global static Slack.ActionHandler updateModal(Slack.ModalHandler handler, String stagedModalTitle) { } + global static Slack.ActionHandler updateModal(Slack.ModalHandler handler) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ActionPayload.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ActionPayload.cls new file mode 100644 index 0000000..d21264c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ActionPayload.cls @@ -0,0 +1,16 @@ +global class ActionPayload { + global Object clone() { } + global String getName() { } + global String getType() { } + global Object getValue() { } +global class Builder { + global ActionPayload.Builder() { } + global Slack.ActionPayload build() { } + global Object clone() { } + global Slack.ActionPayload.Builder name(String name) { } + global Slack.ActionPayload.Builder type(String type) { } + global Slack.ActionPayload.Builder value(Object value) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ActionResult.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ActionResult.cls new file mode 100644 index 0000000..2e2a8fb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ActionResult.cls @@ -0,0 +1,9 @@ +global class ActionResult { + global Object clone() { } + global static Slack.ActionResult error(Exception _exception, Slack.ErrorReport errorReport) { } + global static Slack.ActionResult error(Exception _exception) { } + global Exception getException() { } + global Boolean isOk() { } + global static Slack.ActionResult ok() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ApiTestRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ApiTestRequest.cls new file mode 100644 index 0000000..e4259ab --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ApiTestRequest.cls @@ -0,0 +1,16 @@ +global class ApiTestRequest { + global static Slack.ApiTestRequest.Builder builder() { } + global Object clone() { } + global String getError() { } + global String getFoo() { } + global String toString() { } +global class Builder { + global ApiTestRequest.Builder() { } + global Slack.ApiTestRequest build() { } + global Object clone() { } + global Slack.ApiTestRequest.Builder error(String error) { } + global Slack.ApiTestRequest.Builder foo(String foo) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ApiTestResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ApiTestResponse.cls new file mode 100644 index 0000000..425dcb8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ApiTestResponse.cls @@ -0,0 +1,29 @@ +global class ApiTestResponse { + global ApiTestResponse() { } + global Object clone() { } + global Slack.ApiTestResponse.Args getArgs() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setArgs(Slack.ApiTestResponse.Args args) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } +global class Args { + global ApiTestResponse.Args() { } + global Object clone() { } + global String getError() { } + global String getFoo() { } + global void setError(String error) { } + global void setFoo(String foo) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/App.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/App.cls new file mode 100644 index 0000000..f5dee15 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/App.cls @@ -0,0 +1,14 @@ +global class App { + global Object clone() { } + global static Slack.App getAppByKey(String key) { } + global static Slack.App getAppByName(String developerName) { } + global Slack.AppClient getAppClient() { } + global String getAppKey() { } + global Slack.BotClient getBotClientForTeam(String teamId) { } + global String getConnectedSalesforceUserId(String teamId, String slackUserId) { } + global Map getConnectedSalesforceUserIdMap(String teamId, List slackUserIds) { } + global String getConnectedSlackUserId(String teamId, String salesforceUserId) { } + global Map getConnectedSlackUserIdMap(String teamId, List salesforceUserIds) { } + global Slack.UserClient getUserClientForTeam(String teamId, String slackUserId) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/AppClient.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/AppClient.cls new file mode 100644 index 0000000..eb7142b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/AppClient.cls @@ -0,0 +1,6 @@ +global class AppClient { + global Slack.AppsEventAuthorizationsListResponse appsEventAuthorizationsList(Slack.AppsEventAuthorizationsListRequest req) { } + global Slack.AuthTestResponse authTest(Slack.AuthTestRequest req) { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/AppClientMock.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/AppClientMock.cls new file mode 100644 index 0000000..6287333 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/AppClientMock.cls @@ -0,0 +1,7 @@ +global class AppClientMock { + global AppClientMock() { } + global Slack.AppsEventAuthorizationsListResponse appsEventAuthorizationsList(Slack.AppsEventAuthorizationsListRequest req) { } + global Slack.AuthTestResponse authTest(Slack.AuthTestRequest req) { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/AppHomeOpenedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/AppHomeOpenedEvent.cls new file mode 100644 index 0000000..9caf153 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/AppHomeOpenedEvent.cls @@ -0,0 +1,16 @@ +global class AppHomeOpenedEvent { + global AppHomeOpenedEvent() { } + global Object clone() { } + global String getChannel() { } + global String getEventTs() { } + global String getSubtype() { } + global String getTab() { } + global String getType() { } + global String getUser() { } + global void setChannel(String channel) { } + global void setEventTs(String eventTs) { } + global void setTab(String tab) { } + global void setUser(String user) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/AppIcons.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/AppIcons.cls new file mode 100644 index 0000000..30f2c85 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/AppIcons.cls @@ -0,0 +1,28 @@ +global class AppIcons { + global AppIcons() { } + global Object clone() { } + global String getImage1024() { } + global String getImage128() { } + global String getImage192() { } + global String getImage32() { } + global String getImage36() { } + global String getImage48() { } + global String getImage512() { } + global String getImage64() { } + global String getImage72() { } + global String getImage96() { } + global String getImageOriginal() { } + global void setImage1024(String image1024) { } + global void setImage128(String image128) { } + global void setImage192(String image192) { } + global void setImage32(String image32) { } + global void setImage36(String image36) { } + global void setImage48(String image48) { } + global void setImage512(String image512) { } + global void setImage64(String image64) { } + global void setImage72(String image72) { } + global void setImage96(String image96) { } + global void setImageOriginal(String imageOriginal) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/AppMentionEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/AppMentionEvent.cls new file mode 100644 index 0000000..7d8dec0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/AppMentionEvent.cls @@ -0,0 +1,42 @@ +global class AppMentionEvent { + global AppMentionEvent() { } + global Object clone() { } + global String getBotId() { } + global Slack.BotProfile getBotProfile() { } + global String getChannel() { } + global String getClientMsgId() { } + global Slack.AppMentionEvent.Edited getEdited() { } + global String getEventTs() { } + global String getSubtype() { } + global String getTeam() { } + global String getText() { } + global String getThreadTs() { } + global String getTs() { } + global String getType() { } + global String getUser() { } + global String getUsername() { } + global void setBotId(String botId) { } + global void setBotProfile(Slack.BotProfile botProfile) { } + global void setChannel(String channel) { } + global void setClientMsgId(String clientMsgId) { } + global void setEdited(Slack.AppMentionEvent.Edited edited) { } + global void setEventTs(String eventTs) { } + global void setSubtype(String subtype) { } + global void setTeam(String team) { } + global void setText(String text) { } + global void setThreadTs(String threadTs) { } + global void setTs(String ts) { } + global void setUser(String user) { } + global void setUsername(String username) { } + global String toString() { } +global class Edited { + global AppMentionEvent.Edited() { } + global Object clone() { } + global String getTs() { } + global String getUser() { } + global void setTs(String ts) { } + global void setUser(String user) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/AppRateLimitedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/AppRateLimitedEvent.cls new file mode 100644 index 0000000..2c7f2f5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/AppRateLimitedEvent.cls @@ -0,0 +1,14 @@ +global class AppRateLimitedEvent { + global AppRateLimitedEvent() { } + global Object clone() { } + global String getApiAppId() { } + global Integer getMinuteRateLimited() { } + global String getSubtype() { } + global String getTeamId() { } + global String getType() { } + global void setApiAppId(String apiAppId) { } + global void setMinuteRateLimited(Integer minuteRateLimited) { } + global void setTeamId(String teamId) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/AppRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/AppRequest.cls new file mode 100644 index 0000000..6d250ff --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/AppRequest.cls @@ -0,0 +1,55 @@ +global class AppRequest { + global AppRequest() { } + global Object clone() { } + global Slack.RequestedApp getApp() { } + global Integer getDateCreated() { } + global String getId() { } + global Boolean getIsUserAppCollaborator() { } + global String getMessage() { } + global Slack.AppRequest.PreviousResolution getPreviousResolution() { } + global List getScopes() { } + global Slack.AppRequest.Team getTeam() { } + global Slack.AppRequest.User getUser() { } + global void setApp(Slack.RequestedApp app) { } + global void setDateCreated(Integer dateCreated) { } + global void setId(String id) { } + global void setIsUserAppCollaborator(Boolean isUserAppCollaborator) { } + global void setMessage(String message) { } + global void setPreviousResolution(Slack.AppRequest.PreviousResolution previousResolution) { } + global void setScopes(List scopes) { } + global void setTeam(Slack.AppRequest.Team team) { } + global void setUser(Slack.AppRequest.User user) { } + global String toString() { } +global class PreviousResolution { + global AppRequest.PreviousResolution() { } + global Object clone() { } + global List getScopes() { } + global String getStatus() { } + global void setScopes(List scopes) { } + global void setStatus(String status) { } + +} +global class Team { + global AppRequest.Team() { } + global Object clone() { } + global String getDomain() { } + global String getId() { } + global String getName() { } + global void setDomain(String domain) { } + global void setId(String id) { } + global void setName(String name) { } + +} +global class User { + global AppRequest.User() { } + global Object clone() { } + global String getEmail() { } + global String getId() { } + global String getName() { } + global void setEmail(String email) { } + global void setId(String id) { } + global void setName(String name) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/AppRequestedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/AppRequestedEvent.cls new file mode 100644 index 0000000..7e7cac7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/AppRequestedEvent.cls @@ -0,0 +1,10 @@ +global class AppRequestedEvent { + global AppRequestedEvent() { } + global Object clone() { } + global Slack.AppRequest getAppRequest() { } + global String getSubtype() { } + global String getType() { } + global void setAppRequest(Slack.AppRequest appRequest) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/AppScope.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/AppScope.cls new file mode 100644 index 0000000..457733a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/AppScope.cls @@ -0,0 +1,14 @@ +global class AppScope { + global AppScope() { } + global Object clone() { } + global String getDescription() { } + global String getName() { } + global String getTokenType() { } + global Boolean isSensitive() { } + global void setDescription(String description) { } + global void setName(String name) { } + global void setSensitive(Boolean sensitive) { } + global void setTokenType(String tokenType) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/AppUninstalledEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/AppUninstalledEvent.cls new file mode 100644 index 0000000..704efd4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/AppUninstalledEvent.cls @@ -0,0 +1,8 @@ +global class AppUninstalledEvent { + global AppUninstalledEvent() { } + global Object clone() { } + global String getSubtype() { } + global String getType() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/AppsEventAuthorizationsListRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/AppsEventAuthorizationsListRequest.cls new file mode 100644 index 0000000..a8e5aff --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/AppsEventAuthorizationsListRequest.cls @@ -0,0 +1,18 @@ +global class AppsEventAuthorizationsListRequest { + global static Slack.AppsEventAuthorizationsListRequest.Builder builder() { } + global Object clone() { } + global String getCursor() { } + global String getEventContext() { } + global Integer getLimit() { } + global String toString() { } +global class Builder { + global AppsEventAuthorizationsListRequest.Builder() { } + global Slack.AppsEventAuthorizationsListRequest build() { } + global Object clone() { } + global Slack.AppsEventAuthorizationsListRequest.Builder cursor(String cursor) { } + global Slack.AppsEventAuthorizationsListRequest.Builder eventContext(String eventContext) { } + global Slack.AppsEventAuthorizationsListRequest.Builder limitValue(Integer limitValue) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/AppsEventAuthorizationsListResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/AppsEventAuthorizationsListResponse.cls new file mode 100644 index 0000000..7b52507 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/AppsEventAuthorizationsListResponse.cls @@ -0,0 +1,37 @@ +global class AppsEventAuthorizationsListResponse { + global AppsEventAuthorizationsListResponse() { } + global Object clone() { } + global List getAuthorizations() { } + global String getCursorNext() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setAuthorizations(List authorizations) { } + global void setCursorNext(String cursorNext) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } +global class Authorization { + global AppsEventAuthorizationsListResponse.Authorization() { } + global Object clone() { } + global String getEnterpriseId() { } + global Boolean getIsBot() { } + global Boolean getIsEnterpriseInstall() { } + global String getTeamId() { } + global String getUserId() { } + global void setEnterpriseId(String enterpriseId) { } + global void setIsBot(Boolean isBot) { } + global void setIsEnterpriseInstall(Boolean isEnterpriseInstall) { } + global void setTeamId(String teamId) { } + global void setUserId(String userId) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/AppsUninstallRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/AppsUninstallRequest.cls new file mode 100644 index 0000000..601539f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/AppsUninstallRequest.cls @@ -0,0 +1,16 @@ +global class AppsUninstallRequest { + global static Slack.AppsUninstallRequest.Builder builder() { } + global Object clone() { } + global String getClientId() { } + global String getClientSecret() { } + global String toString() { } +global class Builder { + global AppsUninstallRequest.Builder() { } + global Slack.AppsUninstallRequest build() { } + global Slack.AppsUninstallRequest.Builder clientId(String clientId) { } + global Slack.AppsUninstallRequest.Builder clientSecret(String clientSecret) { } + global Object clone() { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/AppsUninstallResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/AppsUninstallResponse.cls new file mode 100644 index 0000000..d9c3578 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/AppsUninstallResponse.cls @@ -0,0 +1,20 @@ +global class AppsUninstallResponse { + global AppsUninstallResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.ResponseMetadata getResponseMetadata() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ResponseMetadata responseMetadata) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/AuthRevokeRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/AuthRevokeRequest.cls new file mode 100644 index 0000000..c6889e8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/AuthRevokeRequest.cls @@ -0,0 +1,14 @@ +global class AuthRevokeRequest { + global static Slack.AuthRevokeRequest.Builder builder() { } + global Object clone() { } + global Boolean isTest() { } + global String toString() { } +global class Builder { + global AuthRevokeRequest.Builder() { } + global Slack.AuthRevokeRequest build() { } + global Object clone() { } + global Slack.AuthRevokeRequest.Builder test(Boolean test) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/AuthRevokeResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/AuthRevokeResponse.cls new file mode 100644 index 0000000..2700cb3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/AuthRevokeResponse.cls @@ -0,0 +1,20 @@ +global class AuthRevokeResponse { + global AuthRevokeResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global Boolean isRevoked() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setRevoked(Boolean revoked) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/AuthTeamsListRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/AuthTeamsListRequest.cls new file mode 100644 index 0000000..6ea3751 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/AuthTeamsListRequest.cls @@ -0,0 +1,18 @@ +global class AuthTeamsListRequest { + global static Slack.AuthTeamsListRequest.Builder builder() { } + global Object clone() { } + global String getCursor() { } + global Boolean getIncludeIcon() { } + global Integer getLimit() { } + global String toString() { } +global class Builder { + global AuthTeamsListRequest.Builder() { } + global Slack.AuthTeamsListRequest build() { } + global Object clone() { } + global Slack.AuthTeamsListRequest.Builder cursor(String cursor) { } + global Slack.AuthTeamsListRequest.Builder includeIcon(Boolean includeIcon) { } + global Slack.AuthTeamsListRequest.Builder limitValue(Integer limitValue) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/AuthTeamsListResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/AuthTeamsListResponse.cls new file mode 100644 index 0000000..b973dc9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/AuthTeamsListResponse.cls @@ -0,0 +1,31 @@ +global class AuthTeamsListResponse { + global AuthTeamsListResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.ResponseMetadata getResponseMetadata() { } + global List getTeams() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ResponseMetadata responseMetadata) { } + global void setTeams(List teams) { } + global void setWarning(String warning) { } + global String toString() { } +global class Team { + global AuthTeamsListResponse.Team() { } + global Object clone() { } + global String getId() { } + global String getName() { } + global void setId(String id) { } + global void setName(String name) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/AuthTestRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/AuthTestRequest.cls new file mode 100644 index 0000000..1decdbb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/AuthTestRequest.cls @@ -0,0 +1,12 @@ +global class AuthTestRequest { + global static Slack.AuthTestRequest.Builder builder() { } + global Object clone() { } + global String toString() { } +global class Builder { + global AuthTestRequest.Builder() { } + global Slack.AuthTestRequest build() { } + global Object clone() { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/AuthTestResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/AuthTestResponse.cls new file mode 100644 index 0000000..2c658b2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/AuthTestResponse.cls @@ -0,0 +1,38 @@ +global class AuthTestResponse { + global AuthTestResponse() { } + global Object clone() { } + global String getAppId() { } + global String getAppName() { } + global String getBotId() { } + global String getEnterpriseId() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getTeam() { } + global String getTeamId() { } + global String getUrl() { } + global String getUser() { } + global String getUserId() { } + global String getWarning() { } + global Boolean isEnterpriseInstall() { } + global Boolean isOk() { } + global void setAppId(String appId) { } + global void setAppName(String appName) { } + global void setBotId(String botId) { } + global void setEnterpriseId(String enterpriseId) { } + global void setEnterpriseInstall(Boolean isEnterpriseInstall) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setTeam(String team) { } + global void setTeamId(String teamId) { } + global void setUrl(String url) { } + global void setUser(String user) { } + global void setUserId(String userId) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/BillableInfo.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/BillableInfo.cls new file mode 100644 index 0000000..6502d13 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/BillableInfo.cls @@ -0,0 +1,8 @@ +global class BillableInfo { + global BillableInfo() { } + global Object clone() { } + global Boolean isBillingActive() { } + global void setBillingActive(Boolean billingActive) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/Bookmark.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/Bookmark.cls new file mode 100644 index 0000000..1d9d179 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/Bookmark.cls @@ -0,0 +1,36 @@ +global class Bookmark { + global Bookmark() { } + global Object clone() { } + global String getAppId() { } + global String getChannelId() { } + global Integer getDateCreated() { } + global Integer getDateUpdated() { } + global String getEmoji() { } + global String getEntityId() { } + global String getIconUrl() { } + global String getId() { } + global String getLastUpdatedByTeamId() { } + global String getLastUpdatedByUserId() { } + global String getLink() { } + global String getRank() { } + global String getShortcutId() { } + global String getTitle() { } + global String getType() { } + global void setAppId(String appId) { } + global void setChannelId(String channelId) { } + global void setDateCreated(Integer dateCreated) { } + global void setDateUpdated(Integer dateUpdated) { } + global void setEmoji(String emoji) { } + global void setEntityId(String entityId) { } + global void setIconUrl(String iconUrl) { } + global void setId(String id) { } + global void setLastUpdatedByTeamId(String lastUpdatedByTeamId) { } + global void setLastUpdatedByUserId(String lastUpdatedByUserId) { } + global void setLink(String link) { } + global void setRank(String rank) { } + global void setShortcutId(String shortcutId) { } + global void setTitle(String title) { } + global void setType(String type) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/BookmarksAddRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/BookmarksAddRequest.cls new file mode 100644 index 0000000..2f08aae --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/BookmarksAddRequest.cls @@ -0,0 +1,26 @@ +global class BookmarksAddRequest { + global static Slack.BookmarksAddRequest.Builder builder() { } + global Object clone() { } + global String getChannelId() { } + global String getEmoji() { } + global String getEntityId() { } + global String getLink() { } + global String getParentId() { } + global String getTitle() { } + global String getType() { } + global String toString() { } +global class Builder { + global BookmarksAddRequest.Builder() { } + global Slack.BookmarksAddRequest build() { } + global Slack.BookmarksAddRequest.Builder channelId(String channelId) { } + global Object clone() { } + global Slack.BookmarksAddRequest.Builder emoji(String emoji) { } + global Slack.BookmarksAddRequest.Builder entityId(String entityId) { } + global Slack.BookmarksAddRequest.Builder link(String link) { } + global Slack.BookmarksAddRequest.Builder parentId(String parentId) { } + global Slack.BookmarksAddRequest.Builder title(String title) { } + global Slack.BookmarksAddRequest.Builder type(String type) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/BookmarksAddResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/BookmarksAddResponse.cls new file mode 100644 index 0000000..3e5b80c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/BookmarksAddResponse.cls @@ -0,0 +1,22 @@ +global class BookmarksAddResponse { + global BookmarksAddResponse() { } + global Object clone() { } + global Slack.Bookmark getBookmark() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.ErrorResponseMetadata getResponseMetadata() { } + global String getWarning() { } + global Boolean isOk() { } + global void setBookmark(Slack.Bookmark bookmark) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ErrorResponseMetadata responseMetadata) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/BookmarksEditRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/BookmarksEditRequest.cls new file mode 100644 index 0000000..2c7f315 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/BookmarksEditRequest.cls @@ -0,0 +1,22 @@ +global class BookmarksEditRequest { + global static Slack.BookmarksEditRequest.Builder builder() { } + global Object clone() { } + global String getBookmarkId() { } + global String getChannelId() { } + global String getEmoji() { } + global String getLink() { } + global String getTitle() { } + global String toString() { } +global class Builder { + global BookmarksEditRequest.Builder() { } + global Slack.BookmarksEditRequest.Builder bookmarkId(String bookmarkId) { } + global Slack.BookmarksEditRequest build() { } + global Slack.BookmarksEditRequest.Builder channelId(String channelId) { } + global Object clone() { } + global Slack.BookmarksEditRequest.Builder emoji(String emoji) { } + global Slack.BookmarksEditRequest.Builder link(String link) { } + global Slack.BookmarksEditRequest.Builder title(String title) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/BookmarksEditResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/BookmarksEditResponse.cls new file mode 100644 index 0000000..6269577 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/BookmarksEditResponse.cls @@ -0,0 +1,22 @@ +global class BookmarksEditResponse { + global BookmarksEditResponse() { } + global Object clone() { } + global Slack.Bookmark getBookmark() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.ErrorResponseMetadata getResponseMetadata() { } + global String getWarning() { } + global Boolean isOk() { } + global void setBookmark(Slack.Bookmark bookmark) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ErrorResponseMetadata responseMetadata) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/BookmarksListRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/BookmarksListRequest.cls new file mode 100644 index 0000000..b012360 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/BookmarksListRequest.cls @@ -0,0 +1,14 @@ +global class BookmarksListRequest { + global static Slack.BookmarksListRequest.Builder builder() { } + global Object clone() { } + global String getChannelId() { } + global String toString() { } +global class Builder { + global BookmarksListRequest.Builder() { } + global Slack.BookmarksListRequest build() { } + global Slack.BookmarksListRequest.Builder channelId(String channelId) { } + global Object clone() { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/BookmarksListResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/BookmarksListResponse.cls new file mode 100644 index 0000000..c3153e3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/BookmarksListResponse.cls @@ -0,0 +1,22 @@ +global class BookmarksListResponse { + global BookmarksListResponse() { } + global Object clone() { } + global List getBookmarks() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.ErrorResponseMetadata getResponseMetadata() { } + global String getWarning() { } + global Boolean isOk() { } + global void setBookmarks(List bookmarks) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ErrorResponseMetadata responseMetadata) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/BookmarksRemoveRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/BookmarksRemoveRequest.cls new file mode 100644 index 0000000..3f9e7a1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/BookmarksRemoveRequest.cls @@ -0,0 +1,16 @@ +global class BookmarksRemoveRequest { + global static Slack.BookmarksRemoveRequest.Builder builder() { } + global Object clone() { } + global String getBookmarkId() { } + global String getChannelId() { } + global String toString() { } +global class Builder { + global BookmarksRemoveRequest.Builder() { } + global Slack.BookmarksRemoveRequest.Builder bookmarkId(String bookmarkId) { } + global Slack.BookmarksRemoveRequest build() { } + global Slack.BookmarksRemoveRequest.Builder channelId(String channelId) { } + global Object clone() { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/BookmarksRemoveResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/BookmarksRemoveResponse.cls new file mode 100644 index 0000000..eecc060 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/BookmarksRemoveResponse.cls @@ -0,0 +1,20 @@ +global class BookmarksRemoveResponse { + global BookmarksRemoveResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.ErrorResponseMetadata getResponseMetadata() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ErrorResponseMetadata responseMetadata) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/BotClient.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/BotClient.cls new file mode 100644 index 0000000..357f4b5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/BotClient.cls @@ -0,0 +1,95 @@ +global class BotClient { + global Slack.AppsUninstallResponse appsUninstall(Slack.AppsUninstallRequest req) { } + global Slack.AuthRevokeResponse authRevoke(Slack.AuthRevokeRequest req) { } + global Slack.AuthTeamsListResponse authTeamsList(Slack.AuthTeamsListRequest req) { } + global Slack.AuthTestResponse authTest(Slack.AuthTestRequest req) { } + global Slack.BookmarksAddResponse bookmarksAdd(Slack.BookmarksAddRequest req) { } + global Slack.BookmarksEditResponse bookmarksEdit(Slack.BookmarksEditRequest req) { } + global Slack.BookmarksListResponse bookmarksList(Slack.BookmarksListRequest req) { } + global Slack.BookmarksRemoveResponse bookmarksRemove(Slack.BookmarksRemoveRequest req) { } + global Slack.BotsInfoResponse botsInfo(Slack.BotsInfoRequest req) { } + global Slack.CallsAddResponse callsAdd(Slack.CallsAddRequest req) { } + global Slack.CallsEndResponse callsEnd(Slack.CallsEndRequest req) { } + global Slack.CallsInfoResponse callsInfo(Slack.CallsInfoRequest req) { } + global Slack.CallsParticipantsAddResponse callsParticipantsAdd(Slack.CallsParticipantsAddRequest req) { } + global Slack.CallsParticipantsRemoveResponse callsParticipantsRemove(Slack.CallsParticipantsRemoveRequest req) { } + global Slack.CallsUpdateResponse callsUpdate(Slack.CallsUpdateRequest req) { } + global Slack.ChatDeleteResponse chatDelete(Slack.ChatDeleteRequest req) { } + global Slack.ChatDeleteScheduledMessageResponse chatDeleteScheduledMessage(Slack.ChatDeleteScheduledMessageRequest req) { } + global Slack.ChatGetPermalinkResponse chatGetPermalink(Slack.ChatGetPermalinkRequest req) { } + global Slack.ChatMeMessageResponse chatMeMessage(Slack.ChatMeMessageRequest req) { } + global Slack.ChatPostEphemeralResponse chatPostEphemeral(Slack.ChatPostEphemeralRequest req) { } + global Slack.ChatPostMessageResponse chatPostMessage(Slack.ChatPostMessageRequest req) { } + global Slack.ChatScheduleMessageResponse chatScheduleMessage(Slack.ChatScheduleMessageRequest req) { } + global Slack.ChatScheduledMessagesListResponse chatScheduledMessagesList(Slack.ChatScheduledMessagesListRequest req) { } + global Slack.ChatUpdateResponse chatUpdate(Slack.ChatUpdateRequest req) { } + global Object clone() { } + global Slack.ConversationsAcceptSharedInviteResponse conversationsAcceptSharedInvite(Slack.ConversationsAcceptSharedInviteRequest req) { } + global Slack.ConversationsArchiveResponse conversationsArchive(Slack.ConversationsArchiveRequest req) { } + global Slack.ConversationsCloseResponse conversationsClose(Slack.ConversationsCloseRequest req) { } + global Slack.ConversationsCreateResponse conversationsCreate(Slack.ConversationsCreateRequest req) { } + global Slack.ConversationsDeclineSharedInviteResponse conversationsDeclineSharedInvite(Slack.ConversationsDeclineSharedInviteRequest req) { } + global Slack.ConversationsHistoryResponse conversationsHistory(Slack.ConversationsHistoryRequest req) { } + global Slack.ConversationsInfoResponse conversationsInfo(Slack.ConversationsInfoRequest req) { } + global Slack.ConversationsInviteResponse conversationsInvite(Slack.ConversationsInviteRequest req) { } + global Slack.ConversationsInviteSharedResponse conversationsInviteShared(Slack.ConversationsInviteSharedRequest req) { } + global Slack.ConversationsJoinResponse conversationsJoin(Slack.ConversationsJoinRequest req) { } + global Slack.ConversationsKickResponse conversationsKick(Slack.ConversationsKickRequest req) { } + global Slack.ConversationsLeaveResponse conversationsLeave(Slack.ConversationsLeaveRequest req) { } + global Slack.ConversationsListResponse conversationsList(Slack.ConversationsListRequest req) { } + global Slack.ConversationsListConnectInvitesResponse conversationsListConnectInvites(Slack.ConversationsListConnectInvitesRequest req) { } + global Slack.ConversationsMarkResponse conversationsMark(Slack.ConversationsMarkRequest req) { } + global Slack.ConversationsMembersResponse conversationsMembers(Slack.ConversationsMembersRequest req) { } + global Slack.ConversationsOpenResponse conversationsOpen(Slack.ConversationsOpenRequest req) { } + global Slack.ConversationsRenameResponse conversationsRename(Slack.ConversationsRenameRequest req) { } + global Slack.ConversationsRepliesResponse conversationsReplies(Slack.ConversationsRepliesRequest req) { } + global Slack.ConversationsSetPurposeResponse conversationsSetPurpose(Slack.ConversationsSetPurposeRequest req) { } + global Slack.ConversationsSetTopicResponse conversationsSetTopic(Slack.ConversationsSetTopicRequest req) { } + global Slack.ConversationsUnarchiveResponse conversationsUnarchive(Slack.ConversationsUnarchiveRequest req) { } + global Slack.DndInfoResponse dndInfo(Slack.DndInfoRequest req) { } + global Slack.DndTeamInfoResponse dndTeamInfo(Slack.DndTeamInfoRequest req) { } + global Slack.EmojiListResponse emojiList(Slack.EmojiListRequest req) { } + global Slack.FilesDeleteResponse filesDelete(Slack.FilesDeleteRequest req) { } + global Slack.FilesInfoResponse filesInfo(Slack.FilesInfoRequest req) { } + global Slack.FilesListResponse filesList(Slack.FilesListRequest req) { } + global Slack.FilesRemoteAddResponse filesRemoteAdd(Slack.FilesRemoteAddRequest req) { } + global Slack.FilesRemoteInfoResponse filesRemoteInfo(Slack.FilesRemoteInfoRequest req) { } + global Slack.FilesRemoteListResponse filesRemoteList(Slack.FilesRemoteListRequest req) { } + global Slack.FilesRemoteRemoveResponse filesRemoteRemove(Slack.FilesRemoteRemoveRequest req) { } + global Slack.FilesRemoteShareResponse filesRemoteShare(Slack.FilesRemoteShareRequest req) { } + global Slack.FilesRemoteUpdateResponse filesRemoteUpdate(Slack.FilesRemoteUpdateRequest req) { } + global Slack.MigrationExchangeResponse migrationExchange(Slack.MigrationExchangeRequest req) { } + global Slack.PinsAddResponse pinsAdd(Slack.PinsAddRequest req) { } + global Slack.PinsListResponse pinsList(Slack.PinsListRequest req) { } + global Slack.PinsRemoveResponse pinsRemove(Slack.PinsRemoveRequest req) { } + global Slack.ReactionsAddResponse reactionsAdd(Slack.ReactionsAddRequest req) { } + global Slack.ReactionsGetResponse reactionsGet(Slack.ReactionsGetRequest req) { } + global Slack.ReactionsListResponse reactionsList(Slack.ReactionsListRequest req) { } + global Slack.ReactionsRemoveResponse reactionsRemove(Slack.ReactionsRemoveRequest req) { } + global Slack.StarsAddResponse starsAdd(Slack.StarsAddRequest req) { } + global Slack.TeamInfoResponse teamInfo(Slack.TeamInfoRequest req) { } + global Slack.TeamProfileGetResponse teamProfileGet(Slack.TeamProfileGetRequest req) { } + global Slack.UsergroupsCreateResponse usergroupsCreate(Slack.UsergroupsCreateRequest req) { } + global Slack.UsergroupsDisableResponse usergroupsDisable(Slack.UsergroupsDisableRequest req) { } + global Slack.UsergroupsEnableResponse usergroupsEnable(Slack.UsergroupsEnableRequest req) { } + global Slack.UsergroupsListResponse usergroupsList(Slack.UsergroupsListRequest req) { } + global Slack.UsergroupsUpdateResponse usergroupsUpdate(Slack.UsergroupsUpdateRequest req) { } + global Slack.UsergroupsUsersListResponse usergroupsUsersList(Slack.UsergroupsUsersListRequest req) { } + global Slack.UsergroupsUsersUpdateResponse usergroupsUsersUpdate(Slack.UsergroupsUsersUpdateRequest req) { } + global Slack.UsersConversationsResponse usersConversations(Slack.UsersConversationsRequest req) { } + global Slack.UsersGetPresenceResponse usersGetPresence(Slack.UsersGetPresenceRequest req) { } + global Slack.UsersInfoResponse usersInfo(Slack.UsersInfoRequest req) { } + global Slack.UsersListResponse usersList(Slack.UsersListRequest req) { } + global Slack.UsersLookupByEmailResponse usersLookupByEmail(Slack.UsersLookupByEmailRequest req) { } + global Slack.UsersProfileGetResponse usersProfileGet(Slack.UsersProfileGetRequest req) { } + global Slack.UsersSetActiveResponse usersSetActive(Slack.UsersSetActiveRequest req) { } + global Slack.UsersSetPresenceResponse usersSetPresence(Slack.UsersSetPresenceRequest req) { } + global Slack.ViewsOpenResponse viewsOpen(Slack.ViewsOpenRequest req) { } + global Slack.ViewsPublishResponse viewsPublish(Slack.ViewsPublishRequest req) { } + global Slack.ViewsPushResponse viewsPush(Slack.ViewsPushRequest req) { } + global Slack.ViewsUpdateResponse viewsUpdate(Slack.ViewsUpdateRequest req) { } + global Slack.WorkflowsStepCompletedResponse workflowsStepCompleted(Slack.WorkflowsStepCompletedRequest req) { } + global Slack.WorkflowsStepFailedResponse workflowsStepFailed(Slack.WorkflowsStepFailedRequest req) { } + global Slack.WorkflowsUpdateStepResponse workflowsUpdateStep(Slack.WorkflowsUpdateStepRequest req) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/BotClientMock.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/BotClientMock.cls new file mode 100644 index 0000000..6066328 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/BotClientMock.cls @@ -0,0 +1,96 @@ +global class BotClientMock { + global BotClientMock() { } + global Slack.AppsUninstallResponse appsUninstall(Slack.AppsUninstallRequest req) { } + global Slack.AuthRevokeResponse authRevoke(Slack.AuthRevokeRequest req) { } + global Slack.AuthTeamsListResponse authTeamsList(Slack.AuthTeamsListRequest req) { } + global Slack.AuthTestResponse authTest(Slack.AuthTestRequest req) { } + global Slack.BookmarksAddResponse bookmarksAdd(Slack.BookmarksAddRequest req) { } + global Slack.BookmarksEditResponse bookmarksEdit(Slack.BookmarksEditRequest req) { } + global Slack.BookmarksListResponse bookmarksList(Slack.BookmarksListRequest req) { } + global Slack.BookmarksRemoveResponse bookmarksRemove(Slack.BookmarksRemoveRequest req) { } + global Slack.BotsInfoResponse botsInfo(Slack.BotsInfoRequest req) { } + global Slack.CallsAddResponse callsAdd(Slack.CallsAddRequest req) { } + global Slack.CallsEndResponse callsEnd(Slack.CallsEndRequest req) { } + global Slack.CallsInfoResponse callsInfo(Slack.CallsInfoRequest req) { } + global Slack.CallsParticipantsAddResponse callsParticipantsAdd(Slack.CallsParticipantsAddRequest req) { } + global Slack.CallsParticipantsRemoveResponse callsParticipantsRemove(Slack.CallsParticipantsRemoveRequest req) { } + global Slack.CallsUpdateResponse callsUpdate(Slack.CallsUpdateRequest req) { } + global Slack.ChatDeleteResponse chatDelete(Slack.ChatDeleteRequest req) { } + global Slack.ChatDeleteScheduledMessageResponse chatDeleteScheduledMessage(Slack.ChatDeleteScheduledMessageRequest req) { } + global Slack.ChatGetPermalinkResponse chatGetPermalink(Slack.ChatGetPermalinkRequest req) { } + global Slack.ChatMeMessageResponse chatMeMessage(Slack.ChatMeMessageRequest req) { } + global Slack.ChatPostEphemeralResponse chatPostEphemeral(Slack.ChatPostEphemeralRequest req) { } + global Slack.ChatPostMessageResponse chatPostMessage(Slack.ChatPostMessageRequest req) { } + global Slack.ChatScheduleMessageResponse chatScheduleMessage(Slack.ChatScheduleMessageRequest req) { } + global Slack.ChatScheduledMessagesListResponse chatScheduledMessagesList(Slack.ChatScheduledMessagesListRequest req) { } + global Slack.ChatUpdateResponse chatUpdate(Slack.ChatUpdateRequest req) { } + global Object clone() { } + global Slack.ConversationsAcceptSharedInviteResponse conversationsAcceptSharedInvite(Slack.ConversationsAcceptSharedInviteRequest req) { } + global Slack.ConversationsArchiveResponse conversationsArchive(Slack.ConversationsArchiveRequest req) { } + global Slack.ConversationsCloseResponse conversationsClose(Slack.ConversationsCloseRequest req) { } + global Slack.ConversationsCreateResponse conversationsCreate(Slack.ConversationsCreateRequest req) { } + global Slack.ConversationsDeclineSharedInviteResponse conversationsDeclineSharedInvite(Slack.ConversationsDeclineSharedInviteRequest req) { } + global Slack.ConversationsHistoryResponse conversationsHistory(Slack.ConversationsHistoryRequest req) { } + global Slack.ConversationsInfoResponse conversationsInfo(Slack.ConversationsInfoRequest req) { } + global Slack.ConversationsInviteResponse conversationsInvite(Slack.ConversationsInviteRequest req) { } + global Slack.ConversationsInviteSharedResponse conversationsInviteShared(Slack.ConversationsInviteSharedRequest req) { } + global Slack.ConversationsJoinResponse conversationsJoin(Slack.ConversationsJoinRequest req) { } + global Slack.ConversationsKickResponse conversationsKick(Slack.ConversationsKickRequest req) { } + global Slack.ConversationsLeaveResponse conversationsLeave(Slack.ConversationsLeaveRequest req) { } + global Slack.ConversationsListResponse conversationsList(Slack.ConversationsListRequest req) { } + global Slack.ConversationsListConnectInvitesResponse conversationsListConnectInvites(Slack.ConversationsListConnectInvitesRequest req) { } + global Slack.ConversationsMarkResponse conversationsMark(Slack.ConversationsMarkRequest req) { } + global Slack.ConversationsMembersResponse conversationsMembers(Slack.ConversationsMembersRequest req) { } + global Slack.ConversationsOpenResponse conversationsOpen(Slack.ConversationsOpenRequest req) { } + global Slack.ConversationsRenameResponse conversationsRename(Slack.ConversationsRenameRequest req) { } + global Slack.ConversationsRepliesResponse conversationsReplies(Slack.ConversationsRepliesRequest req) { } + global Slack.ConversationsSetPurposeResponse conversationsSetPurpose(Slack.ConversationsSetPurposeRequest req) { } + global Slack.ConversationsSetTopicResponse conversationsSetTopic(Slack.ConversationsSetTopicRequest req) { } + global Slack.ConversationsUnarchiveResponse conversationsUnarchive(Slack.ConversationsUnarchiveRequest req) { } + global Slack.DndInfoResponse dndInfo(Slack.DndInfoRequest req) { } + global Slack.DndTeamInfoResponse dndTeamInfo(Slack.DndTeamInfoRequest req) { } + global Slack.EmojiListResponse emojiList(Slack.EmojiListRequest req) { } + global Slack.FilesDeleteResponse filesDelete(Slack.FilesDeleteRequest req) { } + global Slack.FilesInfoResponse filesInfo(Slack.FilesInfoRequest req) { } + global Slack.FilesListResponse filesList(Slack.FilesListRequest req) { } + global Slack.FilesRemoteAddResponse filesRemoteAdd(Slack.FilesRemoteAddRequest req) { } + global Slack.FilesRemoteInfoResponse filesRemoteInfo(Slack.FilesRemoteInfoRequest req) { } + global Slack.FilesRemoteListResponse filesRemoteList(Slack.FilesRemoteListRequest req) { } + global Slack.FilesRemoteRemoveResponse filesRemoteRemove(Slack.FilesRemoteRemoveRequest req) { } + global Slack.FilesRemoteShareResponse filesRemoteShare(Slack.FilesRemoteShareRequest req) { } + global Slack.FilesRemoteUpdateResponse filesRemoteUpdate(Slack.FilesRemoteUpdateRequest req) { } + global Slack.MigrationExchangeResponse migrationExchange(Slack.MigrationExchangeRequest req) { } + global Slack.PinsAddResponse pinsAdd(Slack.PinsAddRequest req) { } + global Slack.PinsListResponse pinsList(Slack.PinsListRequest req) { } + global Slack.PinsRemoveResponse pinsRemove(Slack.PinsRemoveRequest req) { } + global Slack.ReactionsAddResponse reactionsAdd(Slack.ReactionsAddRequest req) { } + global Slack.ReactionsGetResponse reactionsGet(Slack.ReactionsGetRequest req) { } + global Slack.ReactionsListResponse reactionsList(Slack.ReactionsListRequest req) { } + global Slack.ReactionsRemoveResponse reactionsRemove(Slack.ReactionsRemoveRequest req) { } + global Slack.StarsAddResponse starsAdd(Slack.StarsAddRequest req) { } + global Slack.TeamInfoResponse teamInfo(Slack.TeamInfoRequest req) { } + global Slack.TeamProfileGetResponse teamProfileGet(Slack.TeamProfileGetRequest req) { } + global Slack.UsergroupsCreateResponse usergroupsCreate(Slack.UsergroupsCreateRequest req) { } + global Slack.UsergroupsDisableResponse usergroupsDisable(Slack.UsergroupsDisableRequest req) { } + global Slack.UsergroupsEnableResponse usergroupsEnable(Slack.UsergroupsEnableRequest req) { } + global Slack.UsergroupsListResponse usergroupsList(Slack.UsergroupsListRequest req) { } + global Slack.UsergroupsUpdateResponse usergroupsUpdate(Slack.UsergroupsUpdateRequest req) { } + global Slack.UsergroupsUsersListResponse usergroupsUsersList(Slack.UsergroupsUsersListRequest req) { } + global Slack.UsergroupsUsersUpdateResponse usergroupsUsersUpdate(Slack.UsergroupsUsersUpdateRequest req) { } + global Slack.UsersConversationsResponse usersConversations(Slack.UsersConversationsRequest req) { } + global Slack.UsersGetPresenceResponse usersGetPresence(Slack.UsersGetPresenceRequest req) { } + global Slack.UsersInfoResponse usersInfo(Slack.UsersInfoRequest req) { } + global Slack.UsersListResponse usersList(Slack.UsersListRequest req) { } + global Slack.UsersLookupByEmailResponse usersLookupByEmail(Slack.UsersLookupByEmailRequest req) { } + global Slack.UsersProfileGetResponse usersProfileGet(Slack.UsersProfileGetRequest req) { } + global Slack.UsersSetActiveResponse usersSetActive(Slack.UsersSetActiveRequest req) { } + global Slack.UsersSetPresenceResponse usersSetPresence(Slack.UsersSetPresenceRequest req) { } + global Slack.ViewsOpenResponse viewsOpen(Slack.ViewsOpenRequest req) { } + global Slack.ViewsPublishResponse viewsPublish(Slack.ViewsPublishRequest req) { } + global Slack.ViewsPushResponse viewsPush(Slack.ViewsPushRequest req) { } + global Slack.ViewsUpdateResponse viewsUpdate(Slack.ViewsUpdateRequest req) { } + global Slack.WorkflowsStepCompletedResponse workflowsStepCompleted(Slack.WorkflowsStepCompletedRequest req) { } + global Slack.WorkflowsStepFailedResponse workflowsStepFailed(Slack.WorkflowsStepFailedRequest req) { } + global Slack.WorkflowsUpdateStepResponse workflowsUpdateStep(Slack.WorkflowsUpdateStepRequest req) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/BotIcons.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/BotIcons.cls new file mode 100644 index 0000000..4908ff6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/BotIcons.cls @@ -0,0 +1,12 @@ +global class BotIcons { + global BotIcons() { } + global Object clone() { } + global String getImage36() { } + global String getImage48() { } + global String getImage72() { } + global void setImage36(String image36) { } + global void setImage48(String image48) { } + global void setImage72(String image72) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/BotProfile.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/BotProfile.cls new file mode 100644 index 0000000..59b210b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/BotProfile.cls @@ -0,0 +1,31 @@ +global class BotProfile { + global BotProfile() { } + global Object clone() { } + global String getAppId() { } + global Slack.BotProfile.Icons getIcons() { } + global String getId() { } + global String getName() { } + global String getTeamId() { } + global Integer getUpdated() { } + global Boolean isDeleted() { } + global void setAppId(String appId) { } + global void setDeleted(Boolean deleted) { } + global void setIcons(Slack.BotProfile.Icons icons) { } + global void setId(String id) { } + global void setName(String name) { } + global void setTeamId(String teamId) { } + global void setUpdated(Integer updated) { } + global String toString() { } +global class Icons { + global BotProfile.Icons() { } + global Object clone() { } + global String getImage36() { } + global String getImage48() { } + global String getImage72() { } + global void setImage36(String image36) { } + global void setImage48(String image48) { } + global void setImage72(String image72) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/BotsInfoRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/BotsInfoRequest.cls new file mode 100644 index 0000000..db2f25f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/BotsInfoRequest.cls @@ -0,0 +1,16 @@ +global class BotsInfoRequest { + global static Slack.BotsInfoRequest.Builder builder() { } + global Object clone() { } + global String getBot() { } + global String getTeamId() { } + global String toString() { } +global class Builder { + global BotsInfoRequest.Builder() { } + global Slack.BotsInfoRequest.Builder bot(String bot) { } + global Slack.BotsInfoRequest build() { } + global Object clone() { } + global Slack.BotsInfoRequest.Builder teamId(String teamId) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/BotsInfoResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/BotsInfoResponse.cls new file mode 100644 index 0000000..eacd9cb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/BotsInfoResponse.cls @@ -0,0 +1,39 @@ +global class BotsInfoResponse { + global BotsInfoResponse() { } + global Object clone() { } + global Slack.BotsInfoResponse.Bot getBot() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setBot(Slack.BotsInfoResponse.Bot bot) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } +global class Bot { + global BotsInfoResponse.Bot() { } + global Object clone() { } + global String getAppId() { } + global Slack.BotIcons getIcons() { } + global String getId() { } + global String getName() { } + global Integer getUpdated() { } + global String getUserId() { } + global Boolean isDeleted() { } + global void setAppId(String appId) { } + global void setDeleted(Boolean deleted) { } + global void setIcons(Slack.BotIcons icons) { } + global void setId(String id) { } + global void setName(String name) { } + global void setUpdated(Integer updated) { } + global void setUserId(String userId) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/Call.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/Call.cls new file mode 100644 index 0000000..f67fa3a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/Call.cls @@ -0,0 +1,26 @@ +global class Call { + global Call() { } + global Object clone() { } + global List getChannels() { } + global Integer getDateEnd() { } + global Integer getDateStart() { } + global String getDesktopAppJoinUrl() { } + global String getExternalDisplayId() { } + global String getExternalUniqueId() { } + global String getId() { } + global String getJoinUrl() { } + global String getTitle() { } + global List getUsers() { } + global void setChannels(List channels) { } + global void setDateEnd(Integer dateEnd) { } + global void setDateStart(Integer dateStart) { } + global void setDesktopAppJoinUrl(String desktopAppJoinUrl) { } + global void setExternalDisplayId(String externalDisplayId) { } + global void setExternalUniqueId(String externalUniqueId) { } + global void setId(String id) { } + global void setJoinUrl(String joinUrl) { } + global void setTitle(String title) { } + global void setUsers(List users) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/CallParticipant.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/CallParticipant.cls new file mode 100644 index 0000000..90dd94f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/CallParticipant.cls @@ -0,0 +1,14 @@ +global class CallParticipant { + global CallParticipant() { } + global Object clone() { } + global String getAvatarUrl() { } + global String getDisplayName() { } + global String getExternalId() { } + global String getSlackId() { } + global void setAvatarUrl(String avatarUrl) { } + global void setDisplayName(String displayName) { } + global void setExternalId(String externalId) { } + global void setSlackId(String slackId) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/CallRejectedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/CallRejectedEvent.cls new file mode 100644 index 0000000..88a97b6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/CallRejectedEvent.cls @@ -0,0 +1,16 @@ +global class CallRejectedEvent { + global CallRejectedEvent() { } + global Object clone() { } + global String getCallId() { } + global String getChannelId() { } + global String getExternalUniqueId() { } + global String getSubtype() { } + global String getType() { } + global String getUserId() { } + global void setCallId(String callId) { } + global void setChannelId(String channelId) { } + global void setExternalUniqueId(String externalUniqueId) { } + global void setUserId(String userId) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/CallableHandler.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/CallableHandler.cls new file mode 100644 index 0000000..df1b27e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/CallableHandler.cls @@ -0,0 +1,4 @@ +global interface CallableHandler { + Slack.ActionResult call(); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/CallsAddRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/CallsAddRequest.cls new file mode 100644 index 0000000..1abf539 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/CallsAddRequest.cls @@ -0,0 +1,28 @@ +global class CallsAddRequest { + global static Slack.CallsAddRequest.Builder builder() { } + global Object clone() { } + global String getCreatedBy() { } + global Integer getDateStart() { } + global String getDesktopAppJoinUrl() { } + global String getExternalDisplayId() { } + global String getExternalUniqueId() { } + global String getJoinUrl() { } + global String getTitle() { } + global List getUsers() { } + global String toString() { } +global class Builder { + global CallsAddRequest.Builder() { } + global Slack.CallsAddRequest build() { } + global Object clone() { } + global Slack.CallsAddRequest.Builder createdBy(String createdBy) { } + global Slack.CallsAddRequest.Builder dateStart(Integer dateStart) { } + global Slack.CallsAddRequest.Builder desktopAppJoinUrl(String desktopAppJoinUrl) { } + global Slack.CallsAddRequest.Builder externalDisplayId(String externalDisplayId) { } + global Slack.CallsAddRequest.Builder externalUniqueId(String externalUniqueId) { } + global Slack.CallsAddRequest.Builder joinUrl(String joinUrl) { } + global Slack.CallsAddRequest.Builder title(String title) { } + global Slack.CallsAddRequest.Builder users(List users) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/CallsAddResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/CallsAddResponse.cls new file mode 100644 index 0000000..fb546c1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/CallsAddResponse.cls @@ -0,0 +1,22 @@ +global class CallsAddResponse { + global CallsAddResponse() { } + global Object clone() { } + global Slack.Call getCall() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.ResponseMetadata getResponseMetadata() { } + global String getWarning() { } + global Boolean isOk() { } + global void setCall(Slack.Call call) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ResponseMetadata responseMetadata) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/CallsEndRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/CallsEndRequest.cls new file mode 100644 index 0000000..80d29b9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/CallsEndRequest.cls @@ -0,0 +1,16 @@ +global class CallsEndRequest { + global static Slack.CallsEndRequest.Builder builder() { } + global Object clone() { } + global Integer getDuration() { } + global String getId() { } + global String toString() { } +global class Builder { + global CallsEndRequest.Builder() { } + global Slack.CallsEndRequest build() { } + global Object clone() { } + global Slack.CallsEndRequest.Builder duration(Integer duration) { } + global Slack.CallsEndRequest.Builder id(String id) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/CallsEndResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/CallsEndResponse.cls new file mode 100644 index 0000000..84a190c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/CallsEndResponse.cls @@ -0,0 +1,22 @@ +global class CallsEndResponse { + global CallsEndResponse() { } + global Object clone() { } + global Slack.Call getCall() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.ResponseMetadata getResponseMetadata() { } + global String getWarning() { } + global Boolean isOk() { } + global void setCall(Slack.Call call) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ResponseMetadata responseMetadata) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/CallsInfoRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/CallsInfoRequest.cls new file mode 100644 index 0000000..b4f0fa2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/CallsInfoRequest.cls @@ -0,0 +1,14 @@ +global class CallsInfoRequest { + global static Slack.CallsInfoRequest.Builder builder() { } + global Object clone() { } + global String getId() { } + global String toString() { } +global class Builder { + global CallsInfoRequest.Builder() { } + global Slack.CallsInfoRequest build() { } + global Object clone() { } + global Slack.CallsInfoRequest.Builder id(String id) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/CallsInfoResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/CallsInfoResponse.cls new file mode 100644 index 0000000..a525b9f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/CallsInfoResponse.cls @@ -0,0 +1,22 @@ +global class CallsInfoResponse { + global CallsInfoResponse() { } + global Object clone() { } + global Slack.Call getCall() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.ResponseMetadata getResponseMetadata() { } + global String getWarning() { } + global Boolean isOk() { } + global void setCall(Slack.Call call) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ResponseMetadata responseMetadata) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/CallsParticipantsAddRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/CallsParticipantsAddRequest.cls new file mode 100644 index 0000000..f86df1f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/CallsParticipantsAddRequest.cls @@ -0,0 +1,16 @@ +global class CallsParticipantsAddRequest { + global static Slack.CallsParticipantsAddRequest.Builder builder() { } + global Object clone() { } + global String getId() { } + global List getUsers() { } + global String toString() { } +global class Builder { + global CallsParticipantsAddRequest.Builder() { } + global Slack.CallsParticipantsAddRequest build() { } + global Object clone() { } + global Slack.CallsParticipantsAddRequest.Builder id(String id) { } + global Slack.CallsParticipantsAddRequest.Builder users(List users) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/CallsParticipantsAddResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/CallsParticipantsAddResponse.cls new file mode 100644 index 0000000..c75c33f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/CallsParticipantsAddResponse.cls @@ -0,0 +1,22 @@ +global class CallsParticipantsAddResponse { + global CallsParticipantsAddResponse() { } + global Object clone() { } + global Slack.Call getCall() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.ResponseMetadata getResponseMetadata() { } + global String getWarning() { } + global Boolean isOk() { } + global void setCall(Slack.Call call) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ResponseMetadata responseMetadata) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/CallsParticipantsRemoveRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/CallsParticipantsRemoveRequest.cls new file mode 100644 index 0000000..57881ca --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/CallsParticipantsRemoveRequest.cls @@ -0,0 +1,16 @@ +global class CallsParticipantsRemoveRequest { + global static Slack.CallsParticipantsRemoveRequest.Builder builder() { } + global Object clone() { } + global String getId() { } + global List getUsers() { } + global String toString() { } +global class Builder { + global CallsParticipantsRemoveRequest.Builder() { } + global Slack.CallsParticipantsRemoveRequest build() { } + global Object clone() { } + global Slack.CallsParticipantsRemoveRequest.Builder id(String id) { } + global Slack.CallsParticipantsRemoveRequest.Builder users(List users) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/CallsParticipantsRemoveResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/CallsParticipantsRemoveResponse.cls new file mode 100644 index 0000000..86d647c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/CallsParticipantsRemoveResponse.cls @@ -0,0 +1,22 @@ +global class CallsParticipantsRemoveResponse { + global CallsParticipantsRemoveResponse() { } + global Object clone() { } + global Slack.Call getCall() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.ResponseMetadata getResponseMetadata() { } + global String getWarning() { } + global Boolean isOk() { } + global void setCall(Slack.Call call) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ResponseMetadata responseMetadata) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/CallsUpdateRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/CallsUpdateRequest.cls new file mode 100644 index 0000000..23248af --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/CallsUpdateRequest.cls @@ -0,0 +1,20 @@ +global class CallsUpdateRequest { + global static Slack.CallsUpdateRequest.Builder builder() { } + global Object clone() { } + global String getDesktopAppJoinUrl() { } + global String getId() { } + global String getJoinUrl() { } + global String getTitle() { } + global String toString() { } +global class Builder { + global CallsUpdateRequest.Builder() { } + global Slack.CallsUpdateRequest build() { } + global Object clone() { } + global Slack.CallsUpdateRequest.Builder desktopAppJoinUrl(String desktopAppJoinUrl) { } + global Slack.CallsUpdateRequest.Builder id(String id) { } + global Slack.CallsUpdateRequest.Builder joinUrl(String joinUrl) { } + global Slack.CallsUpdateRequest.Builder title(String title) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/CallsUpdateResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/CallsUpdateResponse.cls new file mode 100644 index 0000000..82e99a9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/CallsUpdateResponse.cls @@ -0,0 +1,22 @@ +global class CallsUpdateResponse { + global CallsUpdateResponse() { } + global Object clone() { } + global Slack.Call getCall() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.ResponseMetadata getResponseMetadata() { } + global String getWarning() { } + global Boolean isOk() { } + global void setCall(Slack.Call call) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ResponseMetadata responseMetadata) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/Channel.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/Channel.cls new file mode 100644 index 0000000..03ec99b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/Channel.cls @@ -0,0 +1,80 @@ +global class Channel { + global Channel() { } + global Object clone() { } + global Integer getCreated() { } + global String getCreator() { } + global String getEnterpriseId() { } + global String getId() { } + global Integer getIsMoved() { } + global String getLastRead() { } + global Slack.Latest getLatest() { } + global List getMembers() { } + global String getName() { } + global String getNameNormalized() { } + global Integer getNumMembers() { } + global List getPendingShared() { } + global List getPreviousNames() { } + global Double getPriority() { } + global Slack.Purpose getPurpose() { } + global Slack.Topic getTopic() { } + global Integer getUnlinked() { } + global Integer getUnreadCount() { } + global Integer getUnreadCountDisplay() { } + global String getUser() { } + global Boolean isArchived() { } + global Boolean isChannel() { } + global Boolean isExtShared() { } + global Boolean isGeneral() { } + global Boolean isGlobalShared() { } + global Boolean isGroup() { } + global Boolean isIm() { } + global Boolean isMember() { } + global Boolean isMpim() { } + global Boolean isOrgDefault() { } + global Boolean isOrgMandatory() { } + global Boolean isOrgShared() { } + global Boolean isPendingExtShared() { } + global Boolean isPrivateChannel() { } + global Boolean isReadOnly() { } + global Boolean isShared() { } + global Boolean isThreadOnly() { } + global void setArchived(Boolean archived) { } + global void setChannel(Boolean channel) { } + global void setCreated(Integer created) { } + global void setCreator(String creator) { } + global void setEnterpriseId(String enterpriseId) { } + global void setExtShared(Boolean extShared) { } + global void setGeneral(Boolean general) { } + global void setGlobalShared(Boolean globalShared) { } + global void setGroup(Boolean groupValue) { } + global void setId(String id) { } + global void setIm(Boolean im) { } + global void setIsMoved(Integer isMoved) { } + global void setLastRead(String lastRead) { } + global void setLatest(Slack.Latest latest) { } + global void setMember(Boolean member) { } + global void setMembers(List members) { } + global void setMpim(Boolean mpim) { } + global void setName(String name) { } + global void setNameNormalized(String nameNormalized) { } + global void setNumMembers(Integer numMembers) { } + global void setOrgDefault(Boolean orgDefault) { } + global void setOrgMandatory(Boolean orgMandatory) { } + global void setOrgShared(Boolean orgShared) { } + global void setPendingExtShared(Boolean pendingExtShared) { } + global void setPendingShared(List pendingShared) { } + global void setPreviousNames(List previousNames) { } + global void setPriority(Double priority) { } + global void setPrivateChannel(Boolean privateChannel) { } + global void setPurpose(Slack.Purpose purpose) { } + global void setReadOnly(Boolean readOnly) { } + global void setShared(Boolean shared) { } + global void setThreadOnly(Boolean threadOnly) { } + global void setTopic(Slack.Topic topic) { } + global void setUnlinked(Integer unlinked) { } + global void setUnreadCount(Integer unreadCount) { } + global void setUnreadCountDisplay(Integer unreadCountDisplay) { } + global void setUser(String user) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelArchiveEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelArchiveEvent.cls new file mode 100644 index 0000000..00e9747 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelArchiveEvent.cls @@ -0,0 +1,16 @@ +global class ChannelArchiveEvent { + global ChannelArchiveEvent() { } + global Object clone() { } + global String getChannel() { } + global String getEventTs() { } + global Integer getIsMoved() { } + global String getSubtype() { } + global String getType() { } + global String getUser() { } + global void setChannel(String channel) { } + global void setEventTs(String eventTs) { } + global void setIsMoved(Integer isMoved) { } + global void setUser(String user) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelCreatedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelCreatedEvent.cls new file mode 100644 index 0000000..f10ade8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelCreatedEvent.cls @@ -0,0 +1,35 @@ +global class ChannelCreatedEvent { + global ChannelCreatedEvent() { } + global Object clone() { } + global Slack.ChannelCreatedEvent.Channel getChannel() { } + global String getEventTs() { } + global String getSubtype() { } + global String getType() { } + global void setChannel(Slack.ChannelCreatedEvent.Channel channel) { } + global void setEventTs(String eventTs) { } + global String toString() { } +global class Channel { + global ChannelCreatedEvent.Channel() { } + global Object clone() { } + global String getContextTeamId() { } + global Integer getCreated() { } + global String getCreator() { } + global String getId() { } + global String getName() { } + global String getNameNormalized() { } + global Boolean isChannel() { } + global Boolean isOrgShared() { } + global Boolean isShared() { } + global void setChannel(Boolean isChannel) { } + global void setContextTeamId(String contextTeamId) { } + global void setCreated(Integer created) { } + global void setCreator(String creator) { } + global void setId(String id) { } + global void setName(String name) { } + global void setNameNormalized(String nameNormalized) { } + global void setOrgShared(Boolean isOrgShared) { } + global void setShared(Boolean isShared) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelDeletedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelDeletedEvent.cls new file mode 100644 index 0000000..5c031fe --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelDeletedEvent.cls @@ -0,0 +1,14 @@ +global class ChannelDeletedEvent { + global ChannelDeletedEvent() { } + global Object clone() { } + global String getActorId() { } + global String getChannel() { } + global String getEventTs() { } + global String getSubtype() { } + global String getType() { } + global void setActorId(String actorId) { } + global void setChannel(String channel) { } + global void setEventTs(String eventTs) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelHistoryChangedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelHistoryChangedEvent.cls new file mode 100644 index 0000000..bc4284d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelHistoryChangedEvent.cls @@ -0,0 +1,14 @@ +global class ChannelHistoryChangedEvent { + global ChannelHistoryChangedEvent() { } + global Object clone() { } + global String getEventTs() { } + global String getLatest() { } + global String getSubtype() { } + global String getTs() { } + global String getType() { } + global void setEventTs(String eventTs) { } + global void setLatest(String latest) { } + global void setTs(String ts) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelIdChangedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelIdChangedEvent.cls new file mode 100644 index 0000000..10c1e8d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelIdChangedEvent.cls @@ -0,0 +1,14 @@ +global class ChannelIdChangedEvent { + global ChannelIdChangedEvent() { } + global Object clone() { } + global String getEventTs() { } + global String getNewChannelId() { } + global String getOldChannelId() { } + global String getSubtype() { } + global String getType() { } + global void setEventTs(String eventTs) { } + global void setNewChannelId(String newChannelId) { } + global void setOldChannelId(String oldChannelId) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelLeftEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelLeftEvent.cls new file mode 100644 index 0000000..09cd90a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelLeftEvent.cls @@ -0,0 +1,14 @@ +global class ChannelLeftEvent { + global ChannelLeftEvent() { } + global Object clone() { } + global String getActorId() { } + global String getChannel() { } + global String getEventTs() { } + global String getSubtype() { } + global String getType() { } + global void setActorId(String actorId) { } + global void setChannel(String channel) { } + global void setEventTs(String eventTs) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelRenameEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelRenameEvent.cls new file mode 100644 index 0000000..260f5ee --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelRenameEvent.cls @@ -0,0 +1,29 @@ +global class ChannelRenameEvent { + global ChannelRenameEvent() { } + global Object clone() { } + global Slack.ChannelRenameEvent.Channel getChannel() { } + global String getEventTs() { } + global String getSubtype() { } + global String getType() { } + global void setChannel(Slack.ChannelRenameEvent.Channel channel) { } + global void setEventTs(String eventTs) { } + global String toString() { } +global class Channel { + global ChannelRenameEvent.Channel() { } + global Object clone() { } + global Integer getCreated() { } + global String getId() { } + global String getName() { } + global String getNameNormalized() { } + global Boolean isChannel() { } + global Boolean isMpim() { } + global void setChannel(Boolean isChannel) { } + global void setCreated(Integer created) { } + global void setId(String id) { } + global void setMpim(Boolean isMpim) { } + global void setName(String name) { } + global void setNameNormalized(String nameNormalized) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelSharedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelSharedEvent.cls new file mode 100644 index 0000000..6a013f5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelSharedEvent.cls @@ -0,0 +1,14 @@ +global class ChannelSharedEvent { + global ChannelSharedEvent() { } + global Object clone() { } + global String getChannel() { } + global String getConnectedTeamId() { } + global String getEventTs() { } + global String getSubtype() { } + global String getType() { } + global void setChannel(String channel) { } + global void setConnectedTeamId(String connectedTeamId) { } + global void setEventTs(String eventTs) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelUnarchiveEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelUnarchiveEvent.cls new file mode 100644 index 0000000..5ab3472 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelUnarchiveEvent.cls @@ -0,0 +1,14 @@ +global class ChannelUnarchiveEvent { + global ChannelUnarchiveEvent() { } + global Object clone() { } + global String getChannel() { } + global String getEventTs() { } + global String getSubtype() { } + global String getType() { } + global String getUser() { } + global void setChannel(String channel) { } + global void setEventTs(String eventTs) { } + global void setUser(String user) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelUnsharedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelUnsharedEvent.cls new file mode 100644 index 0000000..8452d10 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ChannelUnsharedEvent.cls @@ -0,0 +1,16 @@ +global class ChannelUnsharedEvent { + global ChannelUnsharedEvent() { } + global Object clone() { } + global String getChannel() { } + global String getEventTs() { } + global String getPreviouslyConnectedTeamId() { } + global String getSubtype() { } + global String getType() { } + global Boolean isExtShared() { } + global void setChannel(String channel) { } + global void setEventTs(String eventTs) { } + global void setExtShared(Boolean isExtShared) { } + global void setPreviouslyConnectedTeamId(String previouslyConnectedTeamId) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ChatDeleteRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatDeleteRequest.cls new file mode 100644 index 0000000..3c4815a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatDeleteRequest.cls @@ -0,0 +1,16 @@ +global class ChatDeleteRequest { + global static Slack.ChatDeleteRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global String getTs() { } + global String toString() { } +global class Builder { + global ChatDeleteRequest.Builder() { } + global Slack.ChatDeleteRequest build() { } + global Slack.ChatDeleteRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.ChatDeleteRequest.Builder ts(String ts) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ChatDeleteResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatDeleteResponse.cls new file mode 100644 index 0000000..621f27c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatDeleteResponse.cls @@ -0,0 +1,24 @@ +global class ChatDeleteResponse { + global ChatDeleteResponse() { } + global Object clone() { } + global String getChannel() { } + global String getDeprecatedArgument() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getTs() { } + global String getWarning() { } + global Boolean isOk() { } + global void setChannel(String channel) { } + global void setDeprecatedArgument(String deprecatedArgument) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setTs(String ts) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ChatDeleteScheduledMessageRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatDeleteScheduledMessageRequest.cls new file mode 100644 index 0000000..5a5cf2e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatDeleteScheduledMessageRequest.cls @@ -0,0 +1,16 @@ +global class ChatDeleteScheduledMessageRequest { + global static Slack.ChatDeleteScheduledMessageRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global String getScheduledMessageId() { } + global String toString() { } +global class Builder { + global ChatDeleteScheduledMessageRequest.Builder() { } + global Slack.ChatDeleteScheduledMessageRequest build() { } + global Slack.ChatDeleteScheduledMessageRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.ChatDeleteScheduledMessageRequest.Builder scheduledMessageId(String scheduledMessageId) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ChatDeleteScheduledMessageResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatDeleteScheduledMessageResponse.cls new file mode 100644 index 0000000..c2d2fdf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatDeleteScheduledMessageResponse.cls @@ -0,0 +1,18 @@ +global class ChatDeleteScheduledMessageResponse { + global ChatDeleteScheduledMessageResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ChatGetPermalinkRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatGetPermalinkRequest.cls new file mode 100644 index 0000000..129f3c0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatGetPermalinkRequest.cls @@ -0,0 +1,16 @@ +global class ChatGetPermalinkRequest { + global static Slack.ChatGetPermalinkRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global String getMessageTs() { } + global String toString() { } +global class Builder { + global ChatGetPermalinkRequest.Builder() { } + global Slack.ChatGetPermalinkRequest build() { } + global Slack.ChatGetPermalinkRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.ChatGetPermalinkRequest.Builder messageTs(String messageTs) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ChatGetPermalinkResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatGetPermalinkResponse.cls new file mode 100644 index 0000000..963a2f7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatGetPermalinkResponse.cls @@ -0,0 +1,22 @@ +global class ChatGetPermalinkResponse { + global ChatGetPermalinkResponse() { } + global Object clone() { } + global String getChannel() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getPermalink() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setChannel(String channel) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setPermalink(String permalink) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ChatMeMessageRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatMeMessageRequest.cls new file mode 100644 index 0000000..d5318b2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatMeMessageRequest.cls @@ -0,0 +1,16 @@ +global class ChatMeMessageRequest { + global static Slack.ChatMeMessageRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global String getText() { } + global String toString() { } +global class Builder { + global ChatMeMessageRequest.Builder() { } + global Slack.ChatMeMessageRequest build() { } + global Slack.ChatMeMessageRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.ChatMeMessageRequest.Builder text(String text) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ChatMeMessageResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatMeMessageResponse.cls new file mode 100644 index 0000000..2a49940 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatMeMessageResponse.cls @@ -0,0 +1,22 @@ +global class ChatMeMessageResponse { + global ChatMeMessageResponse() { } + global Object clone() { } + global String getChannel() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getTs() { } + global String getWarning() { } + global Boolean isOk() { } + global void setChannel(String channel) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setTs(String ts) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ChatPostEphemeralRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatPostEphemeralRequest.cls new file mode 100644 index 0000000..38cb068 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatPostEphemeralRequest.cls @@ -0,0 +1,33 @@ +global class ChatPostEphemeralRequest { + global static Slack.ChatPostEphemeralRequest.Builder builder() { } + global Object clone() { } + global String getAttachmentsAsString() { } + global String getChannel() { } + global String getIconEmoji() { } + global String getIconUrl() { } + global String getParse() { } + global String getText() { } + global String getThreadTs() { } + global String getUser() { } + global String getUsername() { } + global Boolean isLinkNames() { } + global String toString() { } +global class Builder { + global ChatPostEphemeralRequest.Builder() { } + global Slack.ChatPostEphemeralRequest.Builder attachmentsAsString(String attachmentsAsString) { } + global Slack.ChatPostEphemeralRequest build() { } + global Slack.ChatPostEphemeralRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.ChatPostEphemeralRequest.Builder iconEmoji(String iconEmoji) { } + global Slack.ChatPostEphemeralRequest.Builder iconUrl(String iconUrl) { } + global Slack.ChatPostEphemeralRequest.Builder linkNames(Boolean linkNames) { } + global Slack.ChatPostEphemeralRequest.Builder parse(String parse) { } + global Slack.ChatPostEphemeralRequest.Builder text(String text) { } + global Slack.ChatPostEphemeralRequest.Builder threadTs(String threadTs) { } + global Slack.ChatPostEphemeralRequest.Builder user(String user) { } + global Slack.ChatPostEphemeralRequest.Builder username(String username) { } + global Slack.ChatPostEphemeralRequest.Builder viewReference(Slack.ViewReference viewReference) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ChatPostEphemeralResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatPostEphemeralResponse.cls new file mode 100644 index 0000000..94debe1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatPostEphemeralResponse.cls @@ -0,0 +1,22 @@ +global class ChatPostEphemeralResponse { + global ChatPostEphemeralResponse() { } + global Object clone() { } + global String getDeprecatedArgument() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getMessageTs() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setDeprecatedArgument(String deprecatedArgument) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setMessageTs(String messageTs) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ChatPostMessageRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatPostMessageRequest.cls new file mode 100644 index 0000000..cbe95cc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatPostMessageRequest.cls @@ -0,0 +1,39 @@ +global class ChatPostMessageRequest { + global static Slack.ChatPostMessageRequest.Builder builder() { } + global Object clone() { } + global String getAttachmentsAsString() { } + global String getChannel() { } + global String getIconEmoji() { } + global String getIconUrl() { } + global String getParse() { } + global String getText() { } + global String getThreadTs() { } + global String getUsername() { } + global Boolean isLinkNames() { } + global Boolean isMrkdwn() { } + global Boolean isReplyBroadcast() { } + global Boolean isUnfurlLinks() { } + global Boolean isUnfurlMedia() { } + global String toString() { } +global class Builder { + global ChatPostMessageRequest.Builder() { } + global Slack.ChatPostMessageRequest.Builder attachmentsAsString(String attachmentsAsString) { } + global Slack.ChatPostMessageRequest build() { } + global Slack.ChatPostMessageRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.ChatPostMessageRequest.Builder iconEmoji(String iconEmoji) { } + global Slack.ChatPostMessageRequest.Builder iconUrl(String iconUrl) { } + global Slack.ChatPostMessageRequest.Builder linkNames(Boolean linkNames) { } + global Slack.ChatPostMessageRequest.Builder mrkdwn(Boolean mrkdwn) { } + global Slack.ChatPostMessageRequest.Builder parse(String parse) { } + global Slack.ChatPostMessageRequest.Builder replyBroadcast(Boolean replyBroadcast) { } + global Slack.ChatPostMessageRequest.Builder text(String text) { } + global Slack.ChatPostMessageRequest.Builder threadTs(String threadTs) { } + global Slack.ChatPostMessageRequest.Builder unfurlLinks(Boolean unfurlLinks) { } + global Slack.ChatPostMessageRequest.Builder unfurlMedia(Boolean unfurlMedia) { } + global Slack.ChatPostMessageRequest.Builder username(String username) { } + global Slack.ChatPostMessageRequest.Builder viewReference(Slack.ViewReference viewReference) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ChatPostMessageResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatPostMessageResponse.cls new file mode 100644 index 0000000..cfa3aa9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatPostMessageResponse.cls @@ -0,0 +1,30 @@ +global class ChatPostMessageResponse { + global ChatPostMessageResponse() { } + global Object clone() { } + global String getChannel() { } + global String getDeprecatedArgument() { } + global String getError() { } + global List getErrors() { } + global Map> getHttpResponseHeaders() { } + global Slack.Message getMessage() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.ErrorResponseMetadata getResponseMetadata() { } + global String getTs() { } + global String getWarning() { } + global Boolean isOk() { } + global void setChannel(String channel) { } + global void setDeprecatedArgument(String deprecatedArgument) { } + global void setError(String error) { } + global void setErrors(List errors) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setMessage(Slack.Message message) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ErrorResponseMetadata responseMetadata) { } + global void setTs(String ts) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ChatScheduleMessageRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatScheduleMessageRequest.cls new file mode 100644 index 0000000..9780ff5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatScheduleMessageRequest.cls @@ -0,0 +1,33 @@ +global class ChatScheduleMessageRequest { + global static Slack.ChatScheduleMessageRequest.Builder builder() { } + global Object clone() { } + global String getAttachmentsAsString() { } + global String getChannel() { } + global String getParse() { } + global Integer getPostAt() { } + global String getText() { } + global String getThreadTs() { } + global Boolean isLinkNames() { } + global Boolean isReplyBroadcast() { } + global Boolean isUnfurlLinks() { } + global Boolean isUnfurlMedia() { } + global String toString() { } +global class Builder { + global ChatScheduleMessageRequest.Builder() { } + global Slack.ChatScheduleMessageRequest.Builder attachmentsAsString(String attachmentsAsString) { } + global Slack.ChatScheduleMessageRequest build() { } + global Slack.ChatScheduleMessageRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.ChatScheduleMessageRequest.Builder linkNames(Boolean linkNames) { } + global Slack.ChatScheduleMessageRequest.Builder parse(String parse) { } + global Slack.ChatScheduleMessageRequest.Builder postAt(Integer postAt) { } + global Slack.ChatScheduleMessageRequest.Builder replyBroadcast(Boolean replyBroadcast) { } + global Slack.ChatScheduleMessageRequest.Builder text(String text) { } + global Slack.ChatScheduleMessageRequest.Builder threadTs(String threadTs) { } + global Slack.ChatScheduleMessageRequest.Builder unfurlLinks(Boolean unfurlLinks) { } + global Slack.ChatScheduleMessageRequest.Builder unfurlMedia(Boolean unfurlMedia) { } + global Slack.ChatScheduleMessageRequest.Builder viewReference(Slack.ViewReference viewReference) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ChatScheduleMessageResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatScheduleMessageResponse.cls new file mode 100644 index 0000000..af0f23f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatScheduleMessageResponse.cls @@ -0,0 +1,47 @@ +global class ChatScheduleMessageResponse { + global ChatScheduleMessageResponse() { } + global Object clone() { } + global String getChannel() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global Slack.ChatScheduleMessageResponse.ScheduledMessage getMessage() { } + global String getNeeded() { } + global Integer getPostAt() { } + global String getProvided() { } + global Slack.ErrorResponseMetadata getResponseMetadata() { } + global String getScheduledMessageId() { } + global String getWarning() { } + global Boolean isOk() { } + global void setChannel(String channel) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setMessage(Slack.ChatScheduleMessageResponse.ScheduledMessage message) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setPostAt(Integer postAt) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ErrorResponseMetadata responseMetadata) { } + global void setScheduledMessageId(String scheduledMessageId) { } + global void setWarning(String warning) { } + global String toString() { } +global class ScheduledMessage { + global ChatScheduleMessageResponse.ScheduledMessage() { } + global Object clone() { } + global String getAppId() { } + global String getBotId() { } + global Slack.BotProfile getBotProfile() { } + global String getTeam() { } + global String getText() { } + global String getType() { } + global String getUser() { } + global void setAppId(String appId) { } + global void setBotId(String botId) { } + global void setBotProfile(Slack.BotProfile botProfile) { } + global void setTeam(String team) { } + global void setText(String text) { } + global void setType(String type) { } + global void setUser(String user) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ChatScheduledMessagesListRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatScheduledMessagesListRequest.cls new file mode 100644 index 0000000..6a4ff55 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatScheduledMessagesListRequest.cls @@ -0,0 +1,24 @@ +global class ChatScheduledMessagesListRequest { + global static Slack.ChatScheduledMessagesListRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global String getCursor() { } + global String getLatest() { } + global Integer getLimit() { } + global String getOldest() { } + global String getTeamId() { } + global String toString() { } +global class Builder { + global ChatScheduledMessagesListRequest.Builder() { } + global Slack.ChatScheduledMessagesListRequest build() { } + global Slack.ChatScheduledMessagesListRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.ChatScheduledMessagesListRequest.Builder cursor(String cursor) { } + global Slack.ChatScheduledMessagesListRequest.Builder latest(String latest) { } + global Slack.ChatScheduledMessagesListRequest.Builder limitValue(Integer limitValue) { } + global Slack.ChatScheduledMessagesListRequest.Builder oldest(String oldest) { } + global Slack.ChatScheduledMessagesListRequest.Builder teamId(String teamId) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ChatScheduledMessagesListResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatScheduledMessagesListResponse.cls new file mode 100644 index 0000000..7073ac0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatScheduledMessagesListResponse.cls @@ -0,0 +1,37 @@ +global class ChatScheduledMessagesListResponse { + global ChatScheduledMessagesListResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.ResponseMetadata getResponseMetadata() { } + global List getScheduledMessages() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ResponseMetadata responseMetadata) { } + global void setScheduledMessages(List scheduledMessages) { } + global void setWarning(String warning) { } + global String toString() { } +global class ScheduledMessage { + global ChatScheduledMessagesListResponse.ScheduledMessage() { } + global Object clone() { } + global String getChannelId() { } + global Integer getDateCreated() { } + global String getId() { } + global Integer getPostAt() { } + global String getText() { } + global void setChannelId(String channelId) { } + global void setDateCreated(Integer dateCreated) { } + global void setId(String id) { } + global void setPostAt(Integer postAt) { } + global void setText(String text) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ChatUpdateRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatUpdateRequest.cls new file mode 100644 index 0000000..5e462dd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatUpdateRequest.cls @@ -0,0 +1,25 @@ +global class ChatUpdateRequest { + global static Slack.ChatUpdateRequest.Builder builder() { } + global Object clone() { } + global String getAttachmentsAsString() { } + global String getChannel() { } + global String getParse() { } + global String getText() { } + global String getTs() { } + global Boolean isLinkNames() { } + global String toString() { } +global class Builder { + global ChatUpdateRequest.Builder() { } + global Slack.ChatUpdateRequest.Builder attachmentsAsString(String attachmentsAsString) { } + global Slack.ChatUpdateRequest build() { } + global Slack.ChatUpdateRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.ChatUpdateRequest.Builder linkNames(Boolean linkNames) { } + global Slack.ChatUpdateRequest.Builder parse(String parse) { } + global Slack.ChatUpdateRequest.Builder text(String text) { } + global Slack.ChatUpdateRequest.Builder ts(String ts) { } + global Slack.ChatUpdateRequest.Builder viewReference(Slack.ViewReference viewReference) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ChatUpdateResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatUpdateResponse.cls new file mode 100644 index 0000000..cc220d3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ChatUpdateResponse.cls @@ -0,0 +1,30 @@ +global class ChatUpdateResponse { + global ChatUpdateResponse() { } + global Object clone() { } + global String getChannel() { } + global String getDeprecatedArgument() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global Slack.Message getMessage() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.ErrorResponseMetadata getResponseMetadata() { } + global String getText() { } + global String getTs() { } + global String getWarning() { } + global Boolean isOk() { } + global void setChannel(String channel) { } + global void setDeprecatedArgument(String deprecatedArgument) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setMessage(Slack.Message message) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ErrorResponseMetadata responseMetadata) { } + global void setText(String text) { } + global void setTs(String ts) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConnectChannel.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConnectChannel.cls new file mode 100644 index 0000000..1ced9af --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConnectChannel.cls @@ -0,0 +1,14 @@ +global class ConnectChannel { + global ConnectChannel() { } + global Object clone() { } + global String getId() { } + global Boolean getIsIm() { } + global Boolean getIsPrivate() { } + global String getName() { } + global void setId(String id) { } + global void setIsIm(Boolean isIm) { } + global void setIsPrivate(Boolean isPrivate) { } + global void setName(String name) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConnectInvite.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConnectInvite.cls new file mode 100644 index 0000000..e116b8f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConnectInvite.cls @@ -0,0 +1,20 @@ +global class ConnectInvite { + global ConnectInvite() { } + global Object clone() { } + global List getAcceptances() { } + global Slack.ConnectChannel getChannel() { } + global Integer getDateLastUpdated() { } + global String getDirection() { } + global Slack.ConnectInviteDetail getInvite() { } + global String getInviteType() { } + global String getStatus() { } + global void setAcceptances(List acceptances) { } + global void setChannel(Slack.ConnectChannel channel) { } + global void setDateLastUpdated(Integer dateLastUpdated) { } + global void setDirection(String direction) { } + global void setInvite(Slack.ConnectInviteDetail invite) { } + global void setInviteType(String inviteType) { } + global void setStatus(String status) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConnectInviteAcceptance.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConnectInviteAcceptance.cls new file mode 100644 index 0000000..7e8d36e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConnectInviteAcceptance.cls @@ -0,0 +1,20 @@ +global class ConnectInviteAcceptance { + global ConnectInviteAcceptance() { } + global Object clone() { } + global Slack.ConnectTeam getAcceptingTeam() { } + global Slack.ConnectUser getAcceptingUser() { } + global String getApprovalStatus() { } + global Integer getDateAccepted() { } + global Integer getDateInvalid() { } + global Integer getDateLastUpdated() { } + global List getReviews() { } + global void setAcceptingTeam(Slack.ConnectTeam acceptingTeam) { } + global void setAcceptingUser(Slack.ConnectUser acceptingUser) { } + global void setApprovalStatus(String approvalStatus) { } + global void setDateAccepted(Integer dateAccepted) { } + global void setDateInvalid(Integer dateInvalid) { } + global void setDateLastUpdated(Integer dateLastUpdated) { } + global void setReviews(List reviews) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConnectInviteDetail.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConnectInviteDetail.cls new file mode 100644 index 0000000..7c43bc2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConnectInviteDetail.cls @@ -0,0 +1,22 @@ +global class ConnectInviteDetail { + global ConnectInviteDetail() { } + global Object clone() { } + global Integer getDateCreated() { } + global Integer getDateInvalid() { } + global String getId() { } + global Slack.ConnectTeam getInvitingTeam() { } + global Slack.ConnectUser getInvitingUser() { } + global String getLink() { } + global String getRecipientEmail() { } + global String getRecipientUserId() { } + global void setDateCreated(Integer dateCreated) { } + global void setDateInvalid(Integer dateInvalid) { } + global void setId(String id) { } + global void setInvitingTeam(Slack.ConnectTeam invitingTeam) { } + global void setInvitingUser(Slack.ConnectUser invitingUser) { } + global void setLink(String link) { } + global void setRecipientEmail(String recipientEmail) { } + global void setRecipientUserId(String recipientUserId) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConnectInviteReview.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConnectInviteReview.cls new file mode 100644 index 0000000..265e183 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConnectInviteReview.cls @@ -0,0 +1,12 @@ +global class ConnectInviteReview { + global ConnectInviteReview() { } + global Object clone() { } + global Integer getDateReview() { } + global Slack.ConnectTeam getReviewingTeam() { } + global String getType() { } + global void setDateReview(Integer dateReview) { } + global void setReviewingTeam(Slack.ConnectTeam reviewingTeam) { } + global void setType(String type) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConnectTeam.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConnectTeam.cls new file mode 100644 index 0000000..b9c51cc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConnectTeam.cls @@ -0,0 +1,20 @@ +global class ConnectTeam { + global ConnectTeam() { } + global Object clone() { } + global String getAvatarBaseUrl() { } + global Integer getDateCreated() { } + global String getDomain() { } + global Slack.TeamIcon getIcon() { } + global String getId() { } + global String getName() { } + global Boolean isVerified() { } + global void setAvatarBaseUrl(String avatarBaseUrl) { } + global void setDateCreated(Integer dateCreated) { } + global void setDomain(String domain) { } + global void setIcon(Slack.TeamIcon icon) { } + global void setId(String id) { } + global void setName(String name) { } + global void setVerified(Boolean isVerified) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConnectUser.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConnectUser.cls new file mode 100644 index 0000000..7ba3781 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConnectUser.cls @@ -0,0 +1,18 @@ +global class ConnectUser { + global ConnectUser() { } + global Object clone() { } + global String getId() { } + global String getName() { } + global Slack.ConnectUserProfile getProfile() { } + global String getTeamId() { } + global Integer getUpdated() { } + global String getWhoCanShareContactCard() { } + global void setId(String id) { } + global void setName(String name) { } + global void setProfile(Slack.ConnectUserProfile profile) { } + global void setTeamId(String teamId) { } + global void setUpdated(Integer updated) { } + global void setWhoCanShareContactCard(String whoCanShareContactCard) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConnectUserProfile.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConnectUserProfile.cls new file mode 100644 index 0000000..2d2602e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConnectUserProfile.cls @@ -0,0 +1,38 @@ +global class ConnectUserProfile { + global ConnectUserProfile() { } + global Object clone() { } + global String getAvatarHash() { } + global String getDisplayName() { } + global String getDisplayNameNormalized() { } + global String getEmail() { } + global String getImage1024() { } + global String getImage192() { } + global String getImage24() { } + global String getImage32() { } + global String getImage48() { } + global String getImage512() { } + global String getImage72() { } + global String getImageOriginal() { } + global Boolean getIsCustomImage() { } + global String getRealName() { } + global String getRealNameNormalized() { } + global String getTeam() { } + global void setAvatarHash(String avatarHash) { } + global void setDisplayName(String displayName) { } + global void setDisplayNameNormalized(String displayNameNormalized) { } + global void setEmail(String email) { } + global void setImage1024(String image1024) { } + global void setImage192(String image192) { } + global void setImage24(String image24) { } + global void setImage32(String image32) { } + global void setImage48(String image48) { } + global void setImage512(String image512) { } + global void setImage72(String image72) { } + global void setImageOriginal(String imageOriginal) { } + global void setIsCustomImage(Boolean isCustomImage) { } + global void setRealName(String realName) { } + global void setRealNameNormalized(String realNameNormalized) { } + global void setTeam(String team) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/Conversation.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/Conversation.cls new file mode 100644 index 0000000..25a2aec --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/Conversation.cls @@ -0,0 +1,108 @@ +global class Conversation { + global Conversation() { } + global Object clone() { } + global List getConnectedLimitedTeamIds() { } + global List getConnectedTeamIds() { } + global String getContextTeamId() { } + global String getConversationHostId() { } + global Integer getCreated() { } + global String getCreator() { } + global Integer getDateConnected() { } + global String getEnterpriseId() { } + global String getId() { } + global List getInternalTeamIds() { } + global Integer getIsMoved() { } + global Boolean getIsUserDeleted() { } + global String getLastRead() { } + global Slack.Latest getLatest() { } + global String getLocale() { } + global String getName() { } + global String getNameNormalized() { } + global Integer getNumOfMembers() { } + global String getParentConversation() { } + global List getPendingConnectedTeamIds() { } + global List getPendingShared() { } + global List getPreviousNames() { } + global Double getPriority() { } + global Slack.Purpose getPurpose() { } + global List getSharedTeamIds() { } + global Slack.Topic getTopic() { } + global Integer getUnlinked() { } + global Integer getUnreadCount() { } + global Integer getUnreadCountDisplay() { } + global Long getUpdated() { } + global String getUser() { } + global Boolean isArchived() { } + global Boolean isChannel() { } + global Boolean isExtShared() { } + global Boolean isGeneral() { } + global Boolean isGlobalShared() { } + global Boolean isGroup() { } + global Boolean isIm() { } + global Boolean isMember() { } + global Boolean isMpim() { } + global Boolean isNonThreadable() { } + global Boolean isOpen() { } + global Boolean isOrgDefault() { } + global Boolean isOrgMandatory() { } + global Boolean isOrgShared() { } + global Boolean isPendingExtShared() { } + global Boolean isPrivate() { } + global Boolean isReadOnly() { } + global Boolean isShared() { } + global Boolean isStarred() { } + global Boolean isThreadOnly() { } + global void setArchived(Boolean isArchived) { } + global void setChannel(Boolean isChannel) { } + global void setConnectedLimitedTeamIds(List connectedLimitedTeamIds) { } + global void setConnectedTeamIds(List connectedTeamIds) { } + global void setContextTeamId(String contextTeamId) { } + global void setConversationHostId(String conversationHostId) { } + global void setCreated(Integer created) { } + global void setCreator(String creator) { } + global void setDateConnected(Integer dateConnected) { } + global void setEnterpriseId(String enterpriseId) { } + global void setExtShared(Boolean isExtShared) { } + global void setGeneral(Boolean isGeneral) { } + global void setGlobalShared(Boolean globalShared) { } + global void setGroup(Boolean isGroup) { } + global void setId(String id) { } + global void setIm(Boolean isIm) { } + global void setInternalTeamIds(List internalTeamIds) { } + global void setIsMoved(Integer isMoved) { } + global void setIsUserDeleted(Boolean isUserDeleted) { } + global void setLastRead(String lastRead) { } + global void setLatest(Slack.Latest latest) { } + global void setLocale(String locale) { } + global void setMember(Boolean isMember) { } + global void setMpim(Boolean isMpim) { } + global void setName(String name) { } + global void setNameNormalized(String nameNormalized) { } + global void setNonThreadable(Boolean isNonThreadable) { } + global void setNumOfMembers(Integer numOfMembers) { } + global void setOpen(Boolean open) { } + global void setOrgDefault(Boolean orgDefault) { } + global void setOrgMandatory(Boolean orgMandatory) { } + global void setOrgShared(Boolean isOrgShared) { } + global void setParentConversation(String parentConversation) { } + global void setPendingConnectedTeamIds(List pendingConnectedTeamIds) { } + global void setPendingExtShared(Boolean isPendingExtShared) { } + global void setPendingShared(List pendingShared) { } + global void setPreviousNames(List previousNames) { } + global void setPriority(Double priority) { } + global void setPrivate(Boolean isPrivate) { } + global void setPurpose(Slack.Purpose purpose) { } + global void setReadOnly(Boolean isReadOnly) { } + global void setShared(Boolean isShared) { } + global void setSharedTeamIds(List sharedTeamIds) { } + global void setStarred(Boolean isStarred) { } + global void setThreadOnly(Boolean isThreadOnly) { } + global void setTopic(Slack.Topic topic) { } + global void setUnlinked(Integer unlinked) { } + global void setUnreadCount(Integer unreadCount) { } + global void setUnreadCountDisplay(Integer unreadCountDisplay) { } + global void setUpdated(Long updated) { } + global void setUser(String user) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationType.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationType.cls new file mode 100644 index 0000000..5108198 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationType.cls @@ -0,0 +1,6 @@ +global enum ConversationType { +IM, +MPIM, +PRIVATE_CHANNEL, +PUBLIC_CHANNEL +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsAcceptSharedInviteRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsAcceptSharedInviteRequest.cls new file mode 100644 index 0000000..7bc1a17 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsAcceptSharedInviteRequest.cls @@ -0,0 +1,24 @@ +global class ConversationsAcceptSharedInviteRequest { + global static Slack.ConversationsAcceptSharedInviteRequest.Builder builder() { } + global Object clone() { } + global String getChannelId() { } + global String getChannelName() { } + global Boolean getFreeTrialAccept() { } + global String getInviteId() { } + global Boolean getIsPrivate() { } + global String getTeamId() { } + global String toString() { } +global class Builder { + global ConversationsAcceptSharedInviteRequest.Builder() { } + global Slack.ConversationsAcceptSharedInviteRequest build() { } + global Slack.ConversationsAcceptSharedInviteRequest.Builder channelId(String channelId) { } + global Slack.ConversationsAcceptSharedInviteRequest.Builder channelName(String channelName) { } + global Object clone() { } + global Slack.ConversationsAcceptSharedInviteRequest.Builder freeTrialAccept(Boolean freeTrialAccept) { } + global Slack.ConversationsAcceptSharedInviteRequest.Builder inviteId(String inviteId) { } + global Slack.ConversationsAcceptSharedInviteRequest.Builder isPrivate(Boolean isPrivate) { } + global Slack.ConversationsAcceptSharedInviteRequest.Builder teamId(String teamId) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsAcceptSharedInviteResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsAcceptSharedInviteResponse.cls new file mode 100644 index 0000000..f330aa3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsAcceptSharedInviteResponse.cls @@ -0,0 +1,26 @@ +global class ConversationsAcceptSharedInviteResponse { + global ConversationsAcceptSharedInviteResponse() { } + global Object clone() { } + global Boolean getCanOpenScdm() { } + global String getChannelId() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getInviteId() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isImplicitApproval() { } + global Boolean isOk() { } + global void setCanOpenScdm(Boolean canOpenScdm) { } + global void setChannelId(String channelId) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setImplicitApproval(Boolean implicitApproval) { } + global void setInviteId(String inviteId) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsArchiveRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsArchiveRequest.cls new file mode 100644 index 0000000..8cb5cf6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsArchiveRequest.cls @@ -0,0 +1,14 @@ +global class ConversationsArchiveRequest { + global static Slack.ConversationsArchiveRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global String toString() { } +global class Builder { + global ConversationsArchiveRequest.Builder() { } + global Slack.ConversationsArchiveRequest build() { } + global Slack.ConversationsArchiveRequest.Builder channel(String channel) { } + global Object clone() { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsArchiveResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsArchiveResponse.cls new file mode 100644 index 0000000..9ca8f7f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsArchiveResponse.cls @@ -0,0 +1,18 @@ +global class ConversationsArchiveResponse { + global ConversationsArchiveResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsCloseRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsCloseRequest.cls new file mode 100644 index 0000000..7047b45 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsCloseRequest.cls @@ -0,0 +1,14 @@ +global class ConversationsCloseRequest { + global static Slack.ConversationsCloseRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global String toString() { } +global class Builder { + global ConversationsCloseRequest.Builder() { } + global Slack.ConversationsCloseRequest build() { } + global Slack.ConversationsCloseRequest.Builder channel(String channel) { } + global Object clone() { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsCloseResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsCloseResponse.cls new file mode 100644 index 0000000..fa7b4b5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsCloseResponse.cls @@ -0,0 +1,22 @@ +global class ConversationsCloseResponse { + global ConversationsCloseResponse() { } + global Object clone() { } + global Boolean getAlreadyClosed() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global Boolean getNoOp() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setAlreadyClosed(Boolean alreadyClosed) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setNoOp(Boolean noOp) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsCreateRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsCreateRequest.cls new file mode 100644 index 0000000..50bcc7f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsCreateRequest.cls @@ -0,0 +1,18 @@ +global class ConversationsCreateRequest { + global static Slack.ConversationsCreateRequest.Builder builder() { } + global Object clone() { } + global String getName() { } + global String getTeamId() { } + global Boolean isPrivate() { } + global String toString() { } +global class Builder { + global ConversationsCreateRequest.Builder() { } + global Slack.ConversationsCreateRequest build() { } + global Object clone() { } + global Slack.ConversationsCreateRequest.Builder isPrivate(Boolean isPrivate) { } + global Slack.ConversationsCreateRequest.Builder name(String name) { } + global Slack.ConversationsCreateRequest.Builder teamId(String teamId) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsCreateResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsCreateResponse.cls new file mode 100644 index 0000000..52c9720 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsCreateResponse.cls @@ -0,0 +1,22 @@ +global class ConversationsCreateResponse { + global ConversationsCreateResponse() { } + global Object clone() { } + global Slack.Conversation getChannel() { } + global String getDetail() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setChannel(Slack.Conversation channel) { } + global void setDetail(String detail) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsDeclineSharedInviteRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsDeclineSharedInviteRequest.cls new file mode 100644 index 0000000..5895e8f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsDeclineSharedInviteRequest.cls @@ -0,0 +1,16 @@ +global class ConversationsDeclineSharedInviteRequest { + global static Slack.ConversationsDeclineSharedInviteRequest.Builder builder() { } + global Object clone() { } + global String getInviteId() { } + global String getTargetTeam() { } + global String toString() { } +global class Builder { + global ConversationsDeclineSharedInviteRequest.Builder() { } + global Slack.ConversationsDeclineSharedInviteRequest build() { } + global Object clone() { } + global Slack.ConversationsDeclineSharedInviteRequest.Builder inviteId(String inviteId) { } + global Slack.ConversationsDeclineSharedInviteRequest.Builder targetTeam(String targetTeam) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsDeclineSharedInviteResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsDeclineSharedInviteResponse.cls new file mode 100644 index 0000000..4df1aaa --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsDeclineSharedInviteResponse.cls @@ -0,0 +1,18 @@ +global class ConversationsDeclineSharedInviteResponse { + global ConversationsDeclineSharedInviteResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsHistoryRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsHistoryRequest.cls new file mode 100644 index 0000000..4a2a152 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsHistoryRequest.cls @@ -0,0 +1,26 @@ +global class ConversationsHistoryRequest { + global static Slack.ConversationsHistoryRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global String getCursor() { } + global String getLatest() { } + global Integer getLimit() { } + global String getOldest() { } + global Boolean isIncludeAllMetadata() { } + global Boolean isInclusive() { } + global String toString() { } +global class Builder { + global ConversationsHistoryRequest.Builder() { } + global Slack.ConversationsHistoryRequest build() { } + global Slack.ConversationsHistoryRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.ConversationsHistoryRequest.Builder cursor(String cursor) { } + global Slack.ConversationsHistoryRequest.Builder includeAllMetadata(Boolean includeAllMetadata) { } + global Slack.ConversationsHistoryRequest.Builder inclusive(Boolean inclusive) { } + global Slack.ConversationsHistoryRequest.Builder latest(String latest) { } + global Slack.ConversationsHistoryRequest.Builder limitValue(Integer limitValue) { } + global Slack.ConversationsHistoryRequest.Builder oldest(String oldest) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsHistoryResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsHistoryResponse.cls new file mode 100644 index 0000000..1d424eb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsHistoryResponse.cls @@ -0,0 +1,34 @@ +global class ConversationsHistoryResponse { + global ConversationsHistoryResponse() { } + global Object clone() { } + global Integer getChannelActionsCount() { } + global String getChannelActionsTs() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getLatest() { } + global List getMessages() { } + global String getNeeded() { } + global String getOldest() { } + global Integer getPinCount() { } + global String getProvided() { } + global Slack.ResponseMetadata getResponseMetadata() { } + global String getWarning() { } + global Boolean isHasMore() { } + global Boolean isOk() { } + global void setChannelActionsCount(Integer channelActionsCount) { } + global void setChannelActionsTs(String channelActionsTs) { } + global void setError(String error) { } + global void setHasMore(Boolean hasMore) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setLatest(String latest) { } + global void setMessages(List messages) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setOldest(String oldest) { } + global void setPinCount(Integer pinCount) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ResponseMetadata responseMetadata) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsInfoRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsInfoRequest.cls new file mode 100644 index 0000000..645fe4e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsInfoRequest.cls @@ -0,0 +1,18 @@ +global class ConversationsInfoRequest { + global static Slack.ConversationsInfoRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global Boolean isIncludeLocale() { } + global Boolean isIncludeNumMembers() { } + global String toString() { } +global class Builder { + global ConversationsInfoRequest.Builder() { } + global Slack.ConversationsInfoRequest build() { } + global Slack.ConversationsInfoRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.ConversationsInfoRequest.Builder includeLocale(Boolean includeLocale) { } + global Slack.ConversationsInfoRequest.Builder includeNumMembers(Boolean includeNumMembers) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsInfoResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsInfoResponse.cls new file mode 100644 index 0000000..52f9432 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsInfoResponse.cls @@ -0,0 +1,20 @@ +global class ConversationsInfoResponse { + global ConversationsInfoResponse() { } + global Object clone() { } + global Slack.Conversation getChannel() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setChannel(Slack.Conversation channel) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsInviteRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsInviteRequest.cls new file mode 100644 index 0000000..6ea0bda --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsInviteRequest.cls @@ -0,0 +1,16 @@ +global class ConversationsInviteRequest { + global static Slack.ConversationsInviteRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global List getUsers() { } + global String toString() { } +global class Builder { + global ConversationsInviteRequest.Builder() { } + global Slack.ConversationsInviteRequest build() { } + global Slack.ConversationsInviteRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.ConversationsInviteRequest.Builder users(List users) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsInviteResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsInviteResponse.cls new file mode 100644 index 0000000..2818ac7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsInviteResponse.cls @@ -0,0 +1,31 @@ +global class ConversationsInviteResponse { + global ConversationsInviteResponse() { } + global Object clone() { } + global Slack.Conversation getChannel() { } + global String getError() { } + global List getErrors() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setChannel(Slack.Conversation channel) { } + global void setError(String error) { } + global void setErrors(List errors) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } +global class Error { + global ConversationsInviteResponse.Error() { } + global Object clone() { } + global String getError() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setOk(Boolean ok) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsInviteSharedRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsInviteSharedRequest.cls new file mode 100644 index 0000000..3a7e7e7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsInviteSharedRequest.cls @@ -0,0 +1,20 @@ +global class ConversationsInviteSharedRequest { + global static Slack.ConversationsInviteSharedRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global List getEmails() { } + global Boolean getExternalLimited() { } + global List getUserIds() { } + global String toString() { } +global class Builder { + global ConversationsInviteSharedRequest.Builder() { } + global Slack.ConversationsInviteSharedRequest build() { } + global Slack.ConversationsInviteSharedRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.ConversationsInviteSharedRequest.Builder emails(List emails) { } + global Slack.ConversationsInviteSharedRequest.Builder externalLimited(Boolean externalLimited) { } + global Slack.ConversationsInviteSharedRequest.Builder userIds(List userIds) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsInviteSharedResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsInviteSharedResponse.cls new file mode 100644 index 0000000..8acb484 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsInviteSharedResponse.cls @@ -0,0 +1,26 @@ +global class ConversationsInviteSharedResponse { + global ConversationsInviteSharedResponse() { } + global Object clone() { } + global String getConfCode() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getInviteId() { } + global String getNeeded() { } + global String getProvided() { } + global String getUrl() { } + global String getWarning() { } + global Boolean isLegacySharedChannel() { } + global Boolean isOk() { } + global void setConfCode(String confCode) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setInviteId(String inviteId) { } + global void setLegacySharedChannel(Boolean isLegacySharedChannel) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setUrl(String url) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsJoinRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsJoinRequest.cls new file mode 100644 index 0000000..d553773 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsJoinRequest.cls @@ -0,0 +1,14 @@ +global class ConversationsJoinRequest { + global static Slack.ConversationsJoinRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global String toString() { } +global class Builder { + global ConversationsJoinRequest.Builder() { } + global Slack.ConversationsJoinRequest build() { } + global Slack.ConversationsJoinRequest.Builder channel(String channel) { } + global Object clone() { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsJoinResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsJoinResponse.cls new file mode 100644 index 0000000..80033c0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsJoinResponse.cls @@ -0,0 +1,22 @@ +global class ConversationsJoinResponse { + global ConversationsJoinResponse() { } + global Object clone() { } + global Slack.Conversation getChannel() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.WarningResponseMetadata getResponseMetadata() { } + global String getWarning() { } + global Boolean isOk() { } + global void setChannel(Slack.Conversation channel) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.WarningResponseMetadata responseMetadata) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsKickRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsKickRequest.cls new file mode 100644 index 0000000..5514297 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsKickRequest.cls @@ -0,0 +1,16 @@ +global class ConversationsKickRequest { + global static Slack.ConversationsKickRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global String getUser() { } + global String toString() { } +global class Builder { + global ConversationsKickRequest.Builder() { } + global Slack.ConversationsKickRequest build() { } + global Slack.ConversationsKickRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.ConversationsKickRequest.Builder user(String user) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsKickResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsKickResponse.cls new file mode 100644 index 0000000..8a02c55 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsKickResponse.cls @@ -0,0 +1,18 @@ +global class ConversationsKickResponse { + global ConversationsKickResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsLeaveRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsLeaveRequest.cls new file mode 100644 index 0000000..fd16a8d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsLeaveRequest.cls @@ -0,0 +1,14 @@ +global class ConversationsLeaveRequest { + global static Slack.ConversationsLeaveRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global String toString() { } +global class Builder { + global ConversationsLeaveRequest.Builder() { } + global Slack.ConversationsLeaveRequest build() { } + global Slack.ConversationsLeaveRequest.Builder channel(String channel) { } + global Object clone() { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsLeaveResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsLeaveResponse.cls new file mode 100644 index 0000000..3799759 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsLeaveResponse.cls @@ -0,0 +1,20 @@ +global class ConversationsLeaveResponse { + global ConversationsLeaveResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isNotInChannel() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setNotInChannel(Boolean notInChannel) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsListConnectInvitesRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsListConnectInvitesRequest.cls new file mode 100644 index 0000000..348b979 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsListConnectInvitesRequest.cls @@ -0,0 +1,18 @@ +global class ConversationsListConnectInvitesRequest { + global static Slack.ConversationsListConnectInvitesRequest.Builder builder() { } + global Object clone() { } + global Integer getCount() { } + global String getCursor() { } + global String getTeamId() { } + global String toString() { } +global class Builder { + global ConversationsListConnectInvitesRequest.Builder() { } + global Slack.ConversationsListConnectInvitesRequest build() { } + global Object clone() { } + global Slack.ConversationsListConnectInvitesRequest.Builder count(Integer count) { } + global Slack.ConversationsListConnectInvitesRequest.Builder cursor(String cursor) { } + global Slack.ConversationsListConnectInvitesRequest.Builder teamId(String teamId) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsListConnectInvitesResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsListConnectInvitesResponse.cls new file mode 100644 index 0000000..8ea095f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsListConnectInvitesResponse.cls @@ -0,0 +1,24 @@ +global class ConversationsListConnectInvitesResponse { + global ConversationsListConnectInvitesResponse() { } + global Object clone() { } + global String getArg() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global List getInvites() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.ResponseMetadata getResponseMetadata() { } + global String getWarning() { } + global Boolean isOk() { } + global void setArg(String arg) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setInvites(List invites) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ResponseMetadata responseMetadata) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsListRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsListRequest.cls new file mode 100644 index 0000000..b5443f2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsListRequest.cls @@ -0,0 +1,21 @@ +global class ConversationsListRequest { + global static Slack.ConversationsListRequest.Builder builder() { } + global Object clone() { } + global String getCursor() { } + global Integer getLimit() { } + global String getTeamId() { } + global Boolean isExcludeArchived() { } + global String toString() { } +global class Builder { + global ConversationsListRequest.Builder() { } + global Slack.ConversationsListRequest build() { } + global Object clone() { } + global Slack.ConversationsListRequest.Builder cursor(String cursor) { } + global Slack.ConversationsListRequest.Builder excludeArchived(Boolean excludeArchived) { } + global Slack.ConversationsListRequest.Builder limitValue(Integer limitValue) { } + global Slack.ConversationsListRequest.Builder teamId(String teamId) { } + global Slack.ConversationsListRequest.Builder types(List types) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsListResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsListResponse.cls new file mode 100644 index 0000000..edf6c62 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsListResponse.cls @@ -0,0 +1,22 @@ +global class ConversationsListResponse { + global ConversationsListResponse() { } + global Object clone() { } + global List getChannels() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.ResponseMetadata getResponseMetadata() { } + global String getWarning() { } + global Boolean isOk() { } + global void setChannels(List channels) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ResponseMetadata responseMetadata) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsMarkRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsMarkRequest.cls new file mode 100644 index 0000000..4ad5a96 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsMarkRequest.cls @@ -0,0 +1,16 @@ +global class ConversationsMarkRequest { + global static Slack.ConversationsMarkRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global String getTs() { } + global String toString() { } +global class Builder { + global ConversationsMarkRequest.Builder() { } + global Slack.ConversationsMarkRequest build() { } + global Slack.ConversationsMarkRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.ConversationsMarkRequest.Builder ts(String ts) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsMarkResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsMarkResponse.cls new file mode 100644 index 0000000..aadc2a7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsMarkResponse.cls @@ -0,0 +1,20 @@ +global class ConversationsMarkResponse { + global ConversationsMarkResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.ResponseMetadata getResponseMetadata() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ResponseMetadata responseMetadata) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsMembersRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsMembersRequest.cls new file mode 100644 index 0000000..315613f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsMembersRequest.cls @@ -0,0 +1,18 @@ +global class ConversationsMembersRequest { + global static Slack.ConversationsMembersRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global String getCursor() { } + global Integer getLimit() { } + global String toString() { } +global class Builder { + global ConversationsMembersRequest.Builder() { } + global Slack.ConversationsMembersRequest build() { } + global Slack.ConversationsMembersRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.ConversationsMembersRequest.Builder cursor(String cursor) { } + global Slack.ConversationsMembersRequest.Builder limitValue(Integer limitValue) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsMembersResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsMembersResponse.cls new file mode 100644 index 0000000..675ac1d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsMembersResponse.cls @@ -0,0 +1,22 @@ +global class ConversationsMembersResponse { + global ConversationsMembersResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global List getMembers() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.ResponseMetadata getResponseMetadata() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setMembers(List members) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ResponseMetadata responseMetadata) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsOpenRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsOpenRequest.cls new file mode 100644 index 0000000..efe6272 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsOpenRequest.cls @@ -0,0 +1,18 @@ +global class ConversationsOpenRequest { + global static Slack.ConversationsOpenRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global List getUsers() { } + global Boolean isReturnIm() { } + global String toString() { } +global class Builder { + global ConversationsOpenRequest.Builder() { } + global Slack.ConversationsOpenRequest build() { } + global Slack.ConversationsOpenRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.ConversationsOpenRequest.Builder returnIm(Boolean returnIm) { } + global Slack.ConversationsOpenRequest.Builder users(List users) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsOpenResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsOpenResponse.cls new file mode 100644 index 0000000..9c0f706 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsOpenResponse.cls @@ -0,0 +1,24 @@ +global class ConversationsOpenResponse { + global ConversationsOpenResponse() { } + global Object clone() { } + global Slack.Conversation getChannel() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isAlreadyOpen() { } + global Boolean isNoOp() { } + global Boolean isOk() { } + global void setAlreadyOpen(Boolean alreadyOpen) { } + global void setChannel(Slack.Conversation channel) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setNoOp(Boolean noOp) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsRenameRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsRenameRequest.cls new file mode 100644 index 0000000..9602803 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsRenameRequest.cls @@ -0,0 +1,16 @@ +global class ConversationsRenameRequest { + global static Slack.ConversationsRenameRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global String getName() { } + global String toString() { } +global class Builder { + global ConversationsRenameRequest.Builder() { } + global Slack.ConversationsRenameRequest build() { } + global Slack.ConversationsRenameRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.ConversationsRenameRequest.Builder name(String name) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsRenameResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsRenameResponse.cls new file mode 100644 index 0000000..62551bc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsRenameResponse.cls @@ -0,0 +1,20 @@ +global class ConversationsRenameResponse { + global ConversationsRenameResponse() { } + global Object clone() { } + global Slack.Conversation getChannel() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setChannel(Slack.Conversation channel) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsRepliesRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsRepliesRequest.cls new file mode 100644 index 0000000..0baacc9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsRepliesRequest.cls @@ -0,0 +1,28 @@ +global class ConversationsRepliesRequest { + global static Slack.ConversationsRepliesRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global String getCursor() { } + global String getLatest() { } + global Integer getLimit() { } + global String getOldest() { } + global String getTs() { } + global Boolean isIncludeAllMetadata() { } + global Boolean isInclusive() { } + global String toString() { } +global class Builder { + global ConversationsRepliesRequest.Builder() { } + global Slack.ConversationsRepliesRequest build() { } + global Slack.ConversationsRepliesRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.ConversationsRepliesRequest.Builder cursor(String cursor) { } + global Slack.ConversationsRepliesRequest.Builder includeAllMetadata(Boolean includeAllMetadata) { } + global Slack.ConversationsRepliesRequest.Builder inclusive(Boolean inclusive) { } + global Slack.ConversationsRepliesRequest.Builder latest(String latest) { } + global Slack.ConversationsRepliesRequest.Builder limitValue(Integer limitValue) { } + global Slack.ConversationsRepliesRequest.Builder oldest(String oldest) { } + global Slack.ConversationsRepliesRequest.Builder ts(String ts) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsRepliesResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsRepliesResponse.cls new file mode 100644 index 0000000..79baf31 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsRepliesResponse.cls @@ -0,0 +1,24 @@ +global class ConversationsRepliesResponse { + global ConversationsRepliesResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global List getMessages() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.ResponseMetadata getResponseMetadata() { } + global String getWarning() { } + global Boolean isHasMore() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHasMore(Boolean hasMore) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setMessages(List messages) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ResponseMetadata responseMetadata) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsSetPurposeRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsSetPurposeRequest.cls new file mode 100644 index 0000000..c4ac677 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsSetPurposeRequest.cls @@ -0,0 +1,16 @@ +global class ConversationsSetPurposeRequest { + global static Slack.ConversationsSetPurposeRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global String getPurpose() { } + global String toString() { } +global class Builder { + global ConversationsSetPurposeRequest.Builder() { } + global Slack.ConversationsSetPurposeRequest build() { } + global Slack.ConversationsSetPurposeRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.ConversationsSetPurposeRequest.Builder purpose(String purpose) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsSetPurposeResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsSetPurposeResponse.cls new file mode 100644 index 0000000..5599634 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsSetPurposeResponse.cls @@ -0,0 +1,20 @@ +global class ConversationsSetPurposeResponse { + global ConversationsSetPurposeResponse() { } + global Object clone() { } + global Slack.Conversation getChannel() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setChannel(Slack.Conversation channel) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsSetTopicRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsSetTopicRequest.cls new file mode 100644 index 0000000..83c674e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsSetTopicRequest.cls @@ -0,0 +1,16 @@ +global class ConversationsSetTopicRequest { + global static Slack.ConversationsSetTopicRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global String getTopic() { } + global String toString() { } +global class Builder { + global ConversationsSetTopicRequest.Builder() { } + global Slack.ConversationsSetTopicRequest build() { } + global Slack.ConversationsSetTopicRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.ConversationsSetTopicRequest.Builder topic(String topic) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsSetTopicResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsSetTopicResponse.cls new file mode 100644 index 0000000..5b0833c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsSetTopicResponse.cls @@ -0,0 +1,20 @@ +global class ConversationsSetTopicResponse { + global ConversationsSetTopicResponse() { } + global Object clone() { } + global Slack.Conversation getChannel() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setChannel(Slack.Conversation channel) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsUnarchiveRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsUnarchiveRequest.cls new file mode 100644 index 0000000..c5e6bbf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsUnarchiveRequest.cls @@ -0,0 +1,14 @@ +global class ConversationsUnarchiveRequest { + global static Slack.ConversationsUnarchiveRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global String toString() { } +global class Builder { + global ConversationsUnarchiveRequest.Builder() { } + global Slack.ConversationsUnarchiveRequest build() { } + global Slack.ConversationsUnarchiveRequest.Builder channel(String channel) { } + global Object clone() { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsUnarchiveResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsUnarchiveResponse.cls new file mode 100644 index 0000000..c70a44a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ConversationsUnarchiveResponse.cls @@ -0,0 +1,18 @@ +global class ConversationsUnarchiveResponse { + global ConversationsUnarchiveResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/DndEndDndRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/DndEndDndRequest.cls new file mode 100644 index 0000000..f842a68 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/DndEndDndRequest.cls @@ -0,0 +1,12 @@ +global class DndEndDndRequest { + global static Slack.DndEndDndRequest.Builder builder() { } + global Object clone() { } + global String toString() { } +global class Builder { + global DndEndDndRequest.Builder() { } + global Slack.DndEndDndRequest build() { } + global Object clone() { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/DndEndDndResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/DndEndDndResponse.cls new file mode 100644 index 0000000..67ec228 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/DndEndDndResponse.cls @@ -0,0 +1,18 @@ +global class DndEndDndResponse { + global DndEndDndResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/DndEndSnoozeRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/DndEndSnoozeRequest.cls new file mode 100644 index 0000000..c8db0da --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/DndEndSnoozeRequest.cls @@ -0,0 +1,12 @@ +global class DndEndSnoozeRequest { + global static Slack.DndEndSnoozeRequest.Builder builder() { } + global Object clone() { } + global String toString() { } +global class Builder { + global DndEndSnoozeRequest.Builder() { } + global Slack.DndEndSnoozeRequest build() { } + global Object clone() { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/DndEndSnoozeResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/DndEndSnoozeResponse.cls new file mode 100644 index 0000000..635ab45 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/DndEndSnoozeResponse.cls @@ -0,0 +1,26 @@ +global class DndEndSnoozeResponse { + global DndEndSnoozeResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global Integer getNextDndEndTs() { } + global Integer getNextDndStartTs() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isDndEnabled() { } + global Boolean isOk() { } + global Boolean isSnoozeEnabled() { } + global void setDndEnabled(Boolean dndEnabled) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setNextDndEndTs(Integer nextDndEndTs) { } + global void setNextDndStartTs(Integer nextDndStartTs) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setSnoozeEnabled(Boolean snoozeEnabled) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/DndInfoRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/DndInfoRequest.cls new file mode 100644 index 0000000..cbe6327 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/DndInfoRequest.cls @@ -0,0 +1,16 @@ +global class DndInfoRequest { + global static Slack.DndInfoRequest.Builder builder() { } + global Object clone() { } + global String getTeamId() { } + global String getUser() { } + global String toString() { } +global class Builder { + global DndInfoRequest.Builder() { } + global Slack.DndInfoRequest build() { } + global Object clone() { } + global Slack.DndInfoRequest.Builder teamId(String teamId) { } + global Slack.DndInfoRequest.Builder user(String user) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/DndInfoResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/DndInfoResponse.cls new file mode 100644 index 0000000..788aa50 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/DndInfoResponse.cls @@ -0,0 +1,30 @@ +global class DndInfoResponse { + global DndInfoResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global Integer getNextDndEndTs() { } + global Integer getNextDndStartTs() { } + global String getProvided() { } + global Integer getSnoozeEndtime() { } + global Integer getSnoozeRemaining() { } + global String getWarning() { } + global Boolean isDndEnabled() { } + global Boolean isOk() { } + global Boolean isSnoozeEnabled() { } + global void setDndEnabled(Boolean dndEnabled) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setNextDndEndTs(Integer nextDndEndTs) { } + global void setNextDndStartTs(Integer nextDndStartTs) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setSnoozeEnabled(Boolean snoozeEnabled) { } + global void setSnoozeEndtime(Integer snoozeEndtime) { } + global void setSnoozeRemaining(Integer snoozeRemaining) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/DndSetSnoozeRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/DndSetSnoozeRequest.cls new file mode 100644 index 0000000..e1f57f6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/DndSetSnoozeRequest.cls @@ -0,0 +1,14 @@ +global class DndSetSnoozeRequest { + global static Slack.DndSetSnoozeRequest.Builder builder() { } + global Object clone() { } + global Integer getNumMinutes() { } + global String toString() { } +global class Builder { + global DndSetSnoozeRequest.Builder() { } + global Slack.DndSetSnoozeRequest build() { } + global Object clone() { } + global Slack.DndSetSnoozeRequest.Builder numMinutes(Integer numMinutes) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/DndSetSnoozeResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/DndSetSnoozeResponse.cls new file mode 100644 index 0000000..5c48575 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/DndSetSnoozeResponse.cls @@ -0,0 +1,26 @@ +global class DndSetSnoozeResponse { + global DndSetSnoozeResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Integer getSnoozeEndtime() { } + global Integer getSnoozeRemaining() { } + global String getWarning() { } + global Boolean isOk() { } + global Boolean isSnoozeEnabled() { } + global Boolean isSnoozeIsIndefinite() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setSnoozeEnabled(Boolean snoozeEnabled) { } + global void setSnoozeEndtime(Integer snoozeEndtime) { } + global void setSnoozeIsIndefinite(Boolean snoozeIsIndefinite) { } + global void setSnoozeRemaining(Integer snoozeRemaining) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/DndTeamInfoRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/DndTeamInfoRequest.cls new file mode 100644 index 0000000..9640257 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/DndTeamInfoRequest.cls @@ -0,0 +1,16 @@ +global class DndTeamInfoRequest { + global static Slack.DndTeamInfoRequest.Builder builder() { } + global Object clone() { } + global String getTeamId() { } + global List getUsers() { } + global String toString() { } +global class Builder { + global DndTeamInfoRequest.Builder() { } + global Slack.DndTeamInfoRequest build() { } + global Object clone() { } + global Slack.DndTeamInfoRequest.Builder teamId(String teamId) { } + global Slack.DndTeamInfoRequest.Builder users(List users) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/DndTeamInfoResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/DndTeamInfoResponse.cls new file mode 100644 index 0000000..99e59d9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/DndTeamInfoResponse.cls @@ -0,0 +1,31 @@ +global class DndTeamInfoResponse { + global DndTeamInfoResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Map getUsers() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setUsers(Map users) { } + global void setWarning(String warning) { } + global String toString() { } +global class DndTeamMemberInfo { + global DndTeamInfoResponse.DndTeamMemberInfo() { } + global Object clone() { } + global Integer getNextDndEndTs() { } + global Integer getNextDndStartTs() { } + global Boolean isDndEnabled() { } + global void setDndEnabled(Boolean dndEnabled) { } + global void setNextDndEndTs(Integer nextDndEndTs) { } + global void setNextDndStartTs(Integer nextDndStartTs) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/DndUpdatedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/DndUpdatedEvent.cls new file mode 100644 index 0000000..e04595a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/DndUpdatedEvent.cls @@ -0,0 +1,31 @@ +global class DndUpdatedEvent { + global DndUpdatedEvent() { } + global Object clone() { } + global Slack.DndUpdatedEvent.DndStatus getDndStatus() { } + global String getEventTs() { } + global String getSubtype() { } + global String getType() { } + global String getUser() { } + global void setDndStatus(Slack.DndUpdatedEvent.DndStatus dndStatus) { } + global void setEventTs(String eventTs) { } + global void setUser(String user) { } + global String toString() { } +global class DndStatus { + global DndUpdatedEvent.DndStatus() { } + global Object clone() { } + global Integer getNextDndEndTs() { } + global Integer getNextDndStartTs() { } + global Integer getSnoozeEndtime() { } + global Integer getSnoozeRemaining() { } + global Boolean isDndEnabled() { } + global Boolean isSnoozeEnabled() { } + global void setDndEnabled(Boolean dndEnabled) { } + global void setNextDndEndTs(Integer nextDndEndTs) { } + global void setNextDndStartTs(Integer nextDndStartTs) { } + global void setSnoozeEnabled(Boolean snoozeEnabled) { } + global void setSnoozeEndtime(Integer snoozeEndtime) { } + global void setSnoozeRemaining(Integer snoozeRemaining) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/DndUpdatedUserEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/DndUpdatedUserEvent.cls new file mode 100644 index 0000000..550fb25 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/DndUpdatedUserEvent.cls @@ -0,0 +1,25 @@ +global class DndUpdatedUserEvent { + global DndUpdatedUserEvent() { } + global Object clone() { } + global Slack.DndUpdatedUserEvent.DndStatus getDndStatus() { } + global String getEventTs() { } + global String getSubtype() { } + global String getType() { } + global String getUser() { } + global void setDndStatus(Slack.DndUpdatedUserEvent.DndStatus dndStatus) { } + global void setEventTs(String eventTs) { } + global void setUser(String user) { } + global String toString() { } +global class DndStatus { + global DndUpdatedUserEvent.DndStatus() { } + global Object clone() { } + global Integer getNextDndEndTs() { } + global Integer getNextDndStartTs() { } + global Boolean isDndEnabled() { } + global void setDndEnabled(Boolean dndEnabled) { } + global void setNextDndEndTs(Integer nextDndEndTs) { } + global void setNextDndStartTs(Integer nextDndStartTs) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/EmailDomainChangedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/EmailDomainChangedEvent.cls new file mode 100644 index 0000000..cf6ef8c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/EmailDomainChangedEvent.cls @@ -0,0 +1,12 @@ +global class EmailDomainChangedEvent { + global EmailDomainChangedEvent() { } + global Object clone() { } + global String getEmailDomain() { } + global String getEventTs() { } + global String getSubtype() { } + global String getType() { } + global void setEmailDomain(String emailDomain) { } + global void setEventTs(String eventTs) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/EmojiChangedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/EmojiChangedEvent.cls new file mode 100644 index 0000000..8bf8e6e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/EmojiChangedEvent.cls @@ -0,0 +1,21 @@ +global class EmojiChangedEvent { + global EmojiChangedEvent() { } + global Object clone() { } + global String getEventTs() { } + global String getName() { } + global List getNames() { } + global String getNewName() { } + global String getOldName() { } + global String getSubtype() { } + global String getType() { } + global String getValue() { } + global void setEventTs(String eventTs) { } + global void setName(String name) { } + global void setNames(List names) { } + global void setNewName(String newName) { } + global void setOldName(String oldName) { } + global void setSubtype(String subtype) { } + global void setValue(String value) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/EmojiListRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/EmojiListRequest.cls new file mode 100644 index 0000000..8f886a6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/EmojiListRequest.cls @@ -0,0 +1,14 @@ +global class EmojiListRequest { + global static Slack.EmojiListRequest.Builder builder() { } + global Object clone() { } + global Boolean getIncludeCategories() { } + global String toString() { } +global class Builder { + global EmojiListRequest.Builder() { } + global Slack.EmojiListRequest build() { } + global Object clone() { } + global Slack.EmojiListRequest.Builder includeCategories(Boolean includeCategories) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/EmojiListResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/EmojiListResponse.cls new file mode 100644 index 0000000..65a0d92 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/EmojiListResponse.cls @@ -0,0 +1,35 @@ +global class EmojiListResponse { + global EmojiListResponse() { } + global Object clone() { } + global String getCacheTs() { } + global List getCategories() { } + global String getCategoriesVersion() { } + global Map getEmoji() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setCacheTs(String cacheTs) { } + global void setCategories(List categories) { } + global void setCategoriesVersion(String categoriesVersion) { } + global void setEmoji(Map emoji) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } +global class Category { + global EmojiListResponse.Category() { } + global Object clone() { } + global List getEmojiNames() { } + global String getName() { } + global void setEmojiNames(List emojiNames) { } + global void setName(String name) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ErrorReport.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ErrorReport.cls new file mode 100644 index 0000000..c852187 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ErrorReport.cls @@ -0,0 +1,22 @@ +global class ErrorReport { + global static Slack.ErrorReport.Builder builder() { } + global Object clone() { } + global String getChannelId() { } + global String getMessage() { } + global Slack.ViewReference getMessageView() { } + global Slack.ViewReference getModalView() { } + global String getUserId() { } + global Boolean isEmpty() { } +global class Builder { + global ErrorReport.Builder() { } + global Slack.ErrorReport build() { } + global Slack.ErrorReport.Builder channelId(String channelId) { } + global Object clone() { } + global Slack.ErrorReport.Builder message(String message) { } + global Slack.ErrorReport.Builder messageView(Slack.ViewReference viewReference) { } + global Slack.ErrorReport.Builder modalView(Slack.ViewReference viewReference) { } + global Slack.ErrorReport.Builder userId(String userId) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ErrorResponseMetadata.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ErrorResponseMetadata.cls new file mode 100644 index 0000000..2e0bddd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ErrorResponseMetadata.cls @@ -0,0 +1,8 @@ +global class ErrorResponseMetadata { + global ErrorResponseMetadata() { } + global Object clone() { } + global List getMessages() { } + global void setMessages(List messages) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/Event.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/Event.cls new file mode 100644 index 0000000..5c1ac7a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/Event.cls @@ -0,0 +1,7 @@ +global class Event { + global Event() { } + global Object clone() { } + global String getSubtype() { } + global String getType() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/EventDispatcher.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/EventDispatcher.cls new file mode 100644 index 0000000..71036de --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/EventDispatcher.cls @@ -0,0 +1,7 @@ +global class EventDispatcher { + global EventDispatcher() { } + global Boolean allowUnauthenticatedUsers() { } + global Object clone() { } + global Slack.ActionHandler invoke(Slack.EventParameters param0, Slack.RequestContext param1) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/EventParameters.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/EventParameters.cls new file mode 100644 index 0000000..757ebc7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/EventParameters.cls @@ -0,0 +1,8 @@ +global class EventParameters { + global EventParameters(Slack.Event event, String eventId, Integer eventTime) { } + global Object clone() { } + global Slack.Event getEvent() { } + global String getEventId() { } + global Integer getEventTime() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/Field.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/Field.cls new file mode 100644 index 0000000..58103b8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/Field.cls @@ -0,0 +1,12 @@ +global class Field { + global Field() { } + global Object clone() { } + global String getTitle() { } + global String getValue() { } + global Boolean isValueShortEnough() { } + global void setTitle(String title) { } + global void setValue(String value) { } + global void setValueShortEnough(Boolean valueShortEnough) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/File.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/File.cls new file mode 100644 index 0000000..24e3510 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/File.cls @@ -0,0 +1,329 @@ +global class File { + global File() { } + global Object clone() { } + global String getAltTxt() { } + global String getAppId() { } + global String getAppName() { } + global List getCc() { } + global Integer getChannelActionsCount() { } + global String getChannelActionsTs() { } + global List getChannels() { } + global String getConvertedPdf() { } + global Integer getCreated() { } + global String getDeanimate() { } + global String getDeanimateGif() { } + global Integer getDurationMs() { } + global String getEditLink() { } + global String getEditor() { } + global String getExternalId() { } + global String getExternalType() { } + global String getExternalUrl() { } + global String getFileAccess() { } + global String getFiletype() { } + global List getFrom() { } + global List getGroups() { } + global Slack.File.Headers getHeaders() { } + global String getHls() { } + global String getHlsEmbed() { } + global String getId() { } + global Integer getImageExifRotation() { } + global List getIms() { } + global String getLastEditor() { } + global Integer getLines() { } + global Integer getLinesMore() { } + global String getMediaDisplayType() { } + global Slack.File.MediaProgress getMediaProgress() { } + global String getMimetype() { } + global String getMode() { } + global String getMp4() { } + global String getName() { } + global Integer getOriginalAttachmentCount() { } + global String getOriginalHeight() { } + global String getOriginalWidth() { } + global String getPermalink() { } + global String getPermalinkPublic() { } + global Map getPinnedInfo() { } + global String getPjpeg() { } + global String getPlainText() { } + global String getPrettyType() { } + global String getPreview() { } + global String getPreviewHighlight() { } + global String getPreviewPlainText() { } + global Slack.File.Shares getShares() { } + global String getSimplifiedHtml() { } + global Integer getSize() { } + global String getSubject() { } + global String getSubtype() { } + global String getThumb1024() { } + global String getThumb1024Gif() { } + global String getThumb1024Height() { } + global String getThumb1024Width() { } + global String getThumb160() { } + global String getThumb160Gif() { } + global String getThumb160Height() { } + global String getThumb160Width() { } + global String getThumb360() { } + global String getThumb360Gif() { } + global String getThumb360Height() { } + global String getThumb360Width() { } + global String getThumb480() { } + global String getThumb480Gif() { } + global String getThumb480Height() { } + global String getThumb480Width() { } + global String getThumb64() { } + global String getThumb64Gif() { } + global String getThumb64Height() { } + global String getThumb64Width() { } + global String getThumb720() { } + global String getThumb720Gif() { } + global String getThumb720Height() { } + global String getThumb720Width() { } + global String getThumb80() { } + global String getThumb800() { } + global String getThumb800Gif() { } + global String getThumb800Height() { } + global String getThumb800Width() { } + global String getThumb80Gif() { } + global String getThumb80Height() { } + global String getThumb80Width() { } + global String getThumb960() { } + global String getThumb960Gif() { } + global String getThumb960Height() { } + global String getThumb960Width() { } + global String getThumbGif() { } + global String getThumbPdf() { } + global String getThumbPdfHeight() { } + global String getThumbPdfWidth() { } + global String getThumbTiny() { } + global String getThumbVideo() { } + global Integer getThumbVideoH() { } + global Integer getThumbVideoW() { } + global Integer getTimestamp() { } + global String getTitle() { } + global List getTo() { } + global Slack.File.Transcription getTranscription() { } + global Integer getUpdated() { } + global String getUrlPrivate() { } + global String getUrlPrivateDownload() { } + global String getUser() { } + global String getUserTeam() { } + global String getUsername() { } + global String getVtt() { } + global Boolean isDisplayAsBot() { } + global Boolean isEditable() { } + global Boolean isExternal() { } + global Boolean isHasMore() { } + global Boolean isHasRichPreview() { } + global Boolean isNonOwnerEditable() { } + global Boolean isPreviewTruncated() { } + global Boolean isPublicUrlShared() { } + global Boolean isSentToSelf() { } + global Boolean isStarred() { } + global Boolean ispublic() { } + global void setAltTxt(String altTxt) { } + global void setAppId(String appId) { } + global void setAppName(String appName) { } + global void setCc(List cc) { } + global void setChannelActionsCount(Integer channelActionsCount) { } + global void setChannelActionsTs(String channelActionsTs) { } + global void setChannels(List channels) { } + global void setConvertedPdf(String convertedPdf) { } + global void setCreated(Integer created) { } + global void setDeanimate(String deanimate) { } + global void setDeanimateGif(String deanimateGif) { } + global void setDisplayAsBot(Boolean displayAsBot) { } + global void setDurationMs(Integer durationMs) { } + global void setEditLink(String editLink) { } + global void setEditable(Boolean editable) { } + global void setEditor(String editor) { } + global void setExternal(Boolean external) { } + global void setExternalId(String externalId) { } + global void setExternalType(String externalType) { } + global void setExternalUrl(String externalUrl) { } + global void setFileAccess(String fileAccess) { } + global void setFiletype(String filetype) { } + global void setFrom(List fromValue) { } + global void setGroups(List groups) { } + global void setHasMore(Boolean hasMore) { } + global void setHasRichPreview(Boolean hasRichPreview) { } + global void setHeaders(Slack.File.Headers headers) { } + global void setHls(String hls) { } + global void setHlsEmbed(String hlsEmbed) { } + global void setId(String id) { } + global void setImageExifRotation(Integer imageExifRotation) { } + global void setIms(List ims) { } + global void setLastEditor(String lastEditor) { } + global void setLines(Integer lines) { } + global void setLinesMore(Integer linesMore) { } + global void setMediaDisplayType(String mediaDisplayType) { } + global void setMediaProgress(Slack.File.MediaProgress mediaProgress) { } + global void setMimetype(String mimetype) { } + global void setMode(String mode) { } + global void setMp4(String mp4) { } + global void setName(String name) { } + global void setNonOwnerEditable(Boolean nonOwnerEditable) { } + global void setOriginalAttachmentCount(Integer originalAttachmentCount) { } + global void setOriginalHeight(String originalHeight) { } + global void setOriginalWidth(String originalWidth) { } + global void setPermalink(String permalink) { } + global void setPermalinkPublic(String permalinkPublic) { } + global void setPinnedInfo(Map pinnedInfo) { } + global void setPjpeg(String pjpeg) { } + global void setPlainText(String plainText) { } + global void setPrettyType(String prettyType) { } + global void setPreview(String preview) { } + global void setPreviewHighlight(String previewHighlight) { } + global void setPreviewPlainText(String previewPlainText) { } + global void setPreviewTruncated(Boolean previewTruncated) { } + global void setPublicUrlShared(Boolean publicUrlShared) { } + global void setSentToSelf(Boolean sentToSelf) { } + global void setShares(Slack.File.Shares shares) { } + global void setSimplifiedHtml(String simplifiedHtml) { } + global void setSize(Integer size) { } + global void setStarred(Boolean starred) { } + global void setSubject(String subject) { } + global void setSubtype(String subtype) { } + global void setThumb1024(String thumb1024) { } + global void setThumb1024Gif(String thumb1024Gif) { } + global void setThumb1024Height(String thumb1024Height) { } + global void setThumb1024Width(String thumb1024Width) { } + global void setThumb160(String thumb160) { } + global void setThumb160Gif(String thumb160Gif) { } + global void setThumb160Height(String thumb160Height) { } + global void setThumb160Width(String thumb160Width) { } + global void setThumb360(String thumb360) { } + global void setThumb360Gif(String thumb360Gif) { } + global void setThumb360Height(String thumb360Height) { } + global void setThumb360Width(String thumb360Width) { } + global void setThumb480(String thumb480) { } + global void setThumb480Gif(String thumb480Gif) { } + global void setThumb480Height(String thumb480Height) { } + global void setThumb480Width(String thumb480Width) { } + global void setThumb64(String thumb64) { } + global void setThumb64Gif(String thumb64Gif) { } + global void setThumb64Height(String thumb64Height) { } + global void setThumb64Width(String thumb64Width) { } + global void setThumb720(String thumb720) { } + global void setThumb720Gif(String thumb720Gif) { } + global void setThumb720Height(String thumb720Height) { } + global void setThumb720Width(String thumb720Width) { } + global void setThumb80(String thumb80) { } + global void setThumb800(String thumb800) { } + global void setThumb800Gif(String thumb800Gif) { } + global void setThumb800Height(String thumb800Height) { } + global void setThumb800Width(String thumb800Width) { } + global void setThumb80Gif(String thumb80Gif) { } + global void setThumb80Height(String thumb80Height) { } + global void setThumb80Width(String thumb80Width) { } + global void setThumb960(String thumb960) { } + global void setThumb960Gif(String thumb960Gif) { } + global void setThumb960Height(String thumb960Height) { } + global void setThumb960Width(String thumb960Width) { } + global void setThumbGif(String thumbGif) { } + global void setThumbPdf(String thumbPdf) { } + global void setThumbPdfHeight(String thumbPdfHeight) { } + global void setThumbPdfWidth(String thumbPdfWidth) { } + global void setThumbTiny(String thumbTiny) { } + global void setThumbVideo(String thumbVideo) { } + global void setThumbVideoH(Integer thumbVideoH) { } + global void setThumbVideoW(Integer thumbVideoW) { } + global void setTimestamp(Integer timestamp) { } + global void setTitle(String title) { } + global void setTo(List to) { } + global void setTranscription(Slack.File.Transcription transcription) { } + global void setUpdated(Integer updated) { } + global void setUrlPrivate(String urlPrivate) { } + global void setUrlPrivateDownload(String urlPrivateDownload) { } + global void setUser(String user) { } + global void setUserTeam(String userTeam) { } + global void setUsername(String username) { } + global void setVtt(String vtt) { } + global void setpublic(Boolean _public) { } + global String toString() { } +global class Address { + global File.Address() { } + global Object clone() { } + global String getAddress() { } + global String getName() { } + global String getOriginal() { } + global void setAddress(String address) { } + global void setName(String name) { } + global void setOriginal(String original) { } + +} +global class Headers { + global File.Headers() { } + global Object clone() { } + global String getDate() { } + global String getInReplyTo() { } + global String getMessageId() { } + global String getReplyTo() { } + global void setDate(String dateValue) { } + global void setInReplyTo(String inReplyTo) { } + global void setMessageId(String messageId) { } + global void setReplyTo(String replyTo) { } + +} +global class MediaProgress { + global File.MediaProgress() { } + global Object clone() { } + global Integer getDurationMs() { } + global Integer getMaxOffsetMs() { } + global Integer getOffsetMs() { } + global void setDurationMs(Integer durationMs) { } + global void setMaxOffsetMs(Integer maxOffsetMs) { } + global void setOffsetMs(Integer offsetMs) { } + +} +global class PinnedInfo { + global File.PinnedInfo() { } + global Object clone() { } + global String getPinnedBy() { } + global Integer getPinnedTs() { } + global void setPinnedBy(String pinnedBy) { } + global void setPinnedTs(Integer pinnedTs) { } + +} +global class ShareDetail { + global File.ShareDetail() { } + global Object clone() { } + global String getChannelName() { } + global String getLatestReply() { } + global Integer getReplyCount() { } + global List getReplyUsers() { } + global Integer getReplyUsersCount() { } + global String getShareUserId() { } + global String getTeamId() { } + global String getThreadTs() { } + global String getTs() { } + global void setChannelName(String channelName) { } + global void setLatestReply(String latestReply) { } + global void setReplyCount(Integer replyCount) { } + global void setReplyUsers(List replyUsers) { } + global void setReplyUsersCount(Integer replyUsersCount) { } + global void setShareUserId(String shareUserId) { } + global void setTeamId(String teamId) { } + global void setThreadTs(String threadTs) { } + global void setTs(String ts) { } + +} +global class Shares { + global File.Shares() { } + global Object clone() { } + global Map> getPrivateChannels() { } + global Map> getPublicChannels() { } + global void setPrivateChannels(Map> privateChannels) { } + global void setPublicChannels(Map> publicChannels) { } + +} +global class Transcription { + global File.Transcription() { } + global Object clone() { } + global String getLocale() { } + global String getStatus() { } + global void setLocale(String locale) { } + global void setStatus(String status) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FileChangeEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FileChangeEvent.cls new file mode 100644 index 0000000..9b02a8e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FileChangeEvent.cls @@ -0,0 +1,19 @@ +global class FileChangeEvent { + global FileChangeEvent() { } + global Object clone() { } + global Slack.FileChangeEvent.File getFile() { } + global String getFileId() { } + global String getSubtype() { } + global String getType() { } + global void setFile(Slack.FileChangeEvent.File file) { } + global void setFileId(String fileId) { } + global String toString() { } +global class File { + global FileChangeEvent.File() { } + global Object clone() { } + global String getId() { } + global void setId(String id) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FileComment.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FileComment.cls new file mode 100644 index 0000000..df9a45b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FileComment.cls @@ -0,0 +1,20 @@ +global class FileComment { + global FileComment() { } + global Object clone() { } + global String getChannel() { } + global String getComment() { } + global Integer getCreated() { } + global String getId() { } + global Integer getTimestamp() { } + global String getUser() { } + global Boolean isIntro() { } + global void setChannel(String channel) { } + global void setComment(String comment) { } + global void setCreated(Integer created) { } + global void setId(String id) { } + global void setIntro(Boolean intro) { } + global void setTimestamp(Integer timestamp) { } + global void setUser(String user) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FileCreatedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FileCreatedEvent.cls new file mode 100644 index 0000000..7deb019 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FileCreatedEvent.cls @@ -0,0 +1,23 @@ +global class FileCreatedEvent { + global FileCreatedEvent() { } + global Object clone() { } + global String getEventTs() { } + global Slack.FileCreatedEvent.File getFile() { } + global String getFileId() { } + global String getSubtype() { } + global String getType() { } + global String getUserId() { } + global void setEventTs(String eventTs) { } + global void setFile(Slack.FileCreatedEvent.File file) { } + global void setFileId(String fileId) { } + global void setUserId(String userId) { } + global String toString() { } +global class File { + global FileCreatedEvent.File() { } + global Object clone() { } + global String getId() { } + global void setId(String id) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FileDeletedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FileDeletedEvent.cls new file mode 100644 index 0000000..12cb9e1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FileDeletedEvent.cls @@ -0,0 +1,14 @@ +global class FileDeletedEvent { + global FileDeletedEvent() { } + global Object clone() { } + global List getChannelIds() { } + global String getEventTs() { } + global String getFileId() { } + global String getSubtype() { } + global String getType() { } + global void setChannelIds(List channelIds) { } + global void setEventTs(String eventTs) { } + global void setFileId(String fileId) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FilePublicEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FilePublicEvent.cls new file mode 100644 index 0000000..3c58c9f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FilePublicEvent.cls @@ -0,0 +1,23 @@ +global class FilePublicEvent { + global FilePublicEvent() { } + global Object clone() { } + global String getEventTs() { } + global Slack.FilePublicEvent.File getFile() { } + global String getFileId() { } + global String getSubtype() { } + global String getType() { } + global String getUserId() { } + global void setEventTs(String eventTs) { } + global void setFile(Slack.FilePublicEvent.File file) { } + global void setFileId(String fileId) { } + global void setUserId(String userId) { } + global String toString() { } +global class File { + global FilePublicEvent.File() { } + global Object clone() { } + global String getId() { } + global void setId(String id) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FileSharedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FileSharedEvent.cls new file mode 100644 index 0000000..215770f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FileSharedEvent.cls @@ -0,0 +1,25 @@ +global class FileSharedEvent { + global FileSharedEvent() { } + global Object clone() { } + global String getChannelId() { } + global String getEventTs() { } + global Slack.FileSharedEvent.File getFile() { } + global String getFileId() { } + global String getSubtype() { } + global String getType() { } + global String getUserId() { } + global void setChannelId(String channelId) { } + global void setEventTs(String eventTs) { } + global void setFile(Slack.FileSharedEvent.File file) { } + global void setFileId(String fileId) { } + global void setUserId(String userId) { } + global String toString() { } +global class File { + global FileSharedEvent.File() { } + global Object clone() { } + global String getId() { } + global void setId(String id) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FileUnsharedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FileUnsharedEvent.cls new file mode 100644 index 0000000..97bb5ce --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FileUnsharedEvent.cls @@ -0,0 +1,25 @@ +global class FileUnsharedEvent { + global FileUnsharedEvent() { } + global Object clone() { } + global String getChannelId() { } + global String getEventTs() { } + global Slack.FileUnsharedEvent.File getFile() { } + global String getFileId() { } + global String getSubtype() { } + global String getType() { } + global String getUserId() { } + global void setChannelId(String channelId) { } + global void setEventTs(String eventTs) { } + global void setFile(Slack.FileUnsharedEvent.File file) { } + global void setFileId(String fileId) { } + global void setUserId(String userId) { } + global String toString() { } +global class File { + global FileUnsharedEvent.File() { } + global Object clone() { } + global String getId() { } + global void setId(String id) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FilesDeleteRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesDeleteRequest.cls new file mode 100644 index 0000000..e5cbbd7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesDeleteRequest.cls @@ -0,0 +1,14 @@ +global class FilesDeleteRequest { + global static Slack.FilesDeleteRequest.Builder builder() { } + global Object clone() { } + global String getFile() { } + global String toString() { } +global class Builder { + global FilesDeleteRequest.Builder() { } + global Slack.FilesDeleteRequest build() { } + global Object clone() { } + global Slack.FilesDeleteRequest.Builder file(String file) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FilesDeleteResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesDeleteResponse.cls new file mode 100644 index 0000000..61523dc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesDeleteResponse.cls @@ -0,0 +1,18 @@ +global class FilesDeleteResponse { + global FilesDeleteResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FilesDownloadRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesDownloadRequest.cls new file mode 100644 index 0000000..bd46bbf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesDownloadRequest.cls @@ -0,0 +1,14 @@ +global class FilesDownloadRequest { + global static Slack.FilesDownloadRequest.Builder builder() { } + global Object clone() { } + global Slack.File getFile() { } + global String toString() { } +global class Builder { + global FilesDownloadRequest.Builder() { } + global Slack.FilesDownloadRequest build() { } + global Object clone() { } + global Slack.FilesDownloadRequest.Builder file(Slack.File file) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FilesInfoRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesInfoRequest.cls new file mode 100644 index 0000000..58fa575 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesInfoRequest.cls @@ -0,0 +1,18 @@ +global class FilesInfoRequest { + global static Slack.FilesInfoRequest.Builder builder() { } + global Object clone() { } + global Integer getCount() { } + global String getFile() { } + global Integer getPage() { } + global String toString() { } +global class Builder { + global FilesInfoRequest.Builder() { } + global Slack.FilesInfoRequest build() { } + global Object clone() { } + global Slack.FilesInfoRequest.Builder count(Integer count) { } + global Slack.FilesInfoRequest.Builder file(String file) { } + global Slack.FilesInfoRequest.Builder page(Integer page) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FilesInfoResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesInfoResponse.cls new file mode 100644 index 0000000..e76a27f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesInfoResponse.cls @@ -0,0 +1,28 @@ +global class FilesInfoResponse { + global FilesInfoResponse() { } + global Object clone() { } + global String getContent() { } + global String getContentHighlightCss() { } + global String getContentHighlightHtml() { } + global String getError() { } + global Slack.File getFile() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global Boolean isTruncated() { } + global void setContent(String content) { } + global void setContentHighlightCss(String contentHighlightCss) { } + global void setContentHighlightHtml(String contentHighlightHtml) { } + global void setError(String error) { } + global void setFile(Slack.File file) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setTruncated(Boolean truncated) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FilesListRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesListRequest.cls new file mode 100644 index 0000000..c0e6d18 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesListRequest.cls @@ -0,0 +1,30 @@ +global class FilesListRequest { + global static Slack.FilesListRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global Integer getCount() { } + global Integer getPage() { } + global String getTeamId() { } + global String getTsFrom() { } + global String getTsTo() { } + global List getTypes() { } + global String getUser() { } + global Boolean isShowFilesHiddenByLimit() { } + global String toString() { } +global class Builder { + global FilesListRequest.Builder() { } + global Slack.FilesListRequest build() { } + global Slack.FilesListRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.FilesListRequest.Builder count(Integer count) { } + global Slack.FilesListRequest.Builder page(Integer page) { } + global Slack.FilesListRequest.Builder showFilesHiddenByLimit(Boolean showFilesHiddenByLimit) { } + global Slack.FilesListRequest.Builder teamId(String teamId) { } + global Slack.FilesListRequest.Builder tsFrom(String tsFrom) { } + global Slack.FilesListRequest.Builder tsTo(String tsTo) { } + global Slack.FilesListRequest.Builder types(List types) { } + global Slack.FilesListRequest.Builder user(String user) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FilesListResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesListResponse.cls new file mode 100644 index 0000000..f129bf8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesListResponse.cls @@ -0,0 +1,22 @@ +global class FilesListResponse { + global FilesListResponse() { } + global Object clone() { } + global String getError() { } + global List getFiles() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global Slack.Paging getPaging() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setFiles(List files) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setPaging(Slack.Paging paging) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteAddRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteAddRequest.cls new file mode 100644 index 0000000..f30d3a5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteAddRequest.cls @@ -0,0 +1,20 @@ +global class FilesRemoteAddRequest { + global static Slack.FilesRemoteAddRequest.Builder builder() { } + global Object clone() { } + global String getExternalId() { } + global String getExternalUrl() { } + global String getFiletype() { } + global String getTitle() { } + global String toString() { } +global class Builder { + global FilesRemoteAddRequest.Builder() { } + global Slack.FilesRemoteAddRequest build() { } + global Object clone() { } + global Slack.FilesRemoteAddRequest.Builder externalId(String externalId) { } + global Slack.FilesRemoteAddRequest.Builder externalUrl(String externalUrl) { } + global Slack.FilesRemoteAddRequest.Builder filetype(String filetype) { } + global Slack.FilesRemoteAddRequest.Builder title(String title) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteAddResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteAddResponse.cls new file mode 100644 index 0000000..741c39a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteAddResponse.cls @@ -0,0 +1,20 @@ +global class FilesRemoteAddResponse { + global FilesRemoteAddResponse() { } + global Object clone() { } + global String getError() { } + global Slack.File getFile() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setFile(Slack.File file) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteInfoRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteInfoRequest.cls new file mode 100644 index 0000000..9409d61 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteInfoRequest.cls @@ -0,0 +1,16 @@ +global class FilesRemoteInfoRequest { + global static Slack.FilesRemoteInfoRequest.Builder builder() { } + global Object clone() { } + global String getExternalId() { } + global String getFile() { } + global String toString() { } +global class Builder { + global FilesRemoteInfoRequest.Builder() { } + global Slack.FilesRemoteInfoRequest build() { } + global Object clone() { } + global Slack.FilesRemoteInfoRequest.Builder externalId(String externalId) { } + global Slack.FilesRemoteInfoRequest.Builder file(String file) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteInfoResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteInfoResponse.cls new file mode 100644 index 0000000..da1ed8c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteInfoResponse.cls @@ -0,0 +1,20 @@ +global class FilesRemoteInfoResponse { + global FilesRemoteInfoResponse() { } + global Object clone() { } + global String getError() { } + global Slack.File getFile() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setFile(Slack.File file) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteListRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteListRequest.cls new file mode 100644 index 0000000..878c8e3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteListRequest.cls @@ -0,0 +1,22 @@ +global class FilesRemoteListRequest { + global static Slack.FilesRemoteListRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global String getCursor() { } + global Integer getLimit() { } + global String getTsFrom() { } + global String getTsTo() { } + global String toString() { } +global class Builder { + global FilesRemoteListRequest.Builder() { } + global Slack.FilesRemoteListRequest build() { } + global Slack.FilesRemoteListRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.FilesRemoteListRequest.Builder cursor(String cursor) { } + global Slack.FilesRemoteListRequest.Builder limitValue(Integer limitValue) { } + global Slack.FilesRemoteListRequest.Builder tsFrom(String tsFrom) { } + global Slack.FilesRemoteListRequest.Builder tsTo(String tsTo) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteListResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteListResponse.cls new file mode 100644 index 0000000..1e4324c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteListResponse.cls @@ -0,0 +1,22 @@ +global class FilesRemoteListResponse { + global FilesRemoteListResponse() { } + global Object clone() { } + global String getError() { } + global List getFiles() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.ResponseMetadata getResponseMetadata() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setFiles(List files) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ResponseMetadata responseMetadata) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteRemoveRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteRemoveRequest.cls new file mode 100644 index 0000000..ee38a31 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteRemoveRequest.cls @@ -0,0 +1,16 @@ +global class FilesRemoteRemoveRequest { + global static Slack.FilesRemoteRemoveRequest.Builder builder() { } + global Object clone() { } + global String getExternalId() { } + global String getFile() { } + global String toString() { } +global class Builder { + global FilesRemoteRemoveRequest.Builder() { } + global Slack.FilesRemoteRemoveRequest build() { } + global Object clone() { } + global Slack.FilesRemoteRemoveRequest.Builder externalId(String externalId) { } + global Slack.FilesRemoteRemoveRequest.Builder file(String file) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteRemoveResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteRemoveResponse.cls new file mode 100644 index 0000000..99ba4ea --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteRemoveResponse.cls @@ -0,0 +1,18 @@ +global class FilesRemoteRemoveResponse { + global FilesRemoteRemoveResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteShareRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteShareRequest.cls new file mode 100644 index 0000000..0583a7b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteShareRequest.cls @@ -0,0 +1,18 @@ +global class FilesRemoteShareRequest { + global static Slack.FilesRemoteShareRequest.Builder builder() { } + global Object clone() { } + global List getChannels() { } + global String getExternalId() { } + global String getFile() { } + global String toString() { } +global class Builder { + global FilesRemoteShareRequest.Builder() { } + global Slack.FilesRemoteShareRequest build() { } + global Slack.FilesRemoteShareRequest.Builder channels(List channels) { } + global Object clone() { } + global Slack.FilesRemoteShareRequest.Builder externalId(String externalId) { } + global Slack.FilesRemoteShareRequest.Builder file(String file) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteShareResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteShareResponse.cls new file mode 100644 index 0000000..908ded9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteShareResponse.cls @@ -0,0 +1,20 @@ +global class FilesRemoteShareResponse { + global FilesRemoteShareResponse() { } + global Object clone() { } + global String getError() { } + global Slack.File getFile() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setFile(Slack.File file) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteUpdateRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteUpdateRequest.cls new file mode 100644 index 0000000..38aa139 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteUpdateRequest.cls @@ -0,0 +1,20 @@ +global class FilesRemoteUpdateRequest { + global static Slack.FilesRemoteUpdateRequest.Builder builder() { } + global Object clone() { } + global String getExternalId() { } + global String getExternalUrl() { } + global String getFiletype() { } + global String getTitle() { } + global String toString() { } +global class Builder { + global FilesRemoteUpdateRequest.Builder() { } + global Slack.FilesRemoteUpdateRequest build() { } + global Object clone() { } + global Slack.FilesRemoteUpdateRequest.Builder externalId(String externalId) { } + global Slack.FilesRemoteUpdateRequest.Builder externalUrl(String externalUrl) { } + global Slack.FilesRemoteUpdateRequest.Builder filetype(String filetype) { } + global Slack.FilesRemoteUpdateRequest.Builder title(String title) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteUpdateResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteUpdateResponse.cls new file mode 100644 index 0000000..c229013 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRemoteUpdateResponse.cls @@ -0,0 +1,20 @@ +global class FilesRemoteUpdateResponse { + global FilesRemoteUpdateResponse() { } + global Object clone() { } + global String getError() { } + global Slack.File getFile() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setFile(Slack.File file) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRevokePublicURLRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRevokePublicURLRequest.cls new file mode 100644 index 0000000..f0c764e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRevokePublicURLRequest.cls @@ -0,0 +1,14 @@ +global class FilesRevokePublicURLRequest { + global static Slack.FilesRevokePublicURLRequest.Builder builder() { } + global Object clone() { } + global String getFile() { } + global String toString() { } +global class Builder { + global FilesRevokePublicURLRequest.Builder() { } + global Slack.FilesRevokePublicURLRequest build() { } + global Object clone() { } + global Slack.FilesRevokePublicURLRequest.Builder file(String file) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRevokePublicURLResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRevokePublicURLResponse.cls new file mode 100644 index 0000000..7b31c2c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesRevokePublicURLResponse.cls @@ -0,0 +1,20 @@ +global class FilesRevokePublicURLResponse { + global FilesRevokePublicURLResponse() { } + global Object clone() { } + global String getError() { } + global Slack.File getFile() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setFile(Slack.File file) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FilesSharedPublicURLRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesSharedPublicURLRequest.cls new file mode 100644 index 0000000..6a8a6dc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesSharedPublicURLRequest.cls @@ -0,0 +1,14 @@ +global class FilesSharedPublicURLRequest { + global static Slack.FilesSharedPublicURLRequest.Builder builder() { } + global Object clone() { } + global String getFile() { } + global String toString() { } +global class Builder { + global FilesSharedPublicURLRequest.Builder() { } + global Slack.FilesSharedPublicURLRequest build() { } + global Object clone() { } + global Slack.FilesSharedPublicURLRequest.Builder file(String file) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/FilesSharedPublicURLResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesSharedPublicURLResponse.cls new file mode 100644 index 0000000..364b1bc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/FilesSharedPublicURLResponse.cls @@ -0,0 +1,20 @@ +global class FilesSharedPublicURLResponse { + global FilesSharedPublicURLResponse() { } + global Object clone() { } + global String getError() { } + global Slack.File getFile() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setFile(Slack.File file) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/GridMigrationFinishedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/GridMigrationFinishedEvent.cls new file mode 100644 index 0000000..a06d695 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/GridMigrationFinishedEvent.cls @@ -0,0 +1,10 @@ +global class GridMigrationFinishedEvent { + global GridMigrationFinishedEvent() { } + global Object clone() { } + global String getEnterpriseId() { } + global String getSubtype() { } + global String getType() { } + global void setEnterpriseId(String enterpriseId) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/GridMigrationStartedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/GridMigrationStartedEvent.cls new file mode 100644 index 0000000..0a4a112 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/GridMigrationStartedEvent.cls @@ -0,0 +1,10 @@ +global class GridMigrationStartedEvent { + global GridMigrationStartedEvent() { } + global Object clone() { } + global String getEnterpriseId() { } + global String getSubtype() { } + global String getType() { } + global void setEnterpriseId(String enterpriseId) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/GroupArchiveEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/GroupArchiveEvent.cls new file mode 100644 index 0000000..e1f9fac --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/GroupArchiveEvent.cls @@ -0,0 +1,18 @@ +global class GroupArchiveEvent { + global GroupArchiveEvent() { } + global Object clone() { } + global String getActorId() { } + global String getChannel() { } + global String getEventTs() { } + global Integer getIsMoved() { } + global String getSubtype() { } + global String getType() { } + global String getUser() { } + global void setActorId(String actorId) { } + global void setChannel(String channel) { } + global void setEventTs(String eventTs) { } + global void setIsMoved(Integer isMoved) { } + global void setUser(String user) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/GroupCloseEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/GroupCloseEvent.cls new file mode 100644 index 0000000..4c03441 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/GroupCloseEvent.cls @@ -0,0 +1,12 @@ +global class GroupCloseEvent { + global GroupCloseEvent() { } + global Object clone() { } + global String getChannel() { } + global String getSubtype() { } + global String getType() { } + global String getUser() { } + global void setChannel(String channel) { } + global void setUser(String user) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/GroupDeletedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/GroupDeletedEvent.cls new file mode 100644 index 0000000..0ec9faf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/GroupDeletedEvent.cls @@ -0,0 +1,16 @@ +global class GroupDeletedEvent { + global GroupDeletedEvent() { } + global Object clone() { } + global String getActorId() { } + global String getChannel() { } + global Integer getDateDeleted() { } + global String getEventTs() { } + global String getSubtype() { } + global String getType() { } + global void setActorId(String actorId) { } + global void setChannel(String channel) { } + global void setDateDeleted(Integer dateDeleted) { } + global void setEventTs(String eventTs) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/GroupHistoryChangedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/GroupHistoryChangedEvent.cls new file mode 100644 index 0000000..67af859 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/GroupHistoryChangedEvent.cls @@ -0,0 +1,14 @@ +global class GroupHistoryChangedEvent { + global GroupHistoryChangedEvent() { } + global Object clone() { } + global String getEventTs() { } + global String getLatest() { } + global String getSubtype() { } + global String getTs() { } + global String getType() { } + global void setEventTs(String eventTs) { } + global void setLatest(String latest) { } + global void setTs(String ts) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/GroupLeftEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/GroupLeftEvent.cls new file mode 100644 index 0000000..0ce8b8a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/GroupLeftEvent.cls @@ -0,0 +1,14 @@ +global class GroupLeftEvent { + global GroupLeftEvent() { } + global Object clone() { } + global String getActorId() { } + global String getChannel() { } + global String getEventTs() { } + global String getSubtype() { } + global String getType() { } + global void setActorId(String actorId) { } + global void setChannel(String channel) { } + global void setEventTs(String eventTs) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/GroupOpenEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/GroupOpenEvent.cls new file mode 100644 index 0000000..3d69b94 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/GroupOpenEvent.cls @@ -0,0 +1,12 @@ +global class GroupOpenEvent { + global GroupOpenEvent() { } + global Object clone() { } + global String getChannel() { } + global String getSubtype() { } + global String getType() { } + global String getUser() { } + global void setChannel(String channel) { } + global void setUser(String user) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/GroupRenameEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/GroupRenameEvent.cls new file mode 100644 index 0000000..0d67653 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/GroupRenameEvent.cls @@ -0,0 +1,31 @@ +global class GroupRenameEvent { + global GroupRenameEvent() { } + global Object clone() { } + global Slack.GroupRenameEvent.Channel getChannel() { } + global String getEventTs() { } + global String getSubtype() { } + global String getType() { } + global void setChannel(Slack.GroupRenameEvent.Channel channel) { } + global void setEventTs(String eventTs) { } + global String toString() { } +global class Channel { + global GroupRenameEvent.Channel() { } + global Object clone() { } + global Integer getCreated() { } + global String getId() { } + global String getName() { } + global String getNameNormalized() { } + global Boolean isChannel() { } + global Boolean isGroup() { } + global Boolean isMpim() { } + global void setChannel(Boolean isChannel) { } + global void setCreated(Integer created) { } + global void setGroup(Boolean isGroup) { } + global void setId(String id) { } + global void setMpim(Boolean isMpim) { } + global void setName(String name) { } + global void setNameNormalized(String nameNormalized) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/GroupUnarchiveEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/GroupUnarchiveEvent.cls new file mode 100644 index 0000000..d58f9b7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/GroupUnarchiveEvent.cls @@ -0,0 +1,14 @@ +global class GroupUnarchiveEvent { + global GroupUnarchiveEvent() { } + global Object clone() { } + global String getActorId() { } + global String getChannel() { } + global String getEventTs() { } + global String getSubtype() { } + global String getType() { } + global void setActorId(String actorId) { } + global void setChannel(String channel) { } + global void setEventTs(String eventTs) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/HomeView.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/HomeView.cls new file mode 100644 index 0000000..d64bf4d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/HomeView.cls @@ -0,0 +1,13 @@ +global class HomeView { + global static Slack.HomeView.Builder builder() { } + global Object clone() { } +global class Builder { + global HomeView.Builder() { } + global Slack.HomeView build() { } + global Object clone() { } + global Slack.HomeView.Builder externalId(String externalId) { } + global Slack.HomeView.Builder viewReference(Slack.ViewReference viewReference) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ImCloseEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ImCloseEvent.cls new file mode 100644 index 0000000..2458941 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ImCloseEvent.cls @@ -0,0 +1,14 @@ +global class ImCloseEvent { + global ImCloseEvent() { } + global Object clone() { } + global String getChannel() { } + global String getEventTs() { } + global String getSubtype() { } + global String getType() { } + global String getUser() { } + global void setChannel(String channel) { } + global void setEventTs(String eventTs) { } + global void setUser(String user) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ImCreatedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ImCreatedEvent.cls new file mode 100644 index 0000000..d250364 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ImCreatedEvent.cls @@ -0,0 +1,17 @@ +global class ImCreatedEvent { + global ImCreatedEvent() { } + global Object clone() { } + global Slack.ImCreatedEvent.Channel getChannel() { } + global String getSubtype() { } + global String getType() { } + global String getUser() { } + global void setChannel(Slack.ImCreatedEvent.Channel channel) { } + global void setUser(String user) { } + global String toString() { } +global class Channel { + global ImCreatedEvent.Channel() { } + global Object clone() { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ImHistoryChangedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ImHistoryChangedEvent.cls new file mode 100644 index 0000000..89bb622 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ImHistoryChangedEvent.cls @@ -0,0 +1,14 @@ +global class ImHistoryChangedEvent { + global ImHistoryChangedEvent() { } + global Object clone() { } + global String getEventTs() { } + global String getLatest() { } + global String getSubtype() { } + global String getTs() { } + global String getType() { } + global void setEventTs(String eventTs) { } + global void setLatest(String latest) { } + global void setTs(String ts) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ImOpenEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ImOpenEvent.cls new file mode 100644 index 0000000..86fba61 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ImOpenEvent.cls @@ -0,0 +1,14 @@ +global class ImOpenEvent { + global ImOpenEvent() { } + global Object clone() { } + global String getChannel() { } + global String getEventTs() { } + global String getSubtype() { } + global String getType() { } + global String getUser() { } + global void setChannel(String channel) { } + global void setEventTs(String eventTs) { } + global void setUser(String user) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/IntegrationLog.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/IntegrationLog.cls new file mode 100644 index 0000000..f12dc62 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/IntegrationLog.cls @@ -0,0 +1,38 @@ +global class IntegrationLog { + global IntegrationLog() { } + global Object clone() { } + global String getAppId() { } + global String getAppType() { } + global String getChangeType() { } + global String getChannel() { } + global Integer getDate() { } + global String getReason() { } + global String getResolution() { } + global String getRssFeedChangeType() { } + global String getRssFeedTitle() { } + global String getRssFeedUrl() { } + global String getScope() { } + global String getServiceId() { } + global String getServiceType() { } + global String getUserId() { } + global String getUserName() { } + global Boolean isRssFeed() { } + global void setAppId(String appId) { } + global void setAppType(String appType) { } + global void setChangeType(String changeType) { } + global void setChannel(String channel) { } + global void setDate(Integer dateValue) { } + global void setReason(String reason) { } + global void setResolution(String resolution) { } + global void setRssFeed(Boolean rssFeed) { } + global void setRssFeedChangeType(String rssFeedChangeType) { } + global void setRssFeedTitle(String rssFeedTitle) { } + global void setRssFeedUrl(String rssFeedUrl) { } + global void setScope(String scope) { } + global void setServiceId(String serviceId) { } + global void setServiceType(String serviceType) { } + global void setUserId(String userId) { } + global void setUserName(String userName) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/InviteRequestedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/InviteRequestedEvent.cls new file mode 100644 index 0000000..508411d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/InviteRequestedEvent.cls @@ -0,0 +1,46 @@ +global class InviteRequestedEvent { + global InviteRequestedEvent() { } + global Object clone() { } + global Slack.InviteRequestedEvent.InviteRequest getInviteRequest() { } + global String getSubtype() { } + global String getType() { } + global void setInviteRequest(Slack.InviteRequestedEvent.InviteRequest inviteRequest) { } + global String toString() { } +global class InviteRequest { + global InviteRequestedEvent.InviteRequest() { } + global Object clone() { } + global List getChannelIds() { } + global Integer getDateCreated() { } + global Integer getDateExpire() { } + global String getEmail() { } + global String getId() { } + global String getInviteType() { } + global String getRealName() { } + global String getRequestReason() { } + global List getRequesterIds() { } + global Slack.InviteRequestedEvent.Team getTeam() { } + global void setChannelIds(List channelIds) { } + global void setDateCreated(Integer dateCreated) { } + global void setDateExpire(Integer dateExpire) { } + global void setEmail(String email) { } + global void setId(String id) { } + global void setInviteType(String inviteType) { } + global void setRealName(String realName) { } + global void setRequestReason(String requestReason) { } + global void setRequesterIds(List requesterIds) { } + global void setTeam(Slack.InviteRequestedEvent.Team team) { } + +} +global class Team { + global InviteRequestedEvent.Team() { } + global Object clone() { } + global String getDomain() { } + global String getId() { } + global String getName() { } + global void setDomain(String domain) { } + global void setId(String id) { } + global void setName(String name) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/Latest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/Latest.cls new file mode 100644 index 0000000..ca917e1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/Latest.cls @@ -0,0 +1,55 @@ +global class Latest { + global Latest() { } + global Object clone() { } + global String getBotId() { } + global String getBotLink() { } + global Slack.BotProfile getBotProfile() { } + global String getClientMsgId() { } + global Slack.Latest.Edited getEdited() { } + global List getFiles() { } + global String getParentUserId() { } + global List getReactions() { } + global String getSubtype() { } + global String getTeam() { } + global String getText() { } + global String getThreadTs() { } + global String getTopic() { } + global String getTs() { } + global String getType() { } + global String getUser() { } + global String getUsername() { } + global List getXFiles() { } + global Boolean isDisplayAsBot() { } + global Boolean isUpload() { } + global void setBotId(String botId) { } + global void setBotLink(String botLink) { } + global void setBotProfile(Slack.BotProfile botProfile) { } + global void setClientMsgId(String clientMsgId) { } + global void setDisplayAsBot(Boolean displayAsBot) { } + global void setEdited(Slack.Latest.Edited edited) { } + global void setFiles(List files) { } + global void setParentUserId(String parentUserId) { } + global void setReactions(List reactions) { } + global void setSubtype(String subtype) { } + global void setTeam(String team) { } + global void setText(String text) { } + global void setThreadTs(String threadTs) { } + global void setTopic(String topic) { } + global void setTs(String ts) { } + global void setType(String type) { } + global void setUpload(Boolean upload) { } + global void setUser(String user) { } + global void setUsername(String username) { } + global void setXFiles(List xFiles) { } + global String toString() { } +global class Edited { + global Latest.Edited() { } + global Object clone() { } + global String getTs() { } + global String getUser() { } + global void setTs(String ts) { } + global void setUser(String user) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/LinkSharedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/LinkSharedEvent.cls new file mode 100644 index 0000000..7a5569d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/LinkSharedEvent.cls @@ -0,0 +1,35 @@ +global class LinkSharedEvent { + global LinkSharedEvent() { } + global Object clone() { } + global String getChannel() { } + global String getEventTs() { } + global List getLinks() { } + global String getMessageTs() { } + global String getSource() { } + global String getSubtype() { } + global String getThreadTs() { } + global String getType() { } + global String getUnfurlId() { } + global String getUser() { } + global Boolean isBotUserMember() { } + global void setBotUserMember(Boolean botUserMember) { } + global void setChannel(String channel) { } + global void setEventTs(String eventTs) { } + global void setLinks(List links) { } + global void setMessageTs(String messageTs) { } + global void setSource(String source) { } + global void setThreadTs(String threadTs) { } + global void setUnfurlId(String unfurlId) { } + global void setUser(String user) { } + global String toString() { } +global class Link { + global LinkSharedEvent.Link() { } + global Object clone() { } + global String getDomain() { } + global String getUrl() { } + global void setDomain(String domain) { } + global void setUrl(String url) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/Login.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/Login.cls new file mode 100644 index 0000000..69c8209 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/Login.cls @@ -0,0 +1,26 @@ +global class Login { + global Login() { } + global Object clone() { } + global Integer getCount() { } + global String getCountry() { } + global Integer getDateFirst() { } + global Integer getDateLast() { } + global String getIp() { } + global String getIsp() { } + global String getRegion() { } + global String getUserAgent() { } + global String getUserId() { } + global String getUsername() { } + global void setCount(Integer count) { } + global void setCountry(String country) { } + global void setDateFirst(Integer dateFirst) { } + global void setDateLast(Integer dateLast) { } + global void setIp(String ip) { } + global void setIsp(String isp) { } + global void setRegion(String region) { } + global void setUserAgent(String userAgent) { } + global void setUserId(String userId) { } + global void setUsername(String username) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/MatchedItem.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/MatchedItem.cls new file mode 100644 index 0000000..0279368 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/MatchedItem.cls @@ -0,0 +1,272 @@ +global class MatchedItem { + global MatchedItem() { } + global Object clone() { } + global String getBotId() { } + global List getCc() { } + global Slack.Channel getChannel() { } + global Integer getChannelActionsCount() { } + global String getChannelActionsTs() { } + global List getChannels() { } + global String getComment() { } + global Integer getCommentsCount() { } + global String getConvertedPdf() { } + global String getCreated() { } + global String getDeanimateGif() { } + global String getEditLink() { } + global String getEditor() { } + global String getExternalId() { } + global String getExternalType() { } + global String getExternalUrl() { } + global String getFileAccess() { } + global String getFileId() { } + global List getFiles() { } + global String getFiletype() { } + global List getFrom() { } + global List getGroups() { } + global String getId() { } + global String getIid() { } + global Integer getImageExifRotation() { } + global List getIms() { } + global String getLastEditor() { } + global Integer getLines() { } + global Integer getLinesMore() { } + global String getMediaDisplayType() { } + global String getMimetype() { } + global String getMode() { } + global String getName() { } + global Slack.MatchedItem.OtherItem getNext() { } + global Slack.MatchedItem.OtherItem getNext2() { } + global String getOriginalHeight() { } + global String getOriginalWidth() { } + global String getPermalink() { } + global String getPlainText() { } + global String getPrettyType() { } + global String getPreview() { } + global String getPreviewHighlight() { } + global String getPreviewPlainText() { } + global Slack.MatchedItem.OtherItem getPrevious() { } + global Slack.MatchedItem.OtherItem getPrevious2() { } + global String getScore() { } + global Integer getSize() { } + global String getSourceTeam() { } + global String getSubject() { } + global String getTeam() { } + global String getText() { } + global String getThumb1024() { } + global String getThumb1024Gif() { } + global String getThumb1024Height() { } + global String getThumb1024Width() { } + global String getThumb160() { } + global String getThumb160Gif() { } + global String getThumb160Height() { } + global String getThumb160Width() { } + global String getThumb360() { } + global String getThumb360Gif() { } + global String getThumb360Height() { } + global String getThumb360Width() { } + global String getThumb480() { } + global String getThumb480Gif() { } + global String getThumb480Height() { } + global String getThumb480Width() { } + global String getThumb64() { } + global String getThumb64Gif() { } + global String getThumb64Height() { } + global String getThumb64Width() { } + global String getThumb720() { } + global String getThumb720Gif() { } + global String getThumb720Height() { } + global String getThumb720Width() { } + global String getThumb80() { } + global String getThumb800() { } + global String getThumb800Gif() { } + global String getThumb800Height() { } + global String getThumb800Width() { } + global String getThumb80Gif() { } + global String getThumb80Height() { } + global String getThumb80Width() { } + global String getThumb960() { } + global String getThumb960Gif() { } + global String getThumb960Height() { } + global String getThumb960Width() { } + global String getThumbPdf() { } + global String getThumbPdfHeight() { } + global String getThumbPdfWidth() { } + global String getThumbTiny() { } + global String getThumbVideo() { } + global String getTimestamp() { } + global String getTitle() { } + global List getTo() { } + global String getTs() { } + global String getType() { } + global Integer getUpdated() { } + global String getUrlPrivate() { } + global String getUser() { } + global String getUserTeam() { } + global String getUsername() { } + global Boolean isDisplayAsBot() { } + global Boolean isEditable() { } + global Boolean isExternal() { } + global Boolean isHasMore() { } + global Boolean isHasRichPreview() { } + global Boolean isMpim() { } + global Boolean isNoReactions() { } + global Boolean isNonOwnerEditable() { } + global Boolean isPermalinkPublic() { } + global Boolean isPreviewTruncated() { } + global Boolean isPublicUrlShared() { } + global Boolean isSentToSelf() { } + global Boolean isStarred() { } + global Boolean isTopFile() { } + global Boolean isUrlPrivateDownload() { } + global Boolean ispublic() { } + global void setBotId(String botId) { } + global void setCc(List cc) { } + global void setChannel(Slack.Channel channel) { } + global void setChannelActionsCount(Integer channelActionsCount) { } + global void setChannelActionsTs(String channelActionsTs) { } + global void setChannels(List channels) { } + global void setComment(String comment) { } + global void setCommentsCount(Integer commentsCount) { } + global void setConvertedPdf(String convertedPdf) { } + global void setCreated(String created) { } + global void setDeanimateGif(String deanimateGif) { } + global void setDisplayAsBot(Boolean displayAsBot) { } + global void setEditLink(String editLink) { } + global void setEditable(Boolean editable) { } + global void setEditor(String editor) { } + global void setExternal(Boolean external) { } + global void setExternalId(String externalId) { } + global void setExternalType(String externalType) { } + global void setExternalUrl(String externalUrl) { } + global void setFileAccess(String fileAccess) { } + global void setFileId(String fileId) { } + global void setFiles(List files) { } + global void setFiletype(String filetype) { } + global void setFrom(List fromValue) { } + global void setGroups(List groups) { } + global void setHasMore(Boolean hasMore) { } + global void setHasRichPreview(Boolean hasRichPreview) { } + global void setId(String id) { } + global void setIid(String iid) { } + global void setImageExifRotation(Integer imageExifRotation) { } + global void setIms(List ims) { } + global void setLastEditor(String lastEditor) { } + global void setLines(Integer lines) { } + global void setLinesMore(Integer linesMore) { } + global void setMediaDisplayType(String mediaDisplayType) { } + global void setMimetype(String mimetype) { } + global void setMode(String mode) { } + global void setMpim(Boolean mpim) { } + global void setName(String name) { } + global void setNext(Slack.MatchedItem.OtherItem next) { } + global void setNext2(Slack.MatchedItem.OtherItem next2) { } + global void setNoReactions(Boolean noReactions) { } + global void setNonOwnerEditable(Boolean nonOwnerEditable) { } + global void setOriginalHeight(String originalHeight) { } + global void setOriginalWidth(String originalWidth) { } + global void setPermalink(String permalink) { } + global void setPermalinkPublic(Boolean permalinkPublic) { } + global void setPlainText(String plainText) { } + global void setPrettyType(String prettyType) { } + global void setPreview(String preview) { } + global void setPreviewHighlight(String previewHighlight) { } + global void setPreviewPlainText(String previewPlainText) { } + global void setPreviewTruncated(Boolean previewTruncated) { } + global void setPrevious(Slack.MatchedItem.OtherItem previous) { } + global void setPrevious2(Slack.MatchedItem.OtherItem previous2) { } + global void setPublicUrlShared(Boolean publicUrlShared) { } + global void setScore(String score) { } + global void setSentToSelf(Boolean sentToSelf) { } + global void setSize(Integer size) { } + global void setSourceTeam(String sourceTeam) { } + global void setStarred(Boolean starred) { } + global void setSubject(String subject) { } + global void setTeam(String team) { } + global void setText(String text) { } + global void setThumb1024(String thumb1024) { } + global void setThumb1024Gif(String thumb1024Gif) { } + global void setThumb1024Height(String thumb1024Height) { } + global void setThumb1024Width(String thumb1024Width) { } + global void setThumb160(String thumb160) { } + global void setThumb160Gif(String thumb160Gif) { } + global void setThumb160Height(String thumb160Height) { } + global void setThumb160Width(String thumb160Width) { } + global void setThumb360(String thumb360) { } + global void setThumb360Gif(String thumb360Gif) { } + global void setThumb360Height(String thumb360Height) { } + global void setThumb360Width(String thumb360Width) { } + global void setThumb480(String thumb480) { } + global void setThumb480Gif(String thumb480Gif) { } + global void setThumb480Height(String thumb480Height) { } + global void setThumb480Width(String thumb480Width) { } + global void setThumb64(String thumb64) { } + global void setThumb64Gif(String thumb64Gif) { } + global void setThumb64Height(String thumb64Height) { } + global void setThumb64Width(String thumb64Width) { } + global void setThumb720(String thumb720) { } + global void setThumb720Gif(String thumb720Gif) { } + global void setThumb720Height(String thumb720Height) { } + global void setThumb720Width(String thumb720Width) { } + global void setThumb80(String thumb80) { } + global void setThumb800(String thumb800) { } + global void setThumb800Gif(String thumb800Gif) { } + global void setThumb800Height(String thumb800Height) { } + global void setThumb800Width(String thumb800Width) { } + global void setThumb80Gif(String thumb80Gif) { } + global void setThumb80Height(String thumb80Height) { } + global void setThumb80Width(String thumb80Width) { } + global void setThumb960(String thumb960) { } + global void setThumb960Gif(String thumb960Gif) { } + global void setThumb960Height(String thumb960Height) { } + global void setThumb960Width(String thumb960Width) { } + global void setThumbPdf(String thumbPdf) { } + global void setThumbPdfHeight(String thumbPdfHeight) { } + global void setThumbPdfWidth(String thumbPdfWidth) { } + global void setThumbTiny(String thumbTiny) { } + global void setThumbVideo(String thumbVideo) { } + global void setTimestamp(String timestamp) { } + global void setTitle(String title) { } + global void setTo(List to) { } + global void setTopFile(Boolean topFile) { } + global void setTs(String ts) { } + global void setType(String type) { } + global void setUpdated(Integer updated) { } + global void setUrlPrivate(String urlPrivate) { } + global void setUrlPrivateDownload(Boolean urlPrivateDownload) { } + global void setUser(String user) { } + global void setUserTeam(String userTeam) { } + global void setUsername(String username) { } + global void setpublic(Boolean _public) { } + global String toString() { } +global class Address { + global MatchedItem.Address() { } + global Object clone() { } + global String getAddress() { } + global String getName() { } + global String getOriginal() { } + global void setAddress(String address) { } + global void setName(String name) { } + global void setOriginal(String original) { } + +} +global class OtherItem { + global MatchedItem.OtherItem() { } + global Object clone() { } + global String getIid() { } + global String getPermalink() { } + global String getText() { } + global String getTs() { } + global String getType() { } + global String getUser() { } + global String getUsername() { } + global void setIid(String iid) { } + global void setPermalink(String permalink) { } + global void setText(String text) { } + global void setTs(String ts) { } + global void setType(String type) { } + global void setUser(String user) { } + global void setUsername(String username) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/MemberJoinedChannelEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/MemberJoinedChannelEvent.cls new file mode 100644 index 0000000..af788a6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/MemberJoinedChannelEvent.cls @@ -0,0 +1,20 @@ +global class MemberJoinedChannelEvent { + global MemberJoinedChannelEvent() { } + global Object clone() { } + global String getChannel() { } + global String getChannelType() { } + global String getEventTs() { } + global String getInviter() { } + global String getSubtype() { } + global String getTeam() { } + global String getType() { } + global String getUser() { } + global void setChannel(String channel) { } + global void setChannelType(String channelType) { } + global void setEventTs(String eventTs) { } + global void setInviter(String inviter) { } + global void setTeam(String team) { } + global void setUser(String user) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/MemberLeftChannelEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/MemberLeftChannelEvent.cls new file mode 100644 index 0000000..f77dfde --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/MemberLeftChannelEvent.cls @@ -0,0 +1,18 @@ +global class MemberLeftChannelEvent { + global MemberLeftChannelEvent() { } + global Object clone() { } + global String getChannel() { } + global String getChannelType() { } + global String getEventTs() { } + global String getSubtype() { } + global String getTeam() { } + global String getType() { } + global String getUser() { } + global void setChannel(String channel) { } + global void setChannelType(String channelType) { } + global void setEventTs(String eventTs) { } + global void setTeam(String team) { } + global void setUser(String user) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/Message.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/Message.cls new file mode 100644 index 0000000..840c637 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/Message.cls @@ -0,0 +1,258 @@ +global class Message { + global Message() { } + global Object clone() { } + global String getAppId() { } + global String getBotId() { } + global String getBotLink() { } + global Slack.BotProfile getBotProfile() { } + global String getChannel() { } + global String getClientMsgId() { } + global Slack.Message.MessageItem getComment() { } + global Slack.Message.Edited getEdited() { } + global Slack.File getFile() { } + global List getFiles() { } + global Slack.Message.Icons getIcons() { } + global String getInviter() { } + global Slack.Message.MessageItem getItem() { } + global String getItemType() { } + global String getLastRead() { } + global String getLatestReply() { } + global Slack.Message.Metadata getMetadata() { } + global String getParentUserId() { } + global List getPinnedTo() { } + global String getPurpose() { } + global List getReactions() { } + global Integer getReplyCount() { } + global List getReplyUsers() { } + global Integer getReplyUsersCount() { } + global Slack.Message.MessageRoot getRoot() { } + global String getSubtype() { } + global String getTeam() { } + global String getText() { } + global String getThreadTs() { } + global String getTopic() { } + global String getTs() { } + global String getType() { } + global String getUser() { } + global String getUsername() { } + global List getXFiles() { } + global Boolean isDisplayAsBot() { } + global Boolean isHidden() { } + global Boolean isIntro() { } + global Boolean isLocked() { } + global Boolean isStarred() { } + global Boolean isSubscribed() { } + global Boolean isThreadBroadcast() { } + global Boolean isUnfurlLinks() { } + global Boolean isUnfurlMedia() { } + global Boolean isUpload() { } + global Boolean isWibblr() { } + global void setAppId(String appId) { } + global void setBotId(String botId) { } + global void setBotLink(String botLink) { } + global void setBotProfile(Slack.BotProfile botProfile) { } + global void setChannel(String channel) { } + global void setClientMsgId(String clientMsgId) { } + global void setComment(Slack.Message.MessageItem comment) { } + global void setDisplayAsBot(Boolean displayAsBot) { } + global void setEdited(Slack.Message.Edited edited) { } + global void setFile(Slack.File file) { } + global void setFiles(List files) { } + global void setHidden(Boolean hidden) { } + global void setIcons(Slack.Message.Icons icons) { } + global void setIntro(Boolean intro) { } + global void setInviter(String inviter) { } + global void setItem(Slack.Message.MessageItem item) { } + global void setItemType(String itemType) { } + global void setLastRead(String lastRead) { } + global void setLatestReply(String latestReply) { } + global void setLocked(Boolean locked) { } + global void setMetadata(Slack.Message.Metadata metadata) { } + global void setParentUserId(String parentUserId) { } + global void setPinnedTo(List pinnedTo) { } + global void setPurpose(String purpose) { } + global void setReactions(List reactions) { } + global void setReplyCount(Integer replyCount) { } + global void setReplyUsers(List replyUsers) { } + global void setReplyUsersCount(Integer replyUsersCount) { } + global void setRoot(Slack.Message.MessageRoot root) { } + global void setStarred(Boolean starred) { } + global void setSubscribed(Boolean subscribed) { } + global void setSubtype(String subtype) { } + global void setTeam(String team) { } + global void setText(String text) { } + global void setThreadBroadcast(Boolean threadBroadcast) { } + global void setThreadTs(String threadTs) { } + global void setTopic(String topic) { } + global void setTs(String ts) { } + global void setType(String type) { } + global void setUnfurlLinks(Boolean unfurlLinks) { } + global void setUnfurlMedia(Boolean unfurlMedia) { } + global void setUpload(Boolean upload) { } + global void setUser(String user) { } + global void setUsername(String username) { } + global void setWibblr(Boolean wibblr) { } + global void setXFiles(List xFiles) { } + global String toString() { } +global class Edited { + global Message.Edited() { } + global Object clone() { } + global String getTs() { } + global String getUser() { } + global void setTs(String ts) { } + global void setUser(String user) { } + +} +global class Icons { + global Message.Icons() { } + global Object clone() { } + global String getEmoji() { } + global String getImage36() { } + global String getImage48() { } + global String getImage64() { } + global String getImage72() { } + global void setEmoji(String emoji) { } + global void setImage36(String image36) { } + global void setImage48(String image48) { } + global void setImage64(String image64) { } + global void setImage72(String image72) { } + +} +global class MessageItem { + global Message.MessageItem() { } + global Object clone() { } + global String getComment() { } + global String getCreated() { } + global String getEditLink() { } + global String getExternalType() { } + global String getFiletype() { } + global String getId() { } + global Integer getLines() { } + global Integer getLinesMore() { } + global String getMediaDisplayType() { } + global String getMimetype() { } + global String getMode() { } + global String getName() { } + global String getPermalink() { } + global String getPrettyType() { } + global String getPreview() { } + global String getPreviewHighlight() { } + global Integer getSize() { } + global String getTimestamp() { } + global String getTitle() { } + global String getUrlPrivate() { } + global String getUser() { } + global String getUsername() { } + global Boolean isDisplayAsBot() { } + global Boolean isEditable() { } + global Boolean isExternal() { } + global Boolean isHasRichPreview() { } + global Boolean isIntro() { } + global Boolean isPermalinkPublic() { } + global Boolean isPreviewTruncated() { } + global Boolean isPublicUrlShared() { } + global Boolean isStarred() { } + global Boolean isUrlPrivateDownload() { } + global Boolean ispublic() { } + global void setComment(String comment) { } + global void setCreated(String created) { } + global void setDisplayAsBot(Boolean displayAsBot) { } + global void setEditLink(String editLink) { } + global void setEditable(Boolean editable) { } + global void setExternal(Boolean external) { } + global void setExternalType(String externalType) { } + global void setFiletype(String filetype) { } + global void setHasRichPreview(Boolean hasRichPreview) { } + global void setId(String id) { } + global void setIntro(Boolean intro) { } + global void setLines(Integer lines) { } + global void setLinesMore(Integer linesMore) { } + global void setMediaDisplayType(String mediaDisplayType) { } + global void setMimetype(String mimetype) { } + global void setMode(String mode) { } + global void setName(String name) { } + global void setPermalink(String permalink) { } + global void setPermalinkPublic(Boolean permalinkPublic) { } + global void setPrettyType(String prettyType) { } + global void setPreview(String preview) { } + global void setPreviewHighlight(String previewHighlight) { } + global void setPreviewTruncated(Boolean previewTruncated) { } + global void setPublicUrlShared(Boolean publicUrlShared) { } + global void setSize(Integer size) { } + global void setStarred(Boolean starred) { } + global void setTimestamp(String timestamp) { } + global void setTitle(String title) { } + global void setUrlPrivate(String urlPrivate) { } + global void setUrlPrivateDownload(Boolean urlPrivateDownload) { } + global void setUser(String user) { } + global void setUsername(String username) { } + global void setpublic(Boolean _public) { } + +} +global class MessageRoot { + global Message.MessageRoot() { } + global Object clone() { } + global String getBotId() { } + global Slack.BotProfile getBotProfile() { } + global Slack.Message.Edited getEdited() { } + global Slack.Message.Icons getIcons() { } + global String getLastRead() { } + global String getLatestReply() { } + global String getParentUserId() { } + global Integer getReplyCount() { } + global List getReplyUsers() { } + global Integer getReplyUsersCount() { } + global String getSubtype() { } + global String getTeam() { } + global String getText() { } + global String getThreadTs() { } + global String getTs() { } + global String getType() { } + global Integer getUnreadCount() { } + global String getUser() { } + global String getUsername() { } + global Boolean isMrkdwn() { } + global Boolean isSubscribed() { } + global void setBotId(String botId) { } + global void setBotProfile(Slack.BotProfile botProfile) { } + global void setEdited(Slack.Message.Edited edited) { } + global void setIcons(Slack.Message.Icons icons) { } + global void setLastRead(String lastRead) { } + global void setLatestReply(String latestReply) { } + global void setMrkdwn(Boolean mrkdwn) { } + global void setParentUserId(String parentUserId) { } + global void setReplyCount(Integer replyCount) { } + global void setReplyUsers(List replyUsers) { } + global void setReplyUsersCount(Integer replyUsersCount) { } + global void setSubscribed(Boolean subscribed) { } + global void setSubtype(String subtype) { } + global void setTeam(String team) { } + global void setText(String text) { } + global void setThreadTs(String threadTs) { } + global void setTs(String ts) { } + global void setType(String type) { } + global void setUnreadCount(Integer unreadCount) { } + global void setUser(String user) { } + global void setUsername(String username) { } + +} +global class MessageRootReply { + global Message.MessageRootReply() { } + global Object clone() { } + global String getTs() { } + global String getUser() { } + global void setTs(String ts) { } + global void setUser(String user) { } + +} +global class Metadata { + global Message.Metadata() { } + global Object clone() { } + global Map getEventPayload() { } + global String getEventType() { } + global void setEventPayload(Map eventPayload) { } + global void setEventType(String eventType) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/MessageBotEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageBotEvent.cls new file mode 100644 index 0000000..60b0644 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageBotEvent.cls @@ -0,0 +1,24 @@ +global class MessageBotEvent { + global MessageBotEvent() { } + global Object clone() { } + global String getBotId() { } + global String getChannel() { } + global String getChannelType() { } + global String getEventTs() { } + global String getSubtype() { } + global String getText() { } + global String getThreadTs() { } + global String getTs() { } + global String getType() { } + global String getUsername() { } + global void setBotId(String botId) { } + global void setChannel(String channel) { } + global void setChannelType(String channelType) { } + global void setEventTs(String eventTs) { } + global void setText(String text) { } + global void setThreadTs(String threadTs) { } + global void setTs(String ts) { } + global void setUsername(String username) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/MessageChangedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageChangedEvent.cls new file mode 100644 index 0000000..ed25d70 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageChangedEvent.cls @@ -0,0 +1,98 @@ +global class MessageChangedEvent { + global MessageChangedEvent() { } + global Object clone() { } + global String getChannel() { } + global String getChannelType() { } + global String getEventTs() { } + global Slack.MessageChangedEvent.Message getMessage() { } + global Slack.MessageChangedEvent.PreviousMessage getPreviousMessage() { } + global String getSubtype() { } + global String getTs() { } + global String getType() { } + global Boolean isHidden() { } + global void setChannel(String channel) { } + global void setChannelType(String channelType) { } + global void setEventTs(String eventTs) { } + global void setHidden(Boolean hidden) { } + global void setMessage(Slack.MessageChangedEvent.Message message) { } + global void setPreviousMessage(Slack.MessageChangedEvent.PreviousMessage previousMessage) { } + global void setTs(String ts) { } + global String toString() { } +global class Edited { + global MessageChangedEvent.Edited() { } + global Object clone() { } + global String getTs() { } + global String getUser() { } + global void setTs(String ts) { } + global void setUser(String user) { } + +} +global class Message { + global MessageChangedEvent.Message() { } + global Object clone() { } + global String getBotId() { } + global Slack.BotProfile getBotProfile() { } + global String getClientMsgId() { } + global Boolean getDisplayAsBot() { } + global List getFiles() { } + global Boolean getHidden() { } + global Boolean getIsLocked() { } + global String getLastRead() { } + global String getLatestReply() { } + global String getParentUserId() { } + global List getPinnedTo() { } + global List getReactions() { } + global Integer getReplyCount() { } + global List getReplyUsers() { } + global Integer getReplyUsersCount() { } + global String getSourceTeam() { } + global Boolean getSubscribed() { } + global String getSubtype() { } + global String getTeam() { } + global String getText() { } + global String getThreadTs() { } + global String getTs() { } + global String getType() { } + global Boolean getUpload() { } + global String getUser() { } + global String getUserTeam() { } + global List getXFiles() { } + global Boolean isStarred() { } + global void setBotId(String botId) { } + global void setBotProfile(Slack.BotProfile botProfile) { } + global void setClientMsgId(String clientMsgId) { } + global void setDisplayAsBot(Boolean displayAsBot) { } + global void setFiles(List files) { } + global void setHidden(Boolean hidden) { } + global void setIsLocked(Boolean isLocked) { } + global void setLastRead(String lastRead) { } + global void setLatestReply(String latestReply) { } + global void setParentUserId(String parentUserId) { } + global void setPinnedTo(List pinnedTo) { } + global void setReactions(List reactions) { } + global void setReplyCount(Integer replyCount) { } + global void setReplyUsers(List replyUsers) { } + global void setReplyUsersCount(Integer replyUsersCount) { } + global void setSourceTeam(String sourceTeam) { } + global void setStarred(Boolean starred) { } + global void setSubscribed(Boolean subscribed) { } + global void setSubtype(String subtype) { } + global void setTeam(String team) { } + global void setText(String text) { } + global void setThreadTs(String threadTs) { } + global void setTs(String ts) { } + global void setUpload(Boolean upload) { } + global void setUser(String user) { } + global void setUserTeam(String userTeam) { } + global void setXFiles(List xFiles) { } + +} +global class PreviousMessage { + global MessageChangedEvent.PreviousMessage() { } + global Object clone() { } + global Slack.MessageChangedEvent.Message getMessage() { } + global void setMessage(Slack.MessageChangedEvent.Message message) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/MessageChannelJoinEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageChannelJoinEvent.cls new file mode 100644 index 0000000..81c3215 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageChannelJoinEvent.cls @@ -0,0 +1,24 @@ +global class MessageChannelJoinEvent { + global MessageChannelJoinEvent() { } + global Object clone() { } + global String getChannel() { } + global String getChannelType() { } + global String getEventTs() { } + global String getInviter() { } + global String getSubtype() { } + global String getTeam() { } + global String getText() { } + global String getTs() { } + global String getType() { } + global String getUser() { } + global void setChannel(String channel) { } + global void setChannelType(String channelType) { } + global void setEventTs(String eventTs) { } + global void setInviter(String inviter) { } + global void setTeam(String team) { } + global void setText(String text) { } + global void setTs(String ts) { } + global void setUser(String user) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/MessageChannelPostingPermissionsEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageChannelPostingPermissionsEvent.cls new file mode 100644 index 0000000..bb891f5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageChannelPostingPermissionsEvent.cls @@ -0,0 +1,20 @@ +global class MessageChannelPostingPermissionsEvent { + global MessageChannelPostingPermissionsEvent() { } + global Object clone() { } + global String getChannel() { } + global String getChannelType() { } + global String getEventTs() { } + global String getSubtype() { } + global String getText() { } + global String getTs() { } + global String getType() { } + global String getUser() { } + global void setChannel(String channel) { } + global void setChannelType(String channelType) { } + global void setEventTs(String eventTs) { } + global void setText(String text) { } + global void setTs(String ts) { } + global void setUser(String user) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/MessageChannelTopicEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageChannelTopicEvent.cls new file mode 100644 index 0000000..90331ae --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageChannelTopicEvent.cls @@ -0,0 +1,22 @@ +global class MessageChannelTopicEvent { + global MessageChannelTopicEvent() { } + global Object clone() { } + global String getChannel() { } + global String getChannelType() { } + global String getEventTs() { } + global String getSubtype() { } + global String getText() { } + global String getTopic() { } + global String getTs() { } + global String getType() { } + global String getUser() { } + global void setChannel(String channel) { } + global void setChannelType(String channelType) { } + global void setEventTs(String eventTs) { } + global void setText(String text) { } + global void setTopic(String topic) { } + global void setTs(String ts) { } + global void setUser(String user) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/MessageContent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageContent.cls new file mode 100644 index 0000000..1679c63 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageContent.cls @@ -0,0 +1,6 @@ +global class MessageContent { + global Object clone() { } + global String getBlocksAsString() { } + global String getText() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/MessageContext.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageContext.cls new file mode 100644 index 0000000..e35eaf3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageContext.cls @@ -0,0 +1,18 @@ +global class MessageContext { + global Object clone() { } + global String getText() { } + global String getThreadTs() { } + global String getTs() { } + global String getUserId() { } +global class Builder { + global MessageContext.Builder() { } + global Slack.MessageContext build() { } + global Object clone() { } + global Slack.MessageContext.Builder text(String text) { } + global Slack.MessageContext.Builder threadTs(String threadTs) { } + global Slack.MessageContext.Builder ts(String ts) { } + global Slack.MessageContext.Builder userId(String userId) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/MessageDeletedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageDeletedEvent.cls new file mode 100644 index 0000000..2607684 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageDeletedEvent.cls @@ -0,0 +1,91 @@ +global class MessageDeletedEvent { + global MessageDeletedEvent() { } + global Object clone() { } + global String getChannel() { } + global String getChannelType() { } + global String getDeletedTs() { } + global String getEventTs() { } + global Slack.MessageDeletedEvent.Message getPreviousMessage() { } + global String getSubtype() { } + global String getTs() { } + global String getType() { } + global Boolean isHidden() { } + global void setChannel(String channel) { } + global void setChannelType(String channelType) { } + global void setDeletedTs(String deletedTs) { } + global void setEventTs(String eventTs) { } + global void setHidden(Boolean hidden) { } + global void setPreviousMessage(Slack.MessageDeletedEvent.Message previousMessage) { } + global void setTs(String ts) { } + global String toString() { } +global class Edited { + global MessageDeletedEvent.Edited() { } + global Object clone() { } + global String getTs() { } + global String getUser() { } + global void setTs(String ts) { } + global void setUser(String user) { } + +} +global class Message { + global MessageDeletedEvent.Message() { } + global Object clone() { } + global String getBotId() { } + global Slack.BotProfile getBotProfile() { } + global String getClientMsgId() { } + global Boolean getDisplayAsBot() { } + global List getFiles() { } + global Boolean getHidden() { } + global Boolean getIsLocked() { } + global String getLastRead() { } + global String getLatestReply() { } + global String getParentUserId() { } + global List getPinnedTo() { } + global List getReactions() { } + global Integer getReplyCount() { } + global List getReplyUsers() { } + global Integer getReplyUsersCount() { } + global String getSourceTeam() { } + global Boolean getSubscribed() { } + global String getSubtype() { } + global String getTeam() { } + global String getText() { } + global String getThreadTs() { } + global String getTs() { } + global String getType() { } + global Boolean getUpload() { } + global String getUser() { } + global String getUserTeam() { } + global List getXFiles() { } + global Boolean isStarred() { } + global void setBotId(String botId) { } + global void setBotProfile(Slack.BotProfile botProfile) { } + global void setClientMsgId(String clientMsgId) { } + global void setDisplayAsBot(Boolean displayAsBot) { } + global void setFiles(List files) { } + global void setHidden(Boolean hidden) { } + global void setIsLocked(Boolean isLocked) { } + global void setLastRead(String lastRead) { } + global void setLatestReply(String latestReply) { } + global void setParentUserId(String parentUserId) { } + global void setPinnedTo(List pinnedTo) { } + global void setReactions(List reactions) { } + global void setReplyCount(Integer replyCount) { } + global void setReplyUsers(List replyUsers) { } + global void setReplyUsersCount(Integer replyUsersCount) { } + global void setSourceTeam(String sourceTeam) { } + global void setStarred(Boolean starred) { } + global void setSubscribed(Boolean subscribed) { } + global void setSubtype(String subtype) { } + global void setTeam(String team) { } + global void setText(String text) { } + global void setThreadTs(String threadTs) { } + global void setTs(String ts) { } + global void setUpload(Boolean upload) { } + global void setUser(String user) { } + global void setUserTeam(String userTeam) { } + global void setXFiles(List xFiles) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/MessageEkmAccessDeniedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageEkmAccessDeniedEvent.cls new file mode 100644 index 0000000..c38c10d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageEkmAccessDeniedEvent.cls @@ -0,0 +1,22 @@ +global class MessageEkmAccessDeniedEvent { + global MessageEkmAccessDeniedEvent() { } + global Object clone() { } + global String getChannel() { } + global String getChannelType() { } + global String getEventTs() { } + global String getSubtype() { } + global String getText() { } + global String getTs() { } + global String getType() { } + global String getUser() { } + global Boolean isHidden() { } + global void setChannel(String channel) { } + global void setChannelType(String channelType) { } + global void setEventTs(String eventTs) { } + global void setHidden(Boolean hidden) { } + global void setText(String text) { } + global void setTs(String ts) { } + global void setUser(String user) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/MessageEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageEvent.cls new file mode 100644 index 0000000..2398e45 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageEvent.cls @@ -0,0 +1,45 @@ +global class MessageEvent { + global MessageEvent() { } + global Object clone() { } + global String getBotId() { } + global Slack.BotProfile getBotProfile() { } + global String getChannel() { } + global String getChannelType() { } + global String getClientMsgId() { } + global Slack.MessageEvent.Edited getEdited() { } + global String getEventTs() { } + global List getFiles() { } + global String getParentUserId() { } + global String getSubtype() { } + global String getTeam() { } + global String getText() { } + global String getThreadTs() { } + global String getTs() { } + global String getType() { } + global String getUser() { } + global void setBotId(String botId) { } + global void setBotProfile(Slack.BotProfile botProfile) { } + global void setChannel(String channel) { } + global void setChannelType(String channelType) { } + global void setClientMsgId(String clientMsgId) { } + global void setEdited(Slack.MessageEvent.Edited edited) { } + global void setEventTs(String eventTs) { } + global void setFiles(List files) { } + global void setParentUserId(String parentUserId) { } + global void setTeam(String team) { } + global void setText(String text) { } + global void setThreadTs(String threadTs) { } + global void setTs(String ts) { } + global void setUser(String user) { } + global String toString() { } +global class Edited { + global MessageEvent.Edited() { } + global Object clone() { } + global String getTs() { } + global String getUser() { } + global void setTs(String ts) { } + global void setUser(String user) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/MessageFileShareEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageFileShareEvent.cls new file mode 100644 index 0000000..a9e333e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageFileShareEvent.cls @@ -0,0 +1,32 @@ +global class MessageFileShareEvent { + global MessageFileShareEvent() { } + global Object clone() { } + global String getChannel() { } + global String getChannelType() { } + global Boolean getDisplayAsBot() { } + global String getEventTs() { } + global List getFiles() { } + global String getParentUserId() { } + global String getSubtype() { } + global String getText() { } + global String getThreadTs() { } + global String getTs() { } + global String getType() { } + global Boolean getUpload() { } + global String getUser() { } + global List getXFiles() { } + global void setChannel(String channel) { } + global void setChannelType(String channelType) { } + global void setDisplayAsBot(Boolean displayAsBot) { } + global void setEventTs(String eventTs) { } + global void setFiles(List files) { } + global void setParentUserId(String parentUserId) { } + global void setText(String text) { } + global void setThreadTs(String threadTs) { } + global void setTs(String ts) { } + global void setUpload(Boolean upload) { } + global void setUser(String user) { } + global void setXFiles(List xFiles) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/MessageGroupTopicEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageGroupTopicEvent.cls new file mode 100644 index 0000000..682c785 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageGroupTopicEvent.cls @@ -0,0 +1,22 @@ +global class MessageGroupTopicEvent { + global MessageGroupTopicEvent() { } + global Object clone() { } + global String getChannel() { } + global String getChannelType() { } + global String getEventTs() { } + global String getSubtype() { } + global String getText() { } + global String getTopic() { } + global String getTs() { } + global String getType() { } + global String getUser() { } + global void setChannel(String channel) { } + global void setChannelType(String channelType) { } + global void setEventTs(String eventTs) { } + global void setText(String text) { } + global void setTopic(String topic) { } + global void setTs(String ts) { } + global void setUser(String user) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/MessageMeEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageMeEvent.cls new file mode 100644 index 0000000..a9d24a4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageMeEvent.cls @@ -0,0 +1,22 @@ +global class MessageMeEvent { + global MessageMeEvent() { } + global Object clone() { } + global String getBotId() { } + global String getChannel() { } + global String getChannelType() { } + global String getEventTs() { } + global String getSubtype() { } + global String getText() { } + global String getTs() { } + global String getType() { } + global String getUsername() { } + global void setBotId(String botId) { } + global void setChannel(String channel) { } + global void setChannelType(String channelType) { } + global void setEventTs(String eventTs) { } + global void setText(String text) { } + global void setTs(String ts) { } + global void setUsername(String username) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/MessageRepliedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageRepliedEvent.cls new file mode 100644 index 0000000..7bf4930 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageRepliedEvent.cls @@ -0,0 +1,55 @@ +global class MessageRepliedEvent { + global MessageRepliedEvent() { } + global Object clone() { } + global String getChannel() { } + global String getEventTs() { } + global Slack.MessageRepliedEvent.Message getMessage() { } + global String getSubtype() { } + global String getTs() { } + global String getType() { } + global Boolean isHidden() { } + global void setChannel(String channel) { } + global void setEventTs(String eventTs) { } + global void setHidden(Boolean hidden) { } + global void setMessage(Slack.MessageRepliedEvent.Message message) { } + global void setTs(String ts) { } + global String toString() { } +global class Edited { + global MessageRepliedEvent.Edited() { } + global Object clone() { } + global String getTs() { } + global String getUser() { } + global void setTs(String ts) { } + global void setUser(String user) { } + +} +global class Message { + global MessageRepliedEvent.Message() { } + global Object clone() { } + global String getClientMsgId() { } + global List getPinnedTo() { } + global List getReactions() { } + global String getSourceTeam() { } + global String getSubtype() { } + global String getTeam() { } + global String getText() { } + global String getTs() { } + global String getType() { } + global String getUser() { } + global String getUserTeam() { } + global Boolean isStarred() { } + global void setClientMsgId(String clientMsgId) { } + global void setPinnedTo(List pinnedTo) { } + global void setReactions(List reactions) { } + global void setSourceTeam(String sourceTeam) { } + global void setStarred(Boolean starred) { } + global void setSubtype(String subtype) { } + global void setTeam(String team) { } + global void setText(String text) { } + global void setTs(String ts) { } + global void setUser(String user) { } + global void setUserTeam(String userTeam) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/MessageThreadBroadcastEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageThreadBroadcastEvent.cls new file mode 100644 index 0000000..0049c54 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/MessageThreadBroadcastEvent.cls @@ -0,0 +1,24 @@ +global class MessageThreadBroadcastEvent { + global MessageThreadBroadcastEvent() { } + global Object clone() { } + global String getChannel() { } + global String getChannelType() { } + global String getClientMsgId() { } + global String getEventTs() { } + global String getSubtype() { } + global String getText() { } + global String getThreadTs() { } + global String getTs() { } + global String getType() { } + global String getUser() { } + global void setChannel(String channel) { } + global void setChannelType(String channelType) { } + global void setClientMsgId(String clientMsgId) { } + global void setEventTs(String eventTs) { } + global void setText(String text) { } + global void setThreadTs(String threadTs) { } + global void setTs(String ts) { } + global void setUser(String user) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/MigrationExchangeRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/MigrationExchangeRequest.cls new file mode 100644 index 0000000..27969c6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/MigrationExchangeRequest.cls @@ -0,0 +1,18 @@ +global class MigrationExchangeRequest { + global static Slack.MigrationExchangeRequest.Builder builder() { } + global Object clone() { } + global String getTeamId() { } + global List getUsers() { } + global Boolean isToOld() { } + global String toString() { } +global class Builder { + global MigrationExchangeRequest.Builder() { } + global Slack.MigrationExchangeRequest build() { } + global Object clone() { } + global Slack.MigrationExchangeRequest.Builder teamId(String teamId) { } + global Slack.MigrationExchangeRequest.Builder toOld(Boolean toOld) { } + global Slack.MigrationExchangeRequest.Builder users(List users) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/MigrationExchangeResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/MigrationExchangeResponse.cls new file mode 100644 index 0000000..fe8a517 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/MigrationExchangeResponse.cls @@ -0,0 +1,26 @@ +global class MigrationExchangeResponse { + global MigrationExchangeResponse() { } + global Object clone() { } + global String getEnterpriseId() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global List getInvalidUserIds() { } + global String getNeeded() { } + global String getProvided() { } + global String getTeamId() { } + global Map getUserIdMap() { } + global String getWarning() { } + global Boolean isOk() { } + global void setEnterpriseId(String enterpriseId) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setInvalidUserIds(List invalidUserIds) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setTeamId(String teamId) { } + global void setUserIdMap(Map userIdMap) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ModalHandler.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ModalHandler.cls new file mode 100644 index 0000000..ad6b405 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ModalHandler.cls @@ -0,0 +1,4 @@ +global interface ModalHandler { + Slack.ModalView call(); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ModalView.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ModalView.cls new file mode 100644 index 0000000..21a4a3c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ModalView.cls @@ -0,0 +1,17 @@ +global class ModalView { + global static Slack.ModalView.Builder builder() { } + global Object clone() { } + global String getExternalId() { } + global Slack.ViewReference getViewReference() { } + global String toString() { } +global class Builder { + global ModalView.Builder() { } + global Slack.ModalView build() { } + global Slack.ModalView.Builder clearOnClose(Boolean clearOnClose) { } + global Object clone() { } + global Slack.ModalView.Builder externalId(String externalId) { } + global Slack.ModalView.Builder viewReference(Slack.ViewReference viewReference) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/Option.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/Option.cls new file mode 100644 index 0000000..c70b16f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/Option.cls @@ -0,0 +1,7 @@ +global class Option { + global Option(String text, String value) { } + global Object clone() { } + global String getText() { } + global String getValue() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/OptionDataResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/OptionDataResponse.cls new file mode 100644 index 0000000..b6e1415 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/OptionDataResponse.cls @@ -0,0 +1,8 @@ +global class OptionDataResponse { + global OptionDataResponse(List options) { } + global OptionDataResponse(List optionGroups) { } + global Object clone() { } + global List getOptionGroups() { } + global List getOptions() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/OptionGroup.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/OptionGroup.cls new file mode 100644 index 0000000..a5ff827 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/OptionGroup.cls @@ -0,0 +1,7 @@ +global class OptionGroup { + global OptionGroup(String label, List options) { } + global Object clone() { } + global String getLabel() { } + global List getOptions() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/Paging.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/Paging.cls new file mode 100644 index 0000000..d0286bf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/Paging.cls @@ -0,0 +1,20 @@ +global class Paging { + global Paging() { } + global Object clone() { } + global Integer getCount() { } + global String getIid() { } + global Integer getPage() { } + global Integer getPages() { } + global Integer getPerPage() { } + global Integer getSpill() { } + global Integer getTotal() { } + global void setCount(Integer count) { } + global void setIid(String iid) { } + global void setPage(Integer page) { } + global void setPages(Integer pages) { } + global void setPerPage(Integer perPage) { } + global void setSpill(Integer spill) { } + global void setTotal(Integer total) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/PinAddedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/PinAddedEvent.cls new file mode 100644 index 0000000..ccc353c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/PinAddedEvent.cls @@ -0,0 +1,79 @@ +global class PinAddedEvent { + global PinAddedEvent() { } + global Object clone() { } + global String getChannelId() { } + global String getEventTs() { } + global Slack.PinAddedEvent.Item getItem() { } + global String getItemUser() { } + global Integer getPinCount() { } + global Slack.PinAddedEvent.PinnedInfo getPinnedInfo() { } + global String getSubtype() { } + global String getType() { } + global String getUser() { } + global void setChannelId(String channelId) { } + global void setEventTs(String eventTs) { } + global void setItem(Slack.PinAddedEvent.Item item) { } + global void setItemUser(String itemUser) { } + global void setPinCount(Integer pinCount) { } + global void setPinnedInfo(Slack.PinAddedEvent.PinnedInfo pinnedInfo) { } + global void setUser(String user) { } + global String toString() { } +global class Item { + global PinAddedEvent.Item() { } + global Object clone() { } + global String getChannel() { } + global Slack.FileComment getComment() { } + global Integer getCreated() { } + global String getCreatedBy() { } + global Slack.File getFile() { } + global Slack.PinAddedEvent.Message getMessage() { } + global String getType() { } + global void setChannel(String channel) { } + global void setComment(Slack.FileComment comment) { } + global void setCreated(Integer created) { } + global void setCreatedBy(String createdBy) { } + global void setFile(Slack.File file) { } + global void setMessage(Slack.PinAddedEvent.Message message) { } + global void setType(String type) { } + +} +global class Message { + global PinAddedEvent.Message() { } + global Object clone() { } + global String getAppId() { } + global String getBotId() { } + global Slack.BotProfile getBotProfile() { } + global String getClientMsgId() { } + global String getPermalink() { } + global List getPinnedTo() { } + global String getTeam() { } + global String getText() { } + global String getTs() { } + global String getType() { } + global String getUser() { } + global void setAppId(String appId) { } + global void setBotId(String botId) { } + global void setBotProfile(Slack.BotProfile botProfile) { } + global void setClientMsgId(String clientMsgId) { } + global void setPermalink(String permalink) { } + global void setPinnedTo(List pinnedTo) { } + global void setTeam(String team) { } + global void setText(String text) { } + global void setTs(String ts) { } + global void setType(String type) { } + global void setUser(String user) { } + +} +global class PinnedInfo { + global PinAddedEvent.PinnedInfo() { } + global Object clone() { } + global String getChannel() { } + global String getPinnedBy() { } + global Long getPinnedTs() { } + global void setChannel(String channel) { } + global void setPinnedBy(String pinnedBy) { } + global void setPinnedTs(Long pinnedTs) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/PinRemovedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/PinRemovedEvent.cls new file mode 100644 index 0000000..d2b86c7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/PinRemovedEvent.cls @@ -0,0 +1,81 @@ +global class PinRemovedEvent { + global PinRemovedEvent() { } + global Object clone() { } + global String getChannelId() { } + global String getEventTs() { } + global Slack.PinRemovedEvent.Item getItem() { } + global String getItemUser() { } + global Integer getPinCount() { } + global Slack.PinRemovedEvent.PinnedInfo getPinnedInfo() { } + global String getSubtype() { } + global String getType() { } + global String getUser() { } + global Boolean isHasPins() { } + global void setChannelId(String channelId) { } + global void setEventTs(String eventTs) { } + global void setHasPins(Boolean hasPins) { } + global void setItem(Slack.PinRemovedEvent.Item item) { } + global void setItemUser(String itemUser) { } + global void setPinCount(Integer pinCount) { } + global void setPinnedInfo(Slack.PinRemovedEvent.PinnedInfo pinnedInfo) { } + global void setUser(String user) { } + global String toString() { } +global class Item { + global PinRemovedEvent.Item() { } + global Object clone() { } + global String getChannel() { } + global Slack.FileComment getComment() { } + global Integer getCreated() { } + global String getCreatedBy() { } + global Slack.File getFile() { } + global Slack.PinRemovedEvent.Message getMessage() { } + global String getType() { } + global void setChannel(String channel) { } + global void setComment(Slack.FileComment comment) { } + global void setCreated(Integer created) { } + global void setCreatedBy(String createdBy) { } + global void setFile(Slack.File file) { } + global void setMessage(Slack.PinRemovedEvent.Message message) { } + global void setType(String type) { } + +} +global class Message { + global PinRemovedEvent.Message() { } + global Object clone() { } + global String getAppId() { } + global String getBotId() { } + global Slack.BotProfile getBotProfile() { } + global String getClientMsgId() { } + global String getPermalink() { } + global List getPinnedTo() { } + global String getTeam() { } + global String getText() { } + global String getTs() { } + global String getType() { } + global String getUser() { } + global void setAppId(String appId) { } + global void setBotId(String botId) { } + global void setBotProfile(Slack.BotProfile botProfile) { } + global void setClientMsgId(String clientMsgId) { } + global void setPermalink(String permalink) { } + global void setPinnedTo(List pinnedTo) { } + global void setTeam(String team) { } + global void setText(String text) { } + global void setTs(String ts) { } + global void setType(String type) { } + global void setUser(String user) { } + +} +global class PinnedInfo { + global PinRemovedEvent.PinnedInfo() { } + global Object clone() { } + global String getChannel() { } + global String getPinnedBy() { } + global Long getPinnedTs() { } + global void setChannel(String channel) { } + global void setPinnedBy(String pinnedBy) { } + global void setPinnedTs(Long pinnedTs) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/PinsAddRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/PinsAddRequest.cls new file mode 100644 index 0000000..7791958 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/PinsAddRequest.cls @@ -0,0 +1,16 @@ +global class PinsAddRequest { + global static Slack.PinsAddRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global String getTimestamp() { } + global String toString() { } +global class Builder { + global PinsAddRequest.Builder() { } + global Slack.PinsAddRequest build() { } + global Slack.PinsAddRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.PinsAddRequest.Builder timestamp(String timestamp) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/PinsAddResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/PinsAddResponse.cls new file mode 100644 index 0000000..c6d179d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/PinsAddResponse.cls @@ -0,0 +1,20 @@ +global class PinsAddResponse { + global PinsAddResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.ErrorResponseMetadata getResponseMetadata() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ErrorResponseMetadata responseMetadata) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/PinsListRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/PinsListRequest.cls new file mode 100644 index 0000000..d709d59 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/PinsListRequest.cls @@ -0,0 +1,14 @@ +global class PinsListRequest { + global static Slack.PinsListRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global String toString() { } +global class Builder { + global PinsListRequest.Builder() { } + global Slack.PinsListRequest build() { } + global Slack.PinsListRequest.Builder channel(String channel) { } + global Object clone() { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/PinsListResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/PinsListResponse.cls new file mode 100644 index 0000000..423977c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/PinsListResponse.cls @@ -0,0 +1,39 @@ +global class PinsListResponse { + global PinsListResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global List getItems() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setItems(List items) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } +global class MessageItem { + global PinsListResponse.MessageItem() { } + global Object clone() { } + global String getChannel() { } + global String getComment() { } + global Integer getCreated() { } + global String getCreatedBy() { } + global Slack.File getFile() { } + global Slack.Message getMessage() { } + global String getType() { } + global void setChannel(String channel) { } + global void setComment(String comment) { } + global void setCreated(Integer created) { } + global void setCreatedBy(String createdBy) { } + global void setFile(Slack.File file) { } + global void setMessage(Slack.Message message) { } + global void setType(String type) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/PinsRemoveRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/PinsRemoveRequest.cls new file mode 100644 index 0000000..a31cec4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/PinsRemoveRequest.cls @@ -0,0 +1,16 @@ +global class PinsRemoveRequest { + global static Slack.PinsRemoveRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global String getTimestamp() { } + global String toString() { } +global class Builder { + global PinsRemoveRequest.Builder() { } + global Slack.PinsRemoveRequest build() { } + global Slack.PinsRemoveRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.PinsRemoveRequest.Builder timestamp(String timestamp) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/PinsRemoveResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/PinsRemoveResponse.cls new file mode 100644 index 0000000..f5b3e8a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/PinsRemoveResponse.cls @@ -0,0 +1,18 @@ +global class PinsRemoveResponse { + global PinsRemoveResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/Purpose.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/Purpose.cls new file mode 100644 index 0000000..fee4aee --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/Purpose.cls @@ -0,0 +1,12 @@ +global class Purpose { + global Purpose() { } + global Object clone() { } + global String getCreator() { } + global Integer getLastSet() { } + global String getValue() { } + global void setCreator(String creator) { } + global void setLastSet(Integer lastSet) { } + global void setValue(String value) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/Reaction.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/Reaction.cls new file mode 100644 index 0000000..18d1e4c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/Reaction.cls @@ -0,0 +1,14 @@ +global class Reaction { + global Reaction() { } + global Object clone() { } + global Integer getCount() { } + global String getName() { } + global String getUrl() { } + global List getUsers() { } + global void setCount(Integer count) { } + global void setName(String name) { } + global void setUrl(String url) { } + global void setUsers(List users) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionAddedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionAddedEvent.cls new file mode 100644 index 0000000..605b586 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionAddedEvent.cls @@ -0,0 +1,33 @@ +global class ReactionAddedEvent { + global ReactionAddedEvent() { } + global Object clone() { } + global String getEventTs() { } + global Slack.ReactionAddedEvent.Item getItem() { } + global String getItemUser() { } + global String getReaction() { } + global String getSubtype() { } + global String getType() { } + global String getUser() { } + global void setEventTs(String eventTs) { } + global void setItem(Slack.ReactionAddedEvent.Item item) { } + global void setItemUser(String itemUser) { } + global void setReaction(String reaction) { } + global void setUser(String user) { } + global String toString() { } +global class Item { + global ReactionAddedEvent.Item() { } + global Object clone() { } + global String getChannel() { } + global String getFile() { } + global String getFileComment() { } + global String getTs() { } + global String getType() { } + global void setChannel(String channel) { } + global void setFile(String file) { } + global void setFileComment(String fileComment) { } + global void setTs(String ts) { } + global void setType(String type) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionRemovedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionRemovedEvent.cls new file mode 100644 index 0000000..49b122d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionRemovedEvent.cls @@ -0,0 +1,33 @@ +global class ReactionRemovedEvent { + global ReactionRemovedEvent() { } + global Object clone() { } + global String getEventTs() { } + global Slack.ReactionRemovedEvent.Item getItem() { } + global String getItemUser() { } + global String getReaction() { } + global String getSubtype() { } + global String getType() { } + global String getUser() { } + global void setEventTs(String eventTs) { } + global void setItem(Slack.ReactionRemovedEvent.Item item) { } + global void setItemUser(String itemUser) { } + global void setReaction(String reaction) { } + global void setUser(String user) { } + global String toString() { } +global class Item { + global ReactionRemovedEvent.Item() { } + global Object clone() { } + global String getChannel() { } + global String getFile() { } + global String getFileComment() { } + global String getTs() { } + global String getType() { } + global void setChannel(String channel) { } + global void setFile(String file) { } + global void setFileComment(String fileComment) { } + global void setTs(String ts) { } + global void setType(String type) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionsAddRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionsAddRequest.cls new file mode 100644 index 0000000..6d3096a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionsAddRequest.cls @@ -0,0 +1,18 @@ +global class ReactionsAddRequest { + global static Slack.ReactionsAddRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global String getName() { } + global String getTimestamp() { } + global String toString() { } +global class Builder { + global ReactionsAddRequest.Builder() { } + global Slack.ReactionsAddRequest build() { } + global Slack.ReactionsAddRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.ReactionsAddRequest.Builder name(String name) { } + global Slack.ReactionsAddRequest.Builder timestamp(String timestamp) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionsAddResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionsAddResponse.cls new file mode 100644 index 0000000..bf1dbc0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionsAddResponse.cls @@ -0,0 +1,18 @@ +global class ReactionsAddResponse { + global ReactionsAddResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionsGetRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionsGetRequest.cls new file mode 100644 index 0000000..6c8d638 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionsGetRequest.cls @@ -0,0 +1,22 @@ +global class ReactionsGetRequest { + global static Slack.ReactionsGetRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global String getFile() { } + global String getFileComment() { } + global String getTimestamp() { } + global Boolean isFull() { } + global String toString() { } +global class Builder { + global ReactionsGetRequest.Builder() { } + global Slack.ReactionsGetRequest build() { } + global Slack.ReactionsGetRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.ReactionsGetRequest.Builder file(String file) { } + global Slack.ReactionsGetRequest.Builder fileComment(String fileComment) { } + global Slack.ReactionsGetRequest.Builder full(Boolean full) { } + global Slack.ReactionsGetRequest.Builder timestamp(String timestamp) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionsGetResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionsGetResponse.cls new file mode 100644 index 0000000..57ede1b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionsGetResponse.cls @@ -0,0 +1,53 @@ +global class ReactionsGetResponse { + global ReactionsGetResponse() { } + global Object clone() { } + global String getChannel() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global Slack.ReactionsGetResponse.Message getMessage() { } + global String getNeeded() { } + global String getProvided() { } + global String getType() { } + global String getWarning() { } + global Boolean isOk() { } + global void setChannel(String channel) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setMessage(Slack.ReactionsGetResponse.Message message) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setType(String type) { } + global void setWarning(String warning) { } + global String toString() { } +global class Message { + global ReactionsGetResponse.Message() { } + global Object clone() { } + global String getAppId() { } + global String getBotId() { } + global Slack.BotProfile getBotProfile() { } + global String getPermalink() { } + global List getReactions() { } + global String getSubtype() { } + global String getTeam() { } + global String getText() { } + global String getTs() { } + global String getType() { } + global String getUser() { } + global String getUsername() { } + global void setAppId(String appId) { } + global void setBotId(String botId) { } + global void setBotProfile(Slack.BotProfile botProfile) { } + global void setPermalink(String permalink) { } + global void setReactions(List reactions) { } + global void setSubtype(String subtype) { } + global void setTeam(String team) { } + global void setText(String text) { } + global void setTs(String ts) { } + global void setType(String type) { } + global void setUser(String user) { } + global void setUsername(String username) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionsListRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionsListRequest.cls new file mode 100644 index 0000000..b30bd9a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionsListRequest.cls @@ -0,0 +1,26 @@ +global class ReactionsListRequest { + global static Slack.ReactionsListRequest.Builder builder() { } + global Object clone() { } + global Integer getCount() { } + global String getCursor() { } + global Integer getLimit() { } + global Integer getPage() { } + global String getTeamId() { } + global String getUser() { } + global Boolean isFull() { } + global String toString() { } +global class Builder { + global ReactionsListRequest.Builder() { } + global Slack.ReactionsListRequest build() { } + global Object clone() { } + global Slack.ReactionsListRequest.Builder count(Integer count) { } + global Slack.ReactionsListRequest.Builder cursor(String cursor) { } + global Slack.ReactionsListRequest.Builder full(Boolean full) { } + global Slack.ReactionsListRequest.Builder limitValue(Integer limitValue) { } + global Slack.ReactionsListRequest.Builder page(Integer page) { } + global Slack.ReactionsListRequest.Builder teamId(String teamId) { } + global Slack.ReactionsListRequest.Builder user(String user) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionsListResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionsListResponse.cls new file mode 100644 index 0000000..4f06683 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionsListResponse.cls @@ -0,0 +1,145 @@ +global class ReactionsListResponse { + global ReactionsListResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global List getItems() { } + global String getNeeded() { } + global Slack.Paging getPaging() { } + global String getProvided() { } + global Slack.ResponseMetadata getResponseMetadata() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setItems(List items) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setPaging(Slack.Paging paging) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ResponseMetadata responseMetadata) { } + global void setWarning(String warning) { } + global String toString() { } +global class Icons { + global ReactionsListResponse.Icons() { } + global Object clone() { } + global String getImage36() { } + global String getImage48() { } + global String getImage64() { } + global String getImage72() { } + global void setImage36(String image36) { } + global void setImage48(String image48) { } + global void setImage64(String image64) { } + global void setImage72(String image72) { } + +} +global class Item { + global ReactionsListResponse.Item() { } + global Object clone() { } + global String getChannel() { } + global Slack.ReactionsListResponse.Message getMessage() { } + global String getType() { } + global void setChannel(String channel) { } + global void setMessage(Slack.ReactionsListResponse.Message message) { } + global void setType(String type) { } + +} +global class Message { + global ReactionsListResponse.Message() { } + global Object clone() { } + global String getAppId() { } + global String getBotId() { } + global Slack.BotProfile getBotProfile() { } + global String getClientMsgId() { } + global List getFiles() { } + global Slack.ReactionsListResponse.Icons getIcons() { } + global String getInviter() { } + global String getLastRead() { } + global String getLatestReply() { } + global String getParentUserId() { } + global String getPermalink() { } + global List getReactions() { } + global Integer getReplyCount() { } + global List getReplyUsers() { } + global Integer getReplyUsersCount() { } + global String getSourceTeam() { } + global String getSubtype() { } + global String getTeam() { } + global String getText() { } + global String getThreadTs() { } + global String getTs() { } + global String getType() { } + global String getUser() { } + global Slack.ReactionsListResponse.UserProfile getUserProfile() { } + global String getUserTeam() { } + global String getUsername() { } + global Boolean isDisplayAsBot() { } + global Boolean isLocked() { } + global Boolean isSubscribed() { } + global Boolean isUpload() { } + global void setAppId(String appId) { } + global void setBotId(String botId) { } + global void setBotProfile(Slack.BotProfile botProfile) { } + global void setClientMsgId(String clientMsgId) { } + global void setDisplayAsBot(Boolean displayAsBot) { } + global void setFiles(List files) { } + global void setIcons(Slack.ReactionsListResponse.Icons icons) { } + global void setInviter(String inviter) { } + global void setLastRead(String lastRead) { } + global void setLatestReply(String latestReply) { } + global void setLocked(Boolean locked) { } + global void setParentUserId(String parentUserId) { } + global void setPermalink(String permalink) { } + global void setReactions(List reactions) { } + global void setReplyCount(Integer replyCount) { } + global void setReplyUsers(List replyUsers) { } + global void setReplyUsersCount(Integer replyUsersCount) { } + global void setSourceTeam(String sourceTeam) { } + global void setSubscribed(Boolean subscribed) { } + global void setSubtype(String subtype) { } + global void setTeam(String team) { } + global void setText(String text) { } + global void setThreadTs(String threadTs) { } + global void setTs(String ts) { } + global void setType(String type) { } + global void setUpload(Boolean upload) { } + global void setUser(String user) { } + global void setUserProfile(Slack.ReactionsListResponse.UserProfile userProfile) { } + global void setUserTeam(String userTeam) { } + global void setUsername(String username) { } + +} +global class MessageRootReply { + global ReactionsListResponse.MessageRootReply() { } + global Object clone() { } + global String getTs() { } + global String getUser() { } + global void setTs(String ts) { } + global void setUser(String user) { } + +} +global class UserProfile { + global ReactionsListResponse.UserProfile() { } + global Object clone() { } + global String getAvatarHash() { } + global String getDisplayName() { } + global String getFirstName() { } + global String getImage72() { } + global String getName() { } + global String getRealName() { } + global String getTeam() { } + global Boolean isRestricted() { } + global Boolean isUltraRestricted() { } + global void setAvatarHash(String avatarHash) { } + global void setDisplayName(String displayName) { } + global void setFirstName(String firstName) { } + global void setImage72(String image72) { } + global void setName(String name) { } + global void setRealName(String realName) { } + global void setRestricted(Boolean restricted) { } + global void setTeam(String team) { } + global void setUltraRestricted(Boolean ultraRestricted) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionsRemoveRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionsRemoveRequest.cls new file mode 100644 index 0000000..692c840 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionsRemoveRequest.cls @@ -0,0 +1,22 @@ +global class ReactionsRemoveRequest { + global static Slack.ReactionsRemoveRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global String getFile() { } + global String getFileComment() { } + global String getName() { } + global String getTimestamp() { } + global String toString() { } +global class Builder { + global ReactionsRemoveRequest.Builder() { } + global Slack.ReactionsRemoveRequest build() { } + global Slack.ReactionsRemoveRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.ReactionsRemoveRequest.Builder file(String file) { } + global Slack.ReactionsRemoveRequest.Builder fileComment(String fileComment) { } + global Slack.ReactionsRemoveRequest.Builder name(String name) { } + global Slack.ReactionsRemoveRequest.Builder timestamp(String timestamp) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionsRemoveResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionsRemoveResponse.cls new file mode 100644 index 0000000..7d8def2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ReactionsRemoveResponse.cls @@ -0,0 +1,18 @@ +global class ReactionsRemoveResponse { + global ReactionsRemoveResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/Reminder.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/Reminder.cls new file mode 100644 index 0000000..1f09cf8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/Reminder.cls @@ -0,0 +1,35 @@ +global class Reminder { + global Reminder() { } + global Object clone() { } + global String getChannel() { } + global Integer getCompleteTs() { } + global String getCreator() { } + global String getId() { } + global Object getItem() { } + global Slack.Reminder.Recurrence getRecurrence() { } + global String getText() { } + global Integer getTime() { } + global String getUser() { } + global Boolean isRecurring() { } + global void setChannel(String channel) { } + global void setCompleteTs(Integer completeTs) { } + global void setCreator(String creator) { } + global void setId(String id) { } + global void setItem(Object item) { } + global void setRecurrence(Slack.Reminder.Recurrence recurrence) { } + global void setRecurring(Boolean recurring) { } + global void setText(String text) { } + global void setTime(Integer timeValue) { } + global void setUser(String user) { } + global String toString() { } +global class Recurrence { + global Reminder.Recurrence() { } + global Object clone() { } + global String getFrequency() { } + global List getWeekdays() { } + global void setFrequency(String frequency) { } + global void setWeekdays(List weekdays) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersAddRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersAddRequest.cls new file mode 100644 index 0000000..07f1ea9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersAddRequest.cls @@ -0,0 +1,20 @@ +global class RemindersAddRequest { + global static Slack.RemindersAddRequest.Builder builder() { } + global Object clone() { } + global String getTeamId() { } + global String getText() { } + global String getTime() { } + global String getUser() { } + global String toString() { } +global class Builder { + global RemindersAddRequest.Builder() { } + global Slack.RemindersAddRequest build() { } + global Object clone() { } + global Slack.RemindersAddRequest.Builder teamId(String teamId) { } + global Slack.RemindersAddRequest.Builder text(String text) { } + global Slack.RemindersAddRequest.Builder timeValue(String timeValue) { } + global Slack.RemindersAddRequest.Builder user(String user) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersAddResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersAddResponse.cls new file mode 100644 index 0000000..db05d6c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersAddResponse.cls @@ -0,0 +1,22 @@ +global class RemindersAddResponse { + global RemindersAddResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.Reminder getReminder() { } + global Slack.ResponseMetadata getResponseMetadata() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setReminder(Slack.Reminder reminder) { } + global void setResponseMetadata(Slack.ResponseMetadata responseMetadata) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersCompleteRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersCompleteRequest.cls new file mode 100644 index 0000000..bf62976 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersCompleteRequest.cls @@ -0,0 +1,16 @@ +global class RemindersCompleteRequest { + global static Slack.RemindersCompleteRequest.Builder builder() { } + global Object clone() { } + global String getReminder() { } + global String getTeamId() { } + global String toString() { } +global class Builder { + global RemindersCompleteRequest.Builder() { } + global Slack.RemindersCompleteRequest build() { } + global Object clone() { } + global Slack.RemindersCompleteRequest.Builder reminder(String reminder) { } + global Slack.RemindersCompleteRequest.Builder teamId(String teamId) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersCompleteResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersCompleteResponse.cls new file mode 100644 index 0000000..1d7f243 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersCompleteResponse.cls @@ -0,0 +1,18 @@ +global class RemindersCompleteResponse { + global RemindersCompleteResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersDeleteRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersDeleteRequest.cls new file mode 100644 index 0000000..6f90b32 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersDeleteRequest.cls @@ -0,0 +1,16 @@ +global class RemindersDeleteRequest { + global static Slack.RemindersDeleteRequest.Builder builder() { } + global Object clone() { } + global String getReminder() { } + global String getTeamId() { } + global String toString() { } +global class Builder { + global RemindersDeleteRequest.Builder() { } + global Slack.RemindersDeleteRequest build() { } + global Object clone() { } + global Slack.RemindersDeleteRequest.Builder reminder(String reminder) { } + global Slack.RemindersDeleteRequest.Builder teamId(String teamId) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersDeleteResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersDeleteResponse.cls new file mode 100644 index 0000000..12554fe --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersDeleteResponse.cls @@ -0,0 +1,18 @@ +global class RemindersDeleteResponse { + global RemindersDeleteResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersInfoRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersInfoRequest.cls new file mode 100644 index 0000000..b86b3c4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersInfoRequest.cls @@ -0,0 +1,16 @@ +global class RemindersInfoRequest { + global static Slack.RemindersInfoRequest.Builder builder() { } + global Object clone() { } + global String getReminder() { } + global String getTeamId() { } + global String toString() { } +global class Builder { + global RemindersInfoRequest.Builder() { } + global Slack.RemindersInfoRequest build() { } + global Object clone() { } + global Slack.RemindersInfoRequest.Builder reminder(String reminder) { } + global Slack.RemindersInfoRequest.Builder teamId(String teamId) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersInfoResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersInfoResponse.cls new file mode 100644 index 0000000..1892447 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersInfoResponse.cls @@ -0,0 +1,20 @@ +global class RemindersInfoResponse { + global RemindersInfoResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.Reminder getReminder() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setReminder(Slack.Reminder reminder) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersListRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersListRequest.cls new file mode 100644 index 0000000..fb9f22b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersListRequest.cls @@ -0,0 +1,14 @@ +global class RemindersListRequest { + global static Slack.RemindersListRequest.Builder builder() { } + global Object clone() { } + global String getTeamId() { } + global String toString() { } +global class Builder { + global RemindersListRequest.Builder() { } + global Slack.RemindersListRequest build() { } + global Object clone() { } + global Slack.RemindersListRequest.Builder teamId(String teamId) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersListResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersListResponse.cls new file mode 100644 index 0000000..940166a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/RemindersListResponse.cls @@ -0,0 +1,20 @@ +global class RemindersListResponse { + global RemindersListResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global List getReminders() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setReminders(List reminders) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/RequestContext.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/RequestContext.cls new file mode 100644 index 0000000..f1c9ccd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/RequestContext.cls @@ -0,0 +1,35 @@ +global class RequestContext { + global Object clone() { } + global Slack.ActionPayload getActionPayload() { } + global Slack.App getApp() { } + global String getAppId() { } + global String getChannelId() { } + global String getEnterpriseId() { } + global Map getFormData() { } + global Slack.MessageContext getMessageContext() { } + global String getTeamId() { } + global String getTriggerId() { } + global String getUserId() { } + global Slack.UserType getUserType() { } + global Slack.ViewContext getViewContext() { } + global Boolean isDefaultOrg() { } +global class Builder { + global RequestContext.Builder() { } + global Slack.RequestContext.Builder actionPayload(Slack.ActionPayload actionPayload) { } + global Slack.RequestContext.Builder appId(String appId) { } + global Slack.RequestContext build() { } + global Slack.RequestContext.Builder channelId(String channelId) { } + global Object clone() { } + global Slack.RequestContext.Builder enterpriseId(String enterpriseId) { } + global Slack.RequestContext.Builder formData(Map formData) { } + global Slack.RequestContext.Builder messageContext(Slack.MessageContext messageContext) { } + global Slack.RequestContext.Builder setIsDefaultOrg(Boolean isDefaultOrg) { } + global Slack.RequestContext.Builder teamId(String teamId) { } + global Slack.RequestContext.Builder triggerId(String triggerId) { } + global Slack.RequestContext.Builder userId(String userId) { } + global Slack.RequestContext.Builder userType(Slack.UserType userType) { } + global Slack.RequestContext.Builder viewContext(Slack.ViewContext viewContext) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/RequestedApp.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/RequestedApp.cls new file mode 100644 index 0000000..5df3a19 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/RequestedApp.cls @@ -0,0 +1,28 @@ +global class RequestedApp { + global RequestedApp() { } + global Object clone() { } + global String getAdditionalInfo() { } + global String getAppDirectoryUrl() { } + global String getAppHomepageUrl() { } + global String getDescription() { } + global String getHelpUrl() { } + global Slack.AppIcons getIcons() { } + global String getId() { } + global String getName() { } + global String getPrivacyPolicyUrl() { } + global Boolean isAppDirectoryApproved() { } + global Boolean isInternal() { } + global void setAdditionalInfo(String additionalInfo) { } + global void setAppDirectoryApproved(Boolean appDirectoryApproved) { } + global void setAppDirectoryUrl(String appDirectoryUrl) { } + global void setAppHomepageUrl(String appHomepageUrl) { } + global void setDescription(String description) { } + global void setHelpUrl(String helpUrl) { } + global void setIcons(Slack.AppIcons icons) { } + global void setId(String id) { } + global void setInternal(Boolean internal) { } + global void setName(String name) { } + global void setPrivacyPolicyUrl(String privacyPolicyUrl) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ResponseMetadata.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ResponseMetadata.cls new file mode 100644 index 0000000..f46c5d6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ResponseMetadata.cls @@ -0,0 +1,12 @@ +global class ResponseMetadata { + global ResponseMetadata() { } + global Object clone() { } + global List getMessages() { } + global String getNextCursor() { } + global List getWarnings() { } + global void setMessages(List messages) { } + global void setNextCursor(String nextCursor) { } + global void setWarnings(List warnings) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/RunnableHandler.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/RunnableHandler.cls new file mode 100644 index 0000000..d5d730b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/RunnableHandler.cls @@ -0,0 +1,4 @@ +global interface RunnableHandler { + void run(); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/SearchAllRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/SearchAllRequest.cls new file mode 100644 index 0000000..723b6b8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/SearchAllRequest.cls @@ -0,0 +1,26 @@ +global class SearchAllRequest { + global static Slack.SearchAllRequest.Builder builder() { } + global Object clone() { } + global Integer getCount() { } + global Integer getPage() { } + global String getQuery() { } + global String getSort() { } + global String getSortDir() { } + global String getTeamId() { } + global Boolean isHighlight() { } + global String toString() { } +global class Builder { + global SearchAllRequest.Builder() { } + global Slack.SearchAllRequest build() { } + global Object clone() { } + global Slack.SearchAllRequest.Builder count(Integer count) { } + global Slack.SearchAllRequest.Builder highlight(Boolean highlight) { } + global Slack.SearchAllRequest.Builder page(Integer page) { } + global Slack.SearchAllRequest.Builder query(String query) { } + global Slack.SearchAllRequest.Builder sortDir(String sortDir) { } + global Slack.SearchAllRequest.Builder sortValue(String sortValue) { } + global Slack.SearchAllRequest.Builder teamId(String teamId) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/SearchAllResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/SearchAllResponse.cls new file mode 100644 index 0000000..0137277 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/SearchAllResponse.cls @@ -0,0 +1,35 @@ +global class SearchAllResponse { + global SearchAllResponse() { } + global Object clone() { } + global String getError() { } + global Slack.SearchResult getFiles() { } + global Map> getHttpResponseHeaders() { } + global Slack.SearchResult getMessages() { } + global String getNeeded() { } + global Slack.SearchAllResponse.Posts getPosts() { } + global String getProvided() { } + global String getQuery() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setFiles(Slack.SearchResult files) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setMessages(Slack.SearchResult messages) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setPosts(Slack.SearchAllResponse.Posts posts) { } + global void setProvided(String provided) { } + global void setQuery(String query) { } + global void setWarning(String warning) { } + global String toString() { } +global class Posts { + global SearchAllResponse.Posts() { } + global Object clone() { } + global List getMatches() { } + global Integer getTotal() { } + global void setMatches(List matches) { } + global void setTotal(Integer total) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/SearchFilesRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/SearchFilesRequest.cls new file mode 100644 index 0000000..baba418 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/SearchFilesRequest.cls @@ -0,0 +1,26 @@ +global class SearchFilesRequest { + global static Slack.SearchFilesRequest.Builder builder() { } + global Object clone() { } + global Integer getCount() { } + global Integer getPage() { } + global String getQuery() { } + global String getSort() { } + global String getSortDir() { } + global String getTeamId() { } + global Boolean isHighlight() { } + global String toString() { } +global class Builder { + global SearchFilesRequest.Builder() { } + global Slack.SearchFilesRequest build() { } + global Object clone() { } + global Slack.SearchFilesRequest.Builder count(Integer count) { } + global Slack.SearchFilesRequest.Builder highlight(Boolean highlight) { } + global Slack.SearchFilesRequest.Builder page(Integer page) { } + global Slack.SearchFilesRequest.Builder query(String query) { } + global Slack.SearchFilesRequest.Builder sortDir(String sortDir) { } + global Slack.SearchFilesRequest.Builder sortValue(String sortValue) { } + global Slack.SearchFilesRequest.Builder teamId(String teamId) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/SearchFilesResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/SearchFilesResponse.cls new file mode 100644 index 0000000..44e8299 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/SearchFilesResponse.cls @@ -0,0 +1,22 @@ +global class SearchFilesResponse { + global SearchFilesResponse() { } + global Object clone() { } + global String getError() { } + global Slack.SearchResult getFiles() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getQuery() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setFiles(Slack.SearchResult files) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setQuery(String query) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/SearchMessagesRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/SearchMessagesRequest.cls new file mode 100644 index 0000000..19c4d7d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/SearchMessagesRequest.cls @@ -0,0 +1,28 @@ +global class SearchMessagesRequest { + global static Slack.SearchMessagesRequest.Builder builder() { } + global Object clone() { } + global Integer getCount() { } + global String getCursor() { } + global Integer getPage() { } + global String getQuery() { } + global String getSort() { } + global String getSortDir() { } + global String getTeamId() { } + global Boolean isHighlight() { } + global String toString() { } +global class Builder { + global SearchMessagesRequest.Builder() { } + global Slack.SearchMessagesRequest build() { } + global Object clone() { } + global Slack.SearchMessagesRequest.Builder count(Integer count) { } + global Slack.SearchMessagesRequest.Builder cursor(String cursor) { } + global Slack.SearchMessagesRequest.Builder highlight(Boolean highlight) { } + global Slack.SearchMessagesRequest.Builder page(Integer page) { } + global Slack.SearchMessagesRequest.Builder query(String query) { } + global Slack.SearchMessagesRequest.Builder sortDir(String sortDir) { } + global Slack.SearchMessagesRequest.Builder sortValue(String sortValue) { } + global Slack.SearchMessagesRequest.Builder teamId(String teamId) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/SearchMessagesResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/SearchMessagesResponse.cls new file mode 100644 index 0000000..40e1882 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/SearchMessagesResponse.cls @@ -0,0 +1,22 @@ +global class SearchMessagesResponse { + global SearchMessagesResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global Slack.SearchResult getMessages() { } + global String getNeeded() { } + global String getProvided() { } + global String getQuery() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setMessages(Slack.SearchResult messages) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setQuery(String query) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/SearchResult.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/SearchResult.cls new file mode 100644 index 0000000..83aade5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/SearchResult.cls @@ -0,0 +1,33 @@ +global class SearchResult { + global SearchResult() { } + global Object clone() { } + global List getMatches() { } + global Slack.SearchResult.Pagination getPagination() { } + global Slack.Paging getPaging() { } + global List getRefinements() { } + global Integer getTotal() { } + global void setMatches(List matches) { } + global void setPagination(Slack.SearchResult.Pagination pagination) { } + global void setPaging(Slack.Paging paging) { } + global void setRefinements(List refinements) { } + global void setTotal(Integer total) { } + global String toString() { } +global class Pagination { + global SearchResult.Pagination() { } + global Object clone() { } + global Integer getFirst() { } + global Integer getLast() { } + global Integer getPage() { } + global Integer getPageCount() { } + global Integer getPerPage() { } + global Integer getTotalCount() { } + global void setFirst(Integer first) { } + global void setLast(Integer last) { } + global void setPage(Integer page) { } + global void setPageCount(Integer pageCount) { } + global void setPerPage(Integer perPage) { } + global void setTotalCount(Integer totalCount) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/SharedChannelInviteAcceptedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/SharedChannelInviteAcceptedEvent.cls new file mode 100644 index 0000000..e5f10a6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/SharedChannelInviteAcceptedEvent.cls @@ -0,0 +1,20 @@ +global class SharedChannelInviteAcceptedEvent { + global SharedChannelInviteAcceptedEvent() { } + global Object clone() { } + global Slack.ConnectUser getAcceptingUser() { } + global Slack.ConnectChannel getChannel() { } + global String getEventTs() { } + global Slack.ConnectInviteDetail getInvite() { } + global String getSubtype() { } + global List getTeamsInChannel() { } + global String getType() { } + global Boolean isApprovalRequired() { } + global void setAcceptingUser(Slack.ConnectUser acceptingUser) { } + global void setApprovalRequired(Boolean approvalRequired) { } + global void setChannel(Slack.ConnectChannel channel) { } + global void setEventTs(String eventTs) { } + global void setInvite(Slack.ConnectInviteDetail invite) { } + global void setTeamsInChannel(List teamsInChannel) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/SharedChannelInviteApprovedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/SharedChannelInviteApprovedEvent.cls new file mode 100644 index 0000000..ba5757f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/SharedChannelInviteApprovedEvent.cls @@ -0,0 +1,20 @@ +global class SharedChannelInviteApprovedEvent { + global SharedChannelInviteApprovedEvent() { } + global Object clone() { } + global String getApprovingTeamId() { } + global Slack.ConnectUser getApprovingUser() { } + global Slack.ConnectChannel getChannel() { } + global String getEventTs() { } + global Slack.ConnectInviteDetail getInvite() { } + global String getSubtype() { } + global List getTeamsInChannel() { } + global String getType() { } + global void setApprovingTeamId(String approvingTeamId) { } + global void setApprovingUser(Slack.ConnectUser approvingUser) { } + global void setChannel(Slack.ConnectChannel channel) { } + global void setEventTs(String eventTs) { } + global void setInvite(Slack.ConnectInviteDetail invite) { } + global void setTeamsInChannel(List teamsInChannel) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/SharedChannelInviteDeclinedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/SharedChannelInviteDeclinedEvent.cls new file mode 100644 index 0000000..c19ad4d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/SharedChannelInviteDeclinedEvent.cls @@ -0,0 +1,20 @@ +global class SharedChannelInviteDeclinedEvent { + global SharedChannelInviteDeclinedEvent() { } + global Object clone() { } + global Slack.ConnectChannel getChannel() { } + global String getDecliningTeamId() { } + global Slack.ConnectUser getDecliningUser() { } + global String getEventTs() { } + global Slack.ConnectInviteDetail getInvite() { } + global String getSubtype() { } + global List getTeamsInChannel() { } + global String getType() { } + global void setChannel(Slack.ConnectChannel channel) { } + global void setDecliningTeamId(String decliningTeamId) { } + global void setDecliningUser(Slack.ConnectUser decliningUser) { } + global void setEventTs(String eventTs) { } + global void setInvite(Slack.ConnectInviteDetail invite) { } + global void setTeamsInChannel(List teamsInChannel) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/SharedChannelInviteReceivedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/SharedChannelInviteReceivedEvent.cls new file mode 100644 index 0000000..a349b84 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/SharedChannelInviteReceivedEvent.cls @@ -0,0 +1,14 @@ +global class SharedChannelInviteReceivedEvent { + global SharedChannelInviteReceivedEvent() { } + global Object clone() { } + global Slack.ConnectChannel getChannel() { } + global String getEventTs() { } + global Slack.ConnectInviteDetail getInvite() { } + global String getSubtype() { } + global String getType() { } + global void setChannel(Slack.ConnectChannel channel) { } + global void setEventTs(String eventTs) { } + global void setInvite(Slack.ConnectInviteDetail invite) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ShortcutDispatcher.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ShortcutDispatcher.cls new file mode 100644 index 0000000..dfb9538 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ShortcutDispatcher.cls @@ -0,0 +1,7 @@ +global class ShortcutDispatcher { + global ShortcutDispatcher() { } + global Boolean allowUnauthenticatedUsers() { } + global Object clone() { } + global Slack.ActionHandler invoke(Slack.ShortcutParameters param0, Slack.RequestContext param1) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ShortcutParameters.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ShortcutParameters.cls new file mode 100644 index 0000000..686d823 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ShortcutParameters.cls @@ -0,0 +1,6 @@ +global class ShortcutParameters { + global ShortcutParameters(String callbackId) { } + global Object clone() { } + global String getCallbackId() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/SlashCommandDispatcher.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/SlashCommandDispatcher.cls new file mode 100644 index 0000000..7b77892 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/SlashCommandDispatcher.cls @@ -0,0 +1,7 @@ +global class SlashCommandDispatcher { + global SlashCommandDispatcher() { } + global Boolean allowUnauthenticatedUsers() { } + global Object clone() { } + global Slack.ActionHandler invoke(Slack.SlashCommandParameters param0, Slack.RequestContext param1) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/SlashCommandParameters.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/SlashCommandParameters.cls new file mode 100644 index 0000000..0d10cb4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/SlashCommandParameters.cls @@ -0,0 +1,7 @@ +global class SlashCommandParameters { + global SlashCommandParameters(String command, String text) { } + global Object clone() { } + global String getCommand() { } + global String getText() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/StarAddedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/StarAddedEvent.cls new file mode 100644 index 0000000..20aacf6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/StarAddedEvent.cls @@ -0,0 +1,73 @@ +global class StarAddedEvent { + global StarAddedEvent() { } + global Object clone() { } + global String getEventTs() { } + global Slack.StarAddedEvent.Item getItem() { } + global String getSubtype() { } + global String getType() { } + global String getUser() { } + global void setEventTs(String eventTs) { } + global void setItem(Slack.StarAddedEvent.Item item) { } + global void setUser(String user) { } + global String toString() { } +global class Edited { + global StarAddedEvent.Edited() { } + global Object clone() { } + global String getTs() { } + global String getUser() { } + global void setTs(String ts) { } + global void setUser(String user) { } + +} +global class Item { + global StarAddedEvent.Item() { } + global Object clone() { } + global String getChannel() { } + global Slack.FileComment getComment() { } + global String getCreatedBy() { } + global Long getDateCreate() { } + global Slack.File getFile() { } + global Slack.StarAddedEvent.Message getMessage() { } + global String getType() { } + global void setChannel(String channel) { } + global void setComment(Slack.FileComment comment) { } + global void setCreatedBy(String createdBy) { } + global void setDateCreate(Long dateCreate) { } + global void setFile(Slack.File file) { } + global void setMessage(Slack.StarAddedEvent.Message message) { } + global void setType(String type) { } + +} +global class Message { + global StarAddedEvent.Message() { } + global Object clone() { } + global String getAppId() { } + global String getBotId() { } + global Slack.BotProfile getBotProfile() { } + global String getClientMsgId() { } + global Slack.StarAddedEvent.Edited getEdited() { } + global String getPermalink() { } + global List getPinnedTo() { } + global String getTeam() { } + global String getText() { } + global String getTs() { } + global String getType() { } + global String getUser() { } + global Boolean isStarred() { } + global void setAppId(String appId) { } + global void setBotId(String botId) { } + global void setBotProfile(Slack.BotProfile botProfile) { } + global void setClientMsgId(String clientMsgId) { } + global void setEdited(Slack.StarAddedEvent.Edited edited) { } + global void setPermalink(String permalink) { } + global void setPinnedTo(List pinnedTo) { } + global void setStarred(Boolean isStarred) { } + global void setTeam(String team) { } + global void setText(String text) { } + global void setTs(String ts) { } + global void setType(String type) { } + global void setUser(String user) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/StarRemovedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/StarRemovedEvent.cls new file mode 100644 index 0000000..2faf4b1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/StarRemovedEvent.cls @@ -0,0 +1,71 @@ +global class StarRemovedEvent { + global StarRemovedEvent() { } + global Object clone() { } + global String getEventTs() { } + global Slack.StarRemovedEvent.Item getItem() { } + global String getSubtype() { } + global String getType() { } + global String getUser() { } + global void setEventTs(String eventTs) { } + global void setItem(Slack.StarRemovedEvent.Item item) { } + global void setUser(String user) { } + global String toString() { } +global class Edited { + global StarRemovedEvent.Edited() { } + global Object clone() { } + global String getTs() { } + global String getUser() { } + global void setTs(String ts) { } + global void setUser(String user) { } + +} +global class Item { + global StarRemovedEvent.Item() { } + global Object clone() { } + global String getChannel() { } + global Slack.FileComment getComment() { } + global String getCreatedBy() { } + global Long getDateCreate() { } + global Slack.File getFile() { } + global Slack.StarRemovedEvent.Message getMessage() { } + global String getType() { } + global void setChannel(String channel) { } + global void setComment(Slack.FileComment comment) { } + global void setCreatedBy(String createdBy) { } + global void setDateCreate(Long dateCreate) { } + global void setFile(Slack.File file) { } + global void setMessage(Slack.StarRemovedEvent.Message message) { } + global void setType(String type) { } + +} +global class Message { + global StarRemovedEvent.Message() { } + global Object clone() { } + global String getAppId() { } + global String getBotId() { } + global Slack.BotProfile getBotProfile() { } + global String getClientMsgId() { } + global Slack.StarRemovedEvent.Edited getEdited() { } + global String getPermalink() { } + global List getPinnedTo() { } + global String getTeam() { } + global String getText() { } + global String getTs() { } + global String getType() { } + global String getUser() { } + global void setAppId(String appId) { } + global void setBotId(String botId) { } + global void setBotProfile(Slack.BotProfile botProfile) { } + global void setClientMsgId(String clientMsgId) { } + global void setEdited(Slack.StarRemovedEvent.Edited edited) { } + global void setPermalink(String permalink) { } + global void setPinnedTo(List pinnedTo) { } + global void setTeam(String team) { } + global void setText(String text) { } + global void setTs(String ts) { } + global void setType(String type) { } + global void setUser(String user) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/StarsAddRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/StarsAddRequest.cls new file mode 100644 index 0000000..d33375c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/StarsAddRequest.cls @@ -0,0 +1,20 @@ +global class StarsAddRequest { + global static Slack.StarsAddRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global String getFile() { } + global String getFileComment() { } + global String getTimestamp() { } + global String toString() { } +global class Builder { + global StarsAddRequest.Builder() { } + global Slack.StarsAddRequest build() { } + global Slack.StarsAddRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.StarsAddRequest.Builder file(String file) { } + global Slack.StarsAddRequest.Builder fileComment(String fileComment) { } + global Slack.StarsAddRequest.Builder timestamp(String timestamp) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/StarsAddResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/StarsAddResponse.cls new file mode 100644 index 0000000..40187c5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/StarsAddResponse.cls @@ -0,0 +1,18 @@ +global class StarsAddResponse { + global StarsAddResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/StarsListRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/StarsListRequest.cls new file mode 100644 index 0000000..ab10739 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/StarsListRequest.cls @@ -0,0 +1,22 @@ +global class StarsListRequest { + global static Slack.StarsListRequest.Builder builder() { } + global Object clone() { } + global Integer getCount() { } + global String getCursor() { } + global Integer getLimit() { } + global Integer getPage() { } + global String getTeamId() { } + global String toString() { } +global class Builder { + global StarsListRequest.Builder() { } + global Slack.StarsListRequest build() { } + global Object clone() { } + global Slack.StarsListRequest.Builder count(Integer count) { } + global Slack.StarsListRequest.Builder cursor(String cursor) { } + global Slack.StarsListRequest.Builder limitValue(Integer limitValue) { } + global Slack.StarsListRequest.Builder page(Integer page) { } + global Slack.StarsListRequest.Builder teamId(String teamId) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/StarsListResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/StarsListResponse.cls new file mode 100644 index 0000000..104534c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/StarsListResponse.cls @@ -0,0 +1,135 @@ +global class StarsListResponse { + global StarsListResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global List getItems() { } + global String getNeeded() { } + global Slack.Paging getPaging() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setItems(List items) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setPaging(Slack.Paging paging) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } +global class Comment { + global StarsListResponse.Comment() { } + global Object clone() { } + global String getComment() { } + global Integer getCreated() { } + global String getId() { } + global Integer getNumStars() { } + global Integer getTimestamp() { } + global String getUser() { } + global Boolean isIntro() { } + global Boolean isStarred() { } + global void setComment(String comment) { } + global void setCreated(Integer created) { } + global void setId(String id) { } + global void setIntro(Boolean intro) { } + global void setNumStars(Integer numStars) { } + global void setStarred(Boolean starred) { } + global void setTimestamp(Integer timestamp) { } + global void setUser(String user) { } + +} +global class Edited { + global StarsListResponse.Edited() { } + global Object clone() { } + global String getTs() { } + global String getUser() { } + global void setTs(String ts) { } + global void setUser(String user) { } + +} +global class Item { + global StarsListResponse.Item() { } + global Object clone() { } + global String getChannel() { } + global Slack.StarsListResponse.Comment getComment() { } + global Integer getDateCreate() { } + global Slack.File getFile() { } + global Slack.StarsListResponse.Message getMessage() { } + global String getType() { } + global void setChannel(String channel) { } + global void setComment(Slack.StarsListResponse.Comment comment) { } + global void setDateCreate(Integer dateCreate) { } + global void setFile(Slack.File file) { } + global void setMessage(Slack.StarsListResponse.Message message) { } + global void setType(String type) { } + +} +global class Message { + global StarsListResponse.Message() { } + global Object clone() { } + global String getBotId() { } + global Slack.BotProfile getBotProfile() { } + global String getClientMsgId() { } + global Boolean getDisplayAsBot() { } + global Slack.StarsListResponse.Edited getEdited() { } + global List getFiles() { } + global String getInviter() { } + global String getLastRead() { } + global String getLatestReply() { } + global String getPermalink() { } + global List getReactions() { } + global Integer getReplyCount() { } + global List getReplyUsers() { } + global Integer getReplyUsersCount() { } + global String getSubtype() { } + global String getTeam() { } + global String getText() { } + global String getThreadTs() { } + global String getTs() { } + global String getType() { } + global Boolean getUpload() { } + global String getUser() { } + global String getUsername() { } + global Boolean isLocked() { } + global Boolean isStarred() { } + global Boolean isSubscribed() { } + global void setBotId(String botId) { } + global void setBotProfile(Slack.BotProfile botProfile) { } + global void setClientMsgId(String clientMsgId) { } + global void setDisplayAsBot(Boolean displayAsBot) { } + global void setEdited(Slack.StarsListResponse.Edited edited) { } + global void setFiles(List files) { } + global void setInviter(String inviter) { } + global void setLastRead(String lastRead) { } + global void setLatestReply(String latestReply) { } + global void setLocked(Boolean locked) { } + global void setPermalink(String permalink) { } + global void setReactions(List reactions) { } + global void setReplyCount(Integer replyCount) { } + global void setReplyUsers(List replyUsers) { } + global void setReplyUsersCount(Integer replyUsersCount) { } + global void setStarred(Boolean starred) { } + global void setSubscribed(Boolean subscribed) { } + global void setSubtype(String subtype) { } + global void setTeam(String team) { } + global void setText(String text) { } + global void setThreadTs(String threadTs) { } + global void setTs(String ts) { } + global void setType(String type) { } + global void setUpload(Boolean upload) { } + global void setUser(String user) { } + global void setUsername(String username) { } + +} +global class MessageRootReply { + global StarsListResponse.MessageRootReply() { } + global Object clone() { } + global String getTs() { } + global String getUser() { } + global void setTs(String ts) { } + global void setUser(String user) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/StarsRemoveRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/StarsRemoveRequest.cls new file mode 100644 index 0000000..9151537 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/StarsRemoveRequest.cls @@ -0,0 +1,20 @@ +global class StarsRemoveRequest { + global static Slack.StarsRemoveRequest.Builder builder() { } + global Object clone() { } + global String getChannel() { } + global String getFile() { } + global String getFileComment() { } + global String getTimestamp() { } + global String toString() { } +global class Builder { + global StarsRemoveRequest.Builder() { } + global Slack.StarsRemoveRequest build() { } + global Slack.StarsRemoveRequest.Builder channel(String channel) { } + global Object clone() { } + global Slack.StarsRemoveRequest.Builder file(String file) { } + global Slack.StarsRemoveRequest.Builder fileComment(String fileComment) { } + global Slack.StarsRemoveRequest.Builder timestamp(String timestamp) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/StarsRemoveResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/StarsRemoveResponse.cls new file mode 100644 index 0000000..78d5606 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/StarsRemoveResponse.cls @@ -0,0 +1,18 @@ +global class StarsRemoveResponse { + global StarsRemoveResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/SubteamCreatedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/SubteamCreatedEvent.cls new file mode 100644 index 0000000..b4fa886 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/SubteamCreatedEvent.cls @@ -0,0 +1,68 @@ +global class SubteamCreatedEvent { + global SubteamCreatedEvent() { } + global Object clone() { } + global String getEventTs() { } + global Slack.SubteamCreatedEvent.Subteam getSubteam() { } + global String getSubtype() { } + global String getType() { } + global void setEventTs(String eventTs) { } + global void setSubteam(Slack.SubteamCreatedEvent.Subteam subteam) { } + global String toString() { } +global class Prefs { + global SubteamCreatedEvent.Prefs() { } + global Object clone() { } + global List getChannels() { } + global List getGroups() { } + global void setChannels(List channels) { } + global void setGroups(List groups) { } + +} +global class Subteam { + global SubteamCreatedEvent.Subteam() { } + global Object clone() { } + global String getAutoType() { } + global Integer getChannelCount() { } + global String getCreatedBy() { } + global Integer getDateCreate() { } + global Integer getDateDelete() { } + global Integer getDateUpdate() { } + global String getDeletedBy() { } + global String getDescription() { } + global String getEnterpriseSubteamId() { } + global String getHandle() { } + global String getId() { } + global String getName() { } + global Slack.SubteamCreatedEvent.Prefs getPrefs() { } + global String getTeamId() { } + global String getUpdatedBy() { } + global Integer getUserCount() { } + global List getUsers() { } + global Boolean isAutoProvision() { } + global Boolean isExternal() { } + global Boolean isSubteam() { } + global Boolean isUsergroup() { } + global void setAutoProvision(Boolean autoProvision) { } + global void setAutoType(String autoType) { } + global void setChannelCount(Integer channelCount) { } + global void setCreatedBy(String createdBy) { } + global void setDateCreate(Integer dateCreate) { } + global void setDateDelete(Integer dateDelete) { } + global void setDateUpdate(Integer dateUpdate) { } + global void setDeletedBy(String deletedBy) { } + global void setDescription(String description) { } + global void setEnterpriseSubteamId(String enterpriseSubteamId) { } + global void setExternal(Boolean external) { } + global void setHandle(String handle) { } + global void setId(String id) { } + global void setName(String name) { } + global void setPrefs(Slack.SubteamCreatedEvent.Prefs prefs) { } + global void setSubteam(Boolean isSubteam) { } + global void setTeamId(String teamId) { } + global void setUpdatedBy(String updatedBy) { } + global void setUserCount(Integer userCount) { } + global void setUsergroup(Boolean isUsergroup) { } + global void setUsers(List users) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/SubteamMembersChangedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/SubteamMembersChangedEvent.cls new file mode 100644 index 0000000..c24e3ee --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/SubteamMembersChangedEvent.cls @@ -0,0 +1,26 @@ +global class SubteamMembersChangedEvent { + global SubteamMembersChangedEvent() { } + global Object clone() { } + global List getAddedUsers() { } + global Integer getAddedUsersCount() { } + global Integer getDatePreviousUpdate() { } + global Integer getDateUpdate() { } + global String getEventTs() { } + global List getRemovedUsers() { } + global Integer getRemovedUsersCount() { } + global String getSubteamId() { } + global String getSubtype() { } + global String getTeamId() { } + global String getType() { } + global void setAddedUsers(List addedUsers) { } + global void setAddedUsersCount(Integer addedUsersCount) { } + global void setDatePreviousUpdate(Integer datePreviousUpdate) { } + global void setDateUpdate(Integer dateUpdate) { } + global void setEventTs(String eventTs) { } + global void setRemovedUsers(List removedUsers) { } + global void setRemovedUsersCount(Integer removedUsersCount) { } + global void setSubteamId(String subteamId) { } + global void setTeamId(String teamId) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/SubteamSelfAddedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/SubteamSelfAddedEvent.cls new file mode 100644 index 0000000..c5d85fd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/SubteamSelfAddedEvent.cls @@ -0,0 +1,12 @@ +global class SubteamSelfAddedEvent { + global SubteamSelfAddedEvent() { } + global Object clone() { } + global String getEventTs() { } + global String getSubteamId() { } + global String getSubtype() { } + global String getType() { } + global void setEventTs(String eventTs) { } + global void setSubteamId(String subteamId) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/SubteamSelfRemovedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/SubteamSelfRemovedEvent.cls new file mode 100644 index 0000000..d06a16a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/SubteamSelfRemovedEvent.cls @@ -0,0 +1,12 @@ +global class SubteamSelfRemovedEvent { + global SubteamSelfRemovedEvent() { } + global Object clone() { } + global String getEventTs() { } + global String getSubteamId() { } + global String getSubtype() { } + global String getType() { } + global void setEventTs(String eventTs) { } + global void setSubteamId(String subteamId) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/SubteamUpdatedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/SubteamUpdatedEvent.cls new file mode 100644 index 0000000..bbe0a7c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/SubteamUpdatedEvent.cls @@ -0,0 +1,68 @@ +global class SubteamUpdatedEvent { + global SubteamUpdatedEvent() { } + global Object clone() { } + global String getEventTs() { } + global Slack.SubteamUpdatedEvent.Subteam getSubteam() { } + global String getSubtype() { } + global String getType() { } + global void setEventTs(String eventTs) { } + global void setSubteam(Slack.SubteamUpdatedEvent.Subteam subteam) { } + global String toString() { } +global class Prefs { + global SubteamUpdatedEvent.Prefs() { } + global Object clone() { } + global List getChannels() { } + global List getGroups() { } + global void setChannels(List channels) { } + global void setGroups(List groups) { } + +} +global class Subteam { + global SubteamUpdatedEvent.Subteam() { } + global Object clone() { } + global String getAutoType() { } + global Integer getChannelCount() { } + global String getCreatedBy() { } + global Integer getDateCreate() { } + global Integer getDateDelete() { } + global Integer getDateUpdate() { } + global String getDeletedBy() { } + global String getDescription() { } + global String getEnterpriseSubteamId() { } + global String getHandle() { } + global String getId() { } + global String getName() { } + global Slack.SubteamUpdatedEvent.Prefs getPrefs() { } + global String getTeamId() { } + global String getUpdatedBy() { } + global Integer getUserCount() { } + global List getUsers() { } + global Boolean isAutoProvision() { } + global Boolean isExternal() { } + global Boolean isSubteam() { } + global Boolean isUsergroup() { } + global void setAutoProvision(Boolean autoProvision) { } + global void setAutoType(String autoType) { } + global void setChannelCount(Integer channelCount) { } + global void setCreatedBy(String createdBy) { } + global void setDateCreate(Integer dateCreate) { } + global void setDateDelete(Integer dateDelete) { } + global void setDateUpdate(Integer dateUpdate) { } + global void setDeletedBy(String deletedBy) { } + global void setDescription(String description) { } + global void setEnterpriseSubteamId(String enterpriseSubteamId) { } + global void setExternal(Boolean isExternal) { } + global void setHandle(String handle) { } + global void setId(String id) { } + global void setName(String name) { } + global void setPrefs(Slack.SubteamUpdatedEvent.Prefs prefs) { } + global void setSubteam(Boolean isSubteam) { } + global void setTeamId(String teamId) { } + global void setUpdatedBy(String updatedBy) { } + global void setUserCount(Integer userCount) { } + global void setUsergroup(Boolean isUsergroup) { } + global void setUsers(List users) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/Team.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/Team.cls new file mode 100644 index 0000000..08f3786 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/Team.cls @@ -0,0 +1,79 @@ +global class Team { + global Team() { } + global Object clone() { } + global String getAvatarBaseUrl() { } + global List getDefaultChannels() { } + global String getDiscoverable() { } + global String getDomain() { } + global String getEmailDomain() { } + global String getEnterpriseDomain() { } + global String getEnterpriseId() { } + global String getEnterpriseName() { } + global Slack.TeamIcon getIcon() { } + global String getId() { } + global Boolean getIsVerified() { } + global String getName() { } + global String getUrl() { } + global void setAvatarBaseUrl(String avatarBaseUrl) { } + global void setDefaultChannels(List defaultChannels) { } + global void setDiscoverable(String discoverable) { } + global void setDomain(String domain) { } + global void setEmailDomain(String emailDomain) { } + global void setEnterpriseDomain(String enterpriseDomain) { } + global void setEnterpriseId(String enterpriseId) { } + global void setEnterpriseName(String enterpriseName) { } + global void setIcon(Slack.TeamIcon icon) { } + global void setId(String id) { } + global void setIsVerified(Boolean isVerified) { } + global void setName(String name) { } + global void setUrl(String url) { } + global String toString() { } +global class Profile { + global Team.Profile() { } + global Object clone() { } + global String getFieldName() { } + global String getHint() { } + global String getId() { } + global String getLabel() { } + global Slack.Team.ProfileOptions getOptions() { } + global Integer getOrdering() { } + global Slack.Team.ProfilePermissions getPermissions() { } + global List getPossibleValues() { } + global String getSectionId() { } + global String getType() { } + global Boolean isHidden() { } + global void setFieldName(String fieldName) { } + global void setHidden(Boolean hidden) { } + global void setHint(String hintValue) { } + global void setId(String id) { } + global void setLabel(String label) { } + global void setOptions(Slack.Team.ProfileOptions options) { } + global void setOrdering(Integer ordering) { } + global void setPermissions(Slack.Team.ProfilePermissions permissions) { } + global void setPossibleValues(List possibleValues) { } + global void setSectionId(String sectionId) { } + global void setType(String type) { } + +} +global class ProfileOptions { + global Team.ProfileOptions() { } + global Object clone() { } + global Boolean isScim() { } + global Boolean isprotected() { } + global void setScim(Boolean scim) { } + global void setprotected(Boolean _protected) { } + +} +global class ProfilePermissions { + global Team.ProfilePermissions() { } + global Object clone() { } + global List getApi() { } + global Boolean isScim() { } + global Boolean isUi() { } + global void setApi(List api) { } + global void setScim(Boolean scim) { } + global void setUi(Boolean ui) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/TeamAccessGrantedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamAccessGrantedEvent.cls new file mode 100644 index 0000000..9d1b759 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamAccessGrantedEvent.cls @@ -0,0 +1,12 @@ +global class TeamAccessGrantedEvent { + global TeamAccessGrantedEvent() { } + global Object clone() { } + global String getEventTs() { } + global String getSubtype() { } + global List getTeamIds() { } + global String getType() { } + global void setEventTs(String eventTs) { } + global void setTeamIds(List teamIds) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/TeamAccessLogsRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamAccessLogsRequest.cls new file mode 100644 index 0000000..d1c31dc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamAccessLogsRequest.cls @@ -0,0 +1,20 @@ +global class TeamAccessLogsRequest { + global static Slack.TeamAccessLogsRequest.Builder builder() { } + global Object clone() { } + global Integer getBefore() { } + global Integer getCount() { } + global Integer getPage() { } + global String getTeamId() { } + global String toString() { } +global class Builder { + global TeamAccessLogsRequest.Builder() { } + global Slack.TeamAccessLogsRequest.Builder before(Integer before) { } + global Slack.TeamAccessLogsRequest build() { } + global Object clone() { } + global Slack.TeamAccessLogsRequest.Builder count(Integer count) { } + global Slack.TeamAccessLogsRequest.Builder page(Integer page) { } + global Slack.TeamAccessLogsRequest.Builder teamId(String teamId) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/TeamAccessLogsResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamAccessLogsResponse.cls new file mode 100644 index 0000000..17a5f4a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamAccessLogsResponse.cls @@ -0,0 +1,22 @@ +global class TeamAccessLogsResponse { + global TeamAccessLogsResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global List getLogins() { } + global String getNeeded() { } + global Slack.Paging getPaging() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setLogins(List logins) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setPaging(Slack.Paging paging) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/TeamAccessRevokedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamAccessRevokedEvent.cls new file mode 100644 index 0000000..4248042 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamAccessRevokedEvent.cls @@ -0,0 +1,12 @@ +global class TeamAccessRevokedEvent { + global TeamAccessRevokedEvent() { } + global Object clone() { } + global String getEventTs() { } + global String getSubtype() { } + global List getTeamIds() { } + global String getType() { } + global void setEventTs(String eventTs) { } + global void setTeamIds(List teamIds) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/TeamBillableInfoRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamBillableInfoRequest.cls new file mode 100644 index 0000000..a9578a3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamBillableInfoRequest.cls @@ -0,0 +1,16 @@ +global class TeamBillableInfoRequest { + global static Slack.TeamBillableInfoRequest.Builder builder() { } + global Object clone() { } + global String getTeamId() { } + global String getUser() { } + global String toString() { } +global class Builder { + global TeamBillableInfoRequest.Builder() { } + global Slack.TeamBillableInfoRequest build() { } + global Object clone() { } + global Slack.TeamBillableInfoRequest.Builder teamId(String teamId) { } + global Slack.TeamBillableInfoRequest.Builder user(String user) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/TeamBillableInfoResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamBillableInfoResponse.cls new file mode 100644 index 0000000..7d84004 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamBillableInfoResponse.cls @@ -0,0 +1,20 @@ +global class TeamBillableInfoResponse { + global TeamBillableInfoResponse() { } + global Object clone() { } + global Map getBillableInfo() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setBillableInfo(Map billableInfo) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/TeamDomainChangeEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamDomainChangeEvent.cls new file mode 100644 index 0000000..870ebdc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamDomainChangeEvent.cls @@ -0,0 +1,12 @@ +global class TeamDomainChangeEvent { + global TeamDomainChangeEvent() { } + global Object clone() { } + global String getDomain() { } + global String getSubtype() { } + global String getType() { } + global String getUrl() { } + global void setDomain(String domain) { } + global void setUrl(String url) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/TeamIcon.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamIcon.cls new file mode 100644 index 0000000..af5089b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamIcon.cls @@ -0,0 +1,24 @@ +global class TeamIcon { + global TeamIcon() { } + global Object clone() { } + global String getImage102() { } + global String getImage132() { } + global String getImage230() { } + global String getImage34() { } + global String getImage44() { } + global String getImage68() { } + global String getImage88() { } + global String getImageOriginal() { } + global Boolean isImageDefault() { } + global void setImage102(String image102) { } + global void setImage132(String image132) { } + global void setImage230(String image230) { } + global void setImage34(String image34) { } + global void setImage44(String image44) { } + global void setImage68(String image68) { } + global void setImage88(String image88) { } + global void setImageDefault(Boolean imageDefault) { } + global void setImageOriginal(String imageOriginal) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/TeamInfoRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamInfoRequest.cls new file mode 100644 index 0000000..c0aef1d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamInfoRequest.cls @@ -0,0 +1,16 @@ +global class TeamInfoRequest { + global static Slack.TeamInfoRequest.Builder builder() { } + global Object clone() { } + global String getDomain() { } + global String getTeam() { } + global String toString() { } +global class Builder { + global TeamInfoRequest.Builder() { } + global Slack.TeamInfoRequest build() { } + global Object clone() { } + global Slack.TeamInfoRequest.Builder domain(String domain) { } + global Slack.TeamInfoRequest.Builder team(String team) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/TeamInfoResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamInfoResponse.cls new file mode 100644 index 0000000..4038bb3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamInfoResponse.cls @@ -0,0 +1,20 @@ +global class TeamInfoResponse { + global TeamInfoResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.Team getTeam() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setTeam(Slack.Team team) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/TeamIntegrationLogsRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamIntegrationLogsRequest.cls new file mode 100644 index 0000000..ab8484a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamIntegrationLogsRequest.cls @@ -0,0 +1,26 @@ +global class TeamIntegrationLogsRequest { + global static Slack.TeamIntegrationLogsRequest.Builder builder() { } + global Object clone() { } + global String getAppId() { } + global String getChangeType() { } + global Integer getCount() { } + global Integer getPage() { } + global String getServiceId() { } + global String getTeamId() { } + global String getUser() { } + global String toString() { } +global class Builder { + global TeamIntegrationLogsRequest.Builder() { } + global Slack.TeamIntegrationLogsRequest.Builder appId(String appId) { } + global Slack.TeamIntegrationLogsRequest build() { } + global Slack.TeamIntegrationLogsRequest.Builder changeType(String changeType) { } + global Object clone() { } + global Slack.TeamIntegrationLogsRequest.Builder count(Integer count) { } + global Slack.TeamIntegrationLogsRequest.Builder page(Integer page) { } + global Slack.TeamIntegrationLogsRequest.Builder serviceId(String serviceId) { } + global Slack.TeamIntegrationLogsRequest.Builder teamId(String teamId) { } + global Slack.TeamIntegrationLogsRequest.Builder user(String user) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/TeamIntegrationLogsResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamIntegrationLogsResponse.cls new file mode 100644 index 0000000..72cae39 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamIntegrationLogsResponse.cls @@ -0,0 +1,22 @@ +global class TeamIntegrationLogsResponse { + global TeamIntegrationLogsResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global List getLogs() { } + global String getNeeded() { } + global Slack.Paging getPaging() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setLogs(List logs) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setPaging(Slack.Paging paging) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/TeamJoinEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamJoinEvent.cls new file mode 100644 index 0000000..b8312f5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamJoinEvent.cls @@ -0,0 +1,10 @@ +global class TeamJoinEvent { + global TeamJoinEvent() { } + global Object clone() { } + global String getSubtype() { } + global String getType() { } + global Slack.User getUser() { } + global void setUser(Slack.User user) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/TeamProfileGetRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamProfileGetRequest.cls new file mode 100644 index 0000000..575950f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamProfileGetRequest.cls @@ -0,0 +1,16 @@ +global class TeamProfileGetRequest { + global static Slack.TeamProfileGetRequest.Builder builder() { } + global Object clone() { } + global String getTeamId() { } + global String getVisibility() { } + global String toString() { } +global class Builder { + global TeamProfileGetRequest.Builder() { } + global Slack.TeamProfileGetRequest build() { } + global Object clone() { } + global Slack.TeamProfileGetRequest.Builder teamId(String teamId) { } + global Slack.TeamProfileGetRequest.Builder visibility(String visibility) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/TeamProfileGetResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamProfileGetResponse.cls new file mode 100644 index 0000000..f63e075 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamProfileGetResponse.cls @@ -0,0 +1,44 @@ +global class TeamProfileGetResponse { + global TeamProfileGetResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global Slack.TeamProfileGetResponse.Profiles getProfile() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProfile(Slack.TeamProfileGetResponse.Profiles profile) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } +global class Profiles { + global TeamProfileGetResponse.Profiles() { } + global Object clone() { } + global List getSections() { } + global void setSections(List sections) { } + +} +global class Section { + global TeamProfileGetResponse.Section() { } + global Object clone() { } + global String getId() { } + global String getLabel() { } + global Integer getOrder() { } + global String getSectionType() { } + global String getTeamId() { } + global Boolean isHidden() { } + global void setHidden(Boolean hidden) { } + global void setId(String id) { } + global void setLabel(String label) { } + global void setOrder(Integer order) { } + global void setSectionType(String sectionType) { } + global void setTeamId(String teamId) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/TeamRenameEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamRenameEvent.cls new file mode 100644 index 0000000..f6ebdc9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/TeamRenameEvent.cls @@ -0,0 +1,10 @@ +global class TeamRenameEvent { + global TeamRenameEvent() { } + global Object clone() { } + global String getName() { } + global String getSubtype() { } + global String getType() { } + global void setName(String name) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/TestHarness.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/TestHarness.cls new file mode 100644 index 0000000..12dc4db --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/TestHarness.cls @@ -0,0 +1,466 @@ +global class TestHarness { + global TestHarness() { } + global Object clone() { } + global Slack.TestHarness.State getNewSlackState() { } +global class Actions { + global Object clone() { } + global Object getComponent(Integer idx, System.Type clazz) { } + global Object getComponentByName(String name, System.Type clazz) { } + global Integer getComponentCount() { } + global String getName() { } + global String toString() { } + +} +global class Button { + global void click() { } + global Object clone() { } + global Slack.TestHarness.Confirm getConfirm() { } + global String getLabel() { } + global String getName() { } + global String getStyle() { } + global String getUrl() { } + global String getValue() { } + global String toString() { } + +} +global class Channel { + global void addUser(Slack.TestHarness.User user) { } + global Boolean canBeOpenedByUser(Slack.TestHarness.User user) { } + global Object clone() { } + global String getId() { } + global String getLocale() { } + global Integer getMessageCount(Slack.TestHarness.User user) { } + global List getMessages(Slack.TestHarness.User user) { } + global String getName() { } + global Slack.TestHarness.Team getTeam() { } + global Boolean isPrivate() { } + global void removeUser(Slack.TestHarness.User user) { } + global Slack.TestHarness.Message sendMessage(Slack.TestHarness.UserSession userSession, String text) { } + global String toString() { } + +} +global class Checkbox { + global Object clone() { } + global Slack.TestHarness.Confirm getConfirm() { } + global String getDescription() { } + global Boolean getInitialValue() { } + global String getLabel() { } + global String getName() { } + global Boolean getValue() { } + global void setValue(Boolean value) { } + global String toString() { } + global void toggleValue() { } + +} +global class CheckboxGroup { + global Object clone() { } + global Slack.TestHarness.Confirm getConfirm() { } + global List getInitialValue() { } + global String getName() { } + global List getOptions() { } + global List getValue() { } + global void setValue(List listOfIdentifiers) { } + global String toString() { } + global void toggleValue(Slack.TestHarness.Option option) { } + global void toggleValue(String identifier) { } + +} +global class Confirm { + global Object clone() { } + global String getConfirm() { } + global String getDeny() { } + global String getStyle() { } + global String getText() { } + global String getTitle() { } + global String toString() { } + +} +global class Context { + global Object clone() { } + global Object getComponent(Integer idx, System.Type clazz) { } + global Integer getComponentCount() { } + global String getName() { } + global String toString() { } + +} +global class ConversationsSelect { + global Object clone() { } + global Slack.TestHarness.Confirm getConfirm() { } + global Slack.TestHarness.Filter getFilter() { } + global List getInitialMultiselectValue() { } + global String getInitialValue() { } + global Integer getMaxSelection() { } + global List getMultiselectValue() { } + global String getName() { } + global List getOptions() { } + global String getPlaceholder() { } + global String getValue() { } + global Boolean isMultiselect() { } + global void setMultiselectValue(List listOfIdentifiers) { } + global void setValue(String identifier) { } + global String toString() { } + +} +global class Datasource { + global Object clone() { } + global String getDefinition() { } + global Map getProperties() { } + global String toString() { } + +} +global class DatePicker { + global Object clone() { } + global Slack.TestHarness.Confirm getConfirm() { } + global String getInitialValue() { } + global String getName() { } + global String getPlaceholder() { } + global String getValue() { } + global void setValue(String value) { } + global String toString() { } + +} +global class DateTimePicker { + global Object clone() { } + global Slack.TestHarness.Confirm getConfirm() { } + global String getDateLabel() { } + global String getInitialValue() { } + global String getName() { } + global String getPlaceholder() { } + global Boolean getRequired() { } + global String getSubmissionName() { } + global String getTimeLabel() { } + global String getValue() { } + global void setDateValue(String value) { } + global void setTimeValue(String value) { } + global void setValue(String value) { } + global String toString() { } + +} +global class Divider { + global Object clone() { } + global String getName() { } + global String toString() { } + +} +global class Enterprise { + global Object clone() { } + global String getId() { } + global String getName() { } + global String toString() { } + +} +global class ExternalSelect { + global Object clone() { } + global Slack.TestHarness.Confirm getConfirm() { } + global Slack.TestHarness.Datasource getDatasource() { } + global List getInitialMultiselectValue() { } + global List getInitialOptions() { } + global String getInitialValue() { } + global Integer getMaxSelection() { } + global Integer getMinQueryLength() { } + global List getMultiselectValue() { } + global String getName() { } + global List getOptionGroups() { } + global List getOptions() { } + global String getPlaceholder() { } + global String getValue() { } + global Boolean isMultiselect() { } + global void query(String query) { } + global void setMultiselectValue(List listOfIdentifiers) { } + global void setValue(String identifier) { } + global String toString() { } + +} +global class File { + global Object clone() { } + global String getExternalId() { } + global String getName() { } + global String getSource() { } + global String toString() { } + +} +global class Filter { + global Object clone() { } + global Boolean getExcludeBotUsers() { } + global Boolean getExcludeExternalShared() { } + global List getInclude() { } + global String toString() { } + +} +global class Header { + global Object clone() { } + global String getName() { } + global String getText() { } + global String toString() { } + +} +global class Home { + global Object clone() { } + global Slack.TestHarness.Button getButtonByLabel(String label) { } + global Object getComponent(Integer idx, System.Type clazz) { } + global Object getComponentByName(String name, System.Type clazz) { } + global Integer getComponentCount() { } + global Slack.TestHarness.Input getInputByLabel(String label) { } + global String toString() { } + +} +global class Image { + global Object clone() { } + global String getAltText() { } + global String getImageUrl() { } + global String getName() { } + global String getTitle() { } + global String toString() { } + +} +global class InlineImage { + global Object clone() { } + global String getAltText() { } + global String getImageUrl() { } + global String toString() { } + +} +global class Input { + global Object clone() { } + global Object getComponent(System.Type clazz) { } + global Object getComponentByName(String name, System.Type clazz) { } + global String getHint() { } + global String getLabel() { } + global String getName() { } + global Boolean isRequired() { } + global String toString() { } + +} +global class Message { + global Boolean canBeSeenByUser(Slack.TestHarness.User user) { } + global Object clone() { } + global Slack.TestHarness.Button getButtonByLabel(String label) { } + global Slack.TestHarness.Channel getChannel() { } + global Object getComponent(Integer idx, System.Type clazz) { } + global Object getComponentByName(String name, System.Type clazz) { } + global Integer getComponentCount() { } + global Slack.TestHarness.Input getInputByLabel(String label) { } + global String getMessageTs() { } + global String getText() { } + global Boolean isEphemeralMessage() { } + global String toString() { } + +} +global class Modal { + global Object clone() { } + global void close() { } + global Slack.TestHarness.Button getButtonByLabel(String label) { } + global String getCloseLabel() { } + global Object getComponent(Integer idx, System.Type clazz) { } + global Object getComponentByName(String name, System.Type clazz) { } + global Integer getComponentCount() { } + global Slack.TestHarness.Input getInputByLabel(String label) { } + global String getInputError(String inputBlockName) { } + global List getInputErrorBlocks() { } + global String getSubmitLabel() { } + global String getTitle() { } + global Boolean hasInputErrors() { } + global Boolean submit() { } + global String toString() { } + +} +global class Option { + global Object clone() { } + global String getDescription() { } + global String getIdentifier() { } + global String getLabel() { } + global String getUrl() { } + global Boolean getValue() { } + global String toString() { } + +} +global class OptionGroup { + global Object clone() { } + global String getLabel() { } + global List getOptions() { } + global String toString() { } + +} +global class Overflow { + global void clickOption(Integer idx) { } + global void clickOption(Slack.TestHarness.Option option) { } + global void clickOption(String identifier) { } + global Object clone() { } + global Slack.TestHarness.Confirm getConfirm() { } + global String getName() { } + global List getOptions() { } + global String toString() { } + +} +global class RadioGroup { + global Object clone() { } + global Slack.TestHarness.Confirm getConfirm() { } + global String getInitialValue() { } + global String getName() { } + global List getOptions() { } + global String getValue() { } + global void setValue(String identifier) { } + global String toString() { } + +} +global class Section { + global Object clone() { } + global Object getComponent(Integer idx, System.Type clazz) { } + global Object getComponent(System.Type clazz) { } + global Object getComponentByName(String name, System.Type clazz) { } + global Integer getFieldCount() { } + global String getFieldText(Integer idx) { } + global String getName() { } + global String getText() { } + global String toString() { } + +} +global class SelectInput { + global Object clone() { } + global Slack.TestHarness.Confirm getConfirm() { } + global List getInitialMultiselectValue() { } + global String getInitialValue() { } + global Integer getMaxSelection() { } + global List getMultiselectValue() { } + global String getName() { } + global List getOptionGroups() { } + global List getOptions() { } + global List getOptionsGroups() { } + global String getPlaceholder() { } + global String getValue() { } + global Boolean isMultiselect() { } + global void setMultiselectValue(List listOfIdentifiers) { } + global void setValue(String identifier) { } + global String toString() { } + +} +global class State { + global void clearAllClientMocks() { } + global void clearAppClientMock() { } + global void clearBotClientMock() { } + global void clearUserClientMock() { } + global Object clone() { } + global Slack.TestHarness.Channel createDirectChannel(Slack.TestHarness.User user) { } + global Slack.TestHarness.Enterprise createEnterprise(String enterpriseId, String enterpriseName) { } + global Slack.TestHarness.Enterprise createEnterprise(String enterpriseName) { } + global Slack.TestHarness.Channel createPrivateChannel(Slack.TestHarness.Team team, String channelName, String locale) { } + global Slack.TestHarness.Channel createPrivateChannel(Slack.TestHarness.Team team, String channelName) { } + global Slack.TestHarness.Channel createPrivateChannel(String channelName) { } + global Slack.TestHarness.Channel createPublicChannel(Slack.TestHarness.Team team, String channelName, String locale) { } + global Slack.TestHarness.Channel createPublicChannel(Slack.TestHarness.Team team, String channelName) { } + global Slack.TestHarness.Channel createPublicChannel(String channelName) { } + global Slack.TestHarness.Team createTeam(String teamDomain, Slack.TestHarness.Enterprise enterprise) { } + global Slack.TestHarness.Team createTeam(String teamDomain) { } + global Slack.TestHarness.User createUser(String username, String name, Slack.TestHarness.Team team, String locale) { } + global Slack.TestHarness.User createUser(String username, String name, Slack.TestHarness.Team team) { } + global Slack.TestHarness.User createUser(String username, String name) { } + global Slack.TestHarness.UserSession createUserSession(Slack.TestHarness.User user, Slack.TestHarness.Channel defaultChannel) { } + global Slack.TestHarness.UserSession createUserSession() { } + global Slack.TestHarness.Channel getChannel(Slack.TestHarness.Team team, String channelId) { } + global List getChannels(Slack.TestHarness.Team team) { } + global Slack.TestHarness.Channel getDefaultChannel() { } + global Slack.TestHarness.Enterprise getDefaultEnterprise() { } + global Slack.TestHarness.Team getDefaultTeam() { } + global Slack.TestHarness.User getDefaultUser() { } + global String getLocale() { } + global Slack.TestHarness.User getUser(Slack.TestHarness.Team team, String userId) { } + global Slack.TestHarness.User getUserByUsername(Slack.TestHarness.Team team, String username) { } + global List getUsers(Slack.TestHarness.Team team) { } + global void setAppClientMock(Slack.AppClientMock appClientMock) { } + global void setBotClientMock(Slack.BotClientMock botClientMock) { } + global void setLocale(String locale) { } + global void setUserClientMock(Slack.UserClientMock userClientMock) { } + global String toString() { } + +} +global class Team { + global Object clone() { } + global List getChannels() { } + global Slack.TestHarness.Enterprise getEnterprise() { } + global String getId() { } + global String getTeamDomain() { } + global String toString() { } + +} +global class Text { + global Object clone() { } + global String getText() { } + global String toString() { } + +} +global class TextInput { + global Object clone() { } + global String getInitialValue() { } + global Integer getMaxLength() { } + global Integer getMinLength() { } + global String getName() { } + global String getPlaceholder() { } + global String getValue() { } + global Boolean isMultiline() { } + global void setValue(String value) { } + global String toString() { } + +} +global class TimePicker { + global Object clone() { } + global Slack.TestHarness.Confirm getConfirm() { } + global String getInitialValue() { } + global String getName() { } + global String getPlaceholder() { } + global String getValue() { } + global void setValue(String value) { } + global String toString() { } + +} +global class User { + global Object clone() { } + global String getId() { } + global String getLocale() { } + global String getName() { } + global Slack.TestHarness.Team getTeam() { } + global String getUsername() { } + global String toString() { } + +} +global class UserSession { + global Object clone() { } + global void closeAllModals() { } + global void closeModal() { } + global void executeEvent(Slack.Event event, Slack.App slackApp) { } + global void executeGlobalShortcut(String globalShortcut, Slack.App slackApp) { } + global void executeMessageShortcut(String messageShortcut, Slack.TestHarness.Message message, Slack.App slackApp) { } + global void executeSlashCommand(String command, String text, Slack.App slackApp) { } + global void executeSlashCommand(String command, Slack.App slackApp) { } + global Slack.TestHarness.Home getAppHome() { } + global Integer getMessageCount() { } + global List getMessages() { } + global List getModalStack() { } + global Slack.TestHarness.Channel getOpenChannel() { } + global Slack.TestHarness.State getState() { } + global Slack.TestHarness.Modal getTopModal() { } + global Slack.TestHarness.User getUser() { } + global Slack.TestHarness.Home openAppHome(Slack.App slackApp) { } + global Slack.TestHarness.Channel openChannel(String channelId) { } + global Slack.TestHarness.Message postMessage(String message) { } + global String toString() { } + +} +global class UsersSelect { + global Object clone() { } + global Slack.TestHarness.Confirm getConfirm() { } + global List getInitialMultiselectValue() { } + global String getInitialValue() { } + global Integer getMaxSelection() { } + global List getMultiselectValue() { } + global String getName() { } + global List getOptions() { } + global String getPlaceholder() { } + global String getValue() { } + global Boolean isMultiselect() { } + global void setMultiselectValue(List listOfIdentifiers) { } + global void setValue(String identifier) { } + global String toString() { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/TokenInfo.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/TokenInfo.cls new file mode 100644 index 0000000..5e365ea --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/TokenInfo.cls @@ -0,0 +1,9 @@ +global class TokenInfo { + global TokenInfo() { } + global Object clone() { } + global Set getTokenScopes() { } + global Slack.TokenType getTokenType() { } + global void setTokenScopes(Set tokenScopes) { } + global void setTokenType(Slack.TokenType tokenType) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/TokenType.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/TokenType.cls new file mode 100644 index 0000000..272244d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/TokenType.cls @@ -0,0 +1,4 @@ +global enum TokenType { +BOT, +USER +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/TokensRevokedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/TokensRevokedEvent.cls new file mode 100644 index 0000000..97a2aad --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/TokensRevokedEvent.cls @@ -0,0 +1,19 @@ +global class TokensRevokedEvent { + global TokensRevokedEvent() { } + global Object clone() { } + global String getSubtype() { } + global Slack.TokensRevokedEvent.Tokens getTokens() { } + global String getType() { } + global void setTokens(Slack.TokensRevokedEvent.Tokens tokens) { } + global String toString() { } +global class Tokens { + global TokensRevokedEvent.Tokens() { } + global Object clone() { } + global List getBot() { } + global List getOauth() { } + global void setBot(List bot) { } + global void setOauth(List oauth) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/Topic.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/Topic.cls new file mode 100644 index 0000000..ee6a1ac --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/Topic.cls @@ -0,0 +1,12 @@ +global class Topic { + global Topic() { } + global Object clone() { } + global String getCreator() { } + global Integer getLastSet() { } + global String getValue() { } + global void setCreator(String creator) { } + global void setLastSet(Integer lastSet) { } + global void setValue(String value) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UisfUserAuthedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UisfUserAuthedEvent.cls new file mode 100644 index 0000000..7147630 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UisfUserAuthedEvent.cls @@ -0,0 +1,13 @@ +global class UisfUserAuthedEvent { + global UisfUserAuthedEvent() { } + global Object clone() { } + global String getEventTs() { } + global String getSubtype() { } + global List getTokenScopes() { } + global String getType() { } + global String getUser() { } + global void setEventTs(String eventTs) { } + global void setTokenScopes(List tokenInfo) { } + global void setUser(String user) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/User.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/User.cls new file mode 100644 index 0000000..cb3ef92 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/User.cls @@ -0,0 +1,182 @@ +global class User { + global User() { } + global Object clone() { } + global String getColor() { } + global Slack.User.EnterpriseUser getEnterpriseUser() { } + global String getId() { } + global String getLocale() { } + global String getName() { } + global String getPresence() { } + global Slack.User.Profile getProfile() { } + global String getRealName() { } + global String getTeamId() { } + global String getTwoFactorType() { } + global String getTz() { } + global String getTzLabel() { } + global Integer getTzOffset() { } + global Long getUpdated() { } + global String getWhoCanShareContactCard() { } + global Boolean isAdmin() { } + global Boolean isAppUser() { } + global Boolean isBot() { } + global Boolean isDeleted() { } + global Boolean isEmailConfirmed() { } + global Boolean isHas2fa() { } + global Boolean isHasFiles() { } + global Boolean isInvitedUser() { } + global Boolean isOwner() { } + global Boolean isPrimaryOwner() { } + global Boolean isRestricted() { } + global Boolean isStranger() { } + global Boolean isUltraRestricted() { } + global Boolean isWorkflowBot() { } + global void setAdmin(Boolean admin) { } + global void setAppUser(Boolean appUser) { } + global void setBot(Boolean bot) { } + global void setColor(String color) { } + global void setDeleted(Boolean deleted) { } + global void setEmailConfirmed(Boolean emailConfirmed) { } + global void setEnterpriseUser(Slack.User.EnterpriseUser enterpriseUser) { } + global void setHas2fa(Boolean has2fa) { } + global void setHasFiles(Boolean hasFiles) { } + global void setId(String id) { } + global void setInvitedUser(Boolean invitedUser) { } + global void setLocale(String locale) { } + global void setName(String name) { } + global void setOwner(Boolean owner) { } + global void setPresence(String presence) { } + global void setPrimaryOwner(Boolean primaryOwner) { } + global void setProfile(Slack.User.Profile profile) { } + global void setRealName(String realName) { } + global void setRestricted(Boolean restricted) { } + global void setStranger(Boolean stranger) { } + global void setTeamId(String teamId) { } + global void setTwoFactorType(String twoFactorType) { } + global void setTz(String tz) { } + global void setTzLabel(String tzLabel) { } + global void setTzOffset(Integer tzOffset) { } + global void setUltraRestricted(Boolean ultraRestricted) { } + global void setUpdated(Long updated) { } + global void setWhoCanShareContactCard(String whoCanShareContactCard) { } + global void setWorkflowBot(Boolean workflowBot) { } + global String toString() { } +global class EnterpriseUser { + global User.EnterpriseUser() { } + global Object clone() { } + global String getEnterpriseId() { } + global String getEnterpriseName() { } + global String getId() { } + global List getTeams() { } + global Boolean isAdmin() { } + global Boolean isOwner() { } + global Boolean isPrimaryOwner() { } + global void setAdmin(Boolean admin) { } + global void setEnterpriseId(String enterpriseId) { } + global void setEnterpriseName(String enterpriseName) { } + global void setId(String id) { } + global void setOwner(Boolean owner) { } + global void setPrimaryOwner(Boolean primaryOwner) { } + global void setTeams(List teams) { } + +} +global class Field { + global User.Field() { } + global Object clone() { } + global String getAlt() { } + global String getLabel() { } + global String getValue() { } + global void setAlt(String alt) { } + global void setLabel(String label) { } + global void setValue(String value) { } + +} +global class Profile { + global User.Profile() { } + global Object clone() { } + global String getApiAppId() { } + global String getAvatarHash() { } + global String getBotId() { } + global String getDisplayName() { } + global String getDisplayNameNormalized() { } + global String getEmail() { } + global Map getFields() { } + global String getGuestChannels() { } + global Long getGuestExpirationTs() { } + global String getGuestInvitedBy() { } + global String getHuddleState() { } + global Long getHuddleStateExpirationTs() { } + global String getImage1024() { } + global String getImage192() { } + global String getImage24() { } + global String getImage32() { } + global String getImage48() { } + global String getImage512() { } + global String getImage72() { } + global String getImageOriginal() { } + global String getPhone() { } + global String getPronouns() { } + global String getRealName() { } + global String getRealNameNormalized() { } + global String getSkype() { } + global String getStatusEmoji() { } + global List getStatusEmojiDisplayInfo() { } + global String getStatusEmojiUrl() { } + global Long getStatusExpiration() { } + global String getStatusText() { } + global String getStatusTextCanonical() { } + global String getTeam() { } + global String getTitle() { } + global Boolean isAlwaysActive() { } + global Boolean isCustomImage() { } + global void setAlwaysActive(Boolean alwaysActive) { } + global void setApiAppId(String apiAppId) { } + global void setAvatarHash(String avatarHash) { } + global void setBotId(String botId) { } + global void setCustomImage(Boolean customImage) { } + global void setDisplayName(String displayName) { } + global void setDisplayNameNormalized(String displayNameNormalized) { } + global void setEmail(String email) { } + global void setFields(Map fields) { } + global void setGuestChannels(String guestChannels) { } + global void setGuestExpirationTs(Long guestExpirationTs) { } + global void setGuestInvitedBy(String guestInvitedBy) { } + global void setHuddleState(String huddleState) { } + global void setHuddleStateExpirationTs(Long huddleStateExpirationTs) { } + global void setImage1024(String image1024) { } + global void setImage192(String image192) { } + global void setImage24(String image24) { } + global void setImage32(String image32) { } + global void setImage48(String image48) { } + global void setImage512(String image512) { } + global void setImage72(String image72) { } + global void setImageOriginal(String imageOriginal) { } + global void setPhone(String phone) { } + global void setPronouns(String pronouns) { } + global void setRealName(String realName) { } + global void setRealNameNormalized(String realNameNormalized) { } + global void setSkype(String skype) { } + global void setStatusEmoji(String statusEmoji) { } + global void setStatusEmojiDisplayInfo(List statusEmojiDisplayInfo) { } + global void setStatusEmojiUrl(String statusEmojiUrl) { } + global void setStatusExpiration(Long statusExpiration) { } + global void setStatusText(String statusText) { } + global void setStatusTextCanonical(String statusTextCanonical) { } + global void setTeam(String team) { } + global void setTitle(String title) { } + +} +global class StatusEmojiDisplayInfo { + global User.StatusEmojiDisplayInfo() { } + global Object clone() { } + global String getDisplayAlias() { } + global String getDisplayUrl() { } + global String getEmojiName() { } + global String getUnicode() { } + global void setDisplayAlias(String displayAlias) { } + global void setDisplayUrl(String displayUrl) { } + global void setEmojiName(String emojiName) { } + global void setUnicode(String unicode) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UserChangeEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UserChangeEvent.cls new file mode 100644 index 0000000..eef661c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UserChangeEvent.cls @@ -0,0 +1,12 @@ +global class UserChangeEvent { + global UserChangeEvent() { } + global Object clone() { } + global Integer getCacheTs() { } + global String getSubtype() { } + global String getType() { } + global Slack.User getUser() { } + global void setCacheTs(Integer cacheTs) { } + global void setUser(Slack.User user) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UserClient.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UserClient.cls new file mode 100644 index 0000000..99dabed --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UserClient.cls @@ -0,0 +1,107 @@ +global class UserClient { + global Slack.ApiTestResponse apiTest(Slack.ApiTestRequest req) { } + global Slack.AppsEventAuthorizationsListResponse appsEventAuthorizationsList(Slack.AppsEventAuthorizationsListRequest req) { } + global Slack.AppsUninstallResponse appsUninstall(Slack.AppsUninstallRequest req) { } + global Slack.AuthRevokeResponse authRevoke(Slack.AuthRevokeRequest req) { } + global Slack.AuthTeamsListResponse authTeamsList(Slack.AuthTeamsListRequest req) { } + global Slack.AuthTestResponse authTest(Slack.AuthTestRequest req) { } + global Slack.BookmarksAddResponse bookmarksAdd(Slack.BookmarksAddRequest req) { } + global Slack.BookmarksEditResponse bookmarksEdit(Slack.BookmarksEditRequest req) { } + global Slack.BookmarksListResponse bookmarksList(Slack.BookmarksListRequest req) { } + global Slack.BookmarksRemoveResponse bookmarksRemove(Slack.BookmarksRemoveRequest req) { } + global Slack.BotsInfoResponse botsInfo(Slack.BotsInfoRequest req) { } + global Slack.CallsAddResponse callsAdd(Slack.CallsAddRequest req) { } + global Slack.CallsEndResponse callsEnd(Slack.CallsEndRequest req) { } + global Slack.CallsInfoResponse callsInfo(Slack.CallsInfoRequest req) { } + global Slack.CallsParticipantsAddResponse callsParticipantsAdd(Slack.CallsParticipantsAddRequest req) { } + global Slack.CallsParticipantsRemoveResponse callsParticipantsRemove(Slack.CallsParticipantsRemoveRequest req) { } + global Slack.CallsUpdateResponse callsUpdate(Slack.CallsUpdateRequest req) { } + global Slack.ChatDeleteResponse chatDelete(Slack.ChatDeleteRequest req) { } + global Slack.ChatDeleteScheduledMessageResponse chatDeleteScheduledMessage(Slack.ChatDeleteScheduledMessageRequest req) { } + global Slack.ChatGetPermalinkResponse chatGetPermalink(Slack.ChatGetPermalinkRequest req) { } + global Slack.ChatMeMessageResponse chatMeMessage(Slack.ChatMeMessageRequest req) { } + global Slack.ChatPostEphemeralResponse chatPostEphemeral(Slack.ChatPostEphemeralRequest req) { } + global Slack.ChatPostMessageResponse chatPostMessage(Slack.ChatPostMessageRequest req) { } + global Slack.ChatScheduleMessageResponse chatScheduleMessage(Slack.ChatScheduleMessageRequest req) { } + global Slack.ChatScheduledMessagesListResponse chatScheduledMessagesList(Slack.ChatScheduledMessagesListRequest req) { } + global Slack.ChatUpdateResponse chatUpdate(Slack.ChatUpdateRequest req) { } + global Object clone() { } + global Slack.ConversationsArchiveResponse conversationsArchive(Slack.ConversationsArchiveRequest req) { } + global Slack.ConversationsCloseResponse conversationsClose(Slack.ConversationsCloseRequest req) { } + global Slack.ConversationsCreateResponse conversationsCreate(Slack.ConversationsCreateRequest req) { } + global Slack.ConversationsHistoryResponse conversationsHistory(Slack.ConversationsHistoryRequest req) { } + global Slack.ConversationsInfoResponse conversationsInfo(Slack.ConversationsInfoRequest req) { } + global Slack.ConversationsInviteResponse conversationsInvite(Slack.ConversationsInviteRequest req) { } + global Slack.ConversationsJoinResponse conversationsJoin(Slack.ConversationsJoinRequest req) { } + global Slack.ConversationsKickResponse conversationsKick(Slack.ConversationsKickRequest req) { } + global Slack.ConversationsLeaveResponse conversationsLeave(Slack.ConversationsLeaveRequest req) { } + global Slack.ConversationsListResponse conversationsList(Slack.ConversationsListRequest req) { } + global Slack.ConversationsMarkResponse conversationsMark(Slack.ConversationsMarkRequest req) { } + global Slack.ConversationsMembersResponse conversationsMembers(Slack.ConversationsMembersRequest req) { } + global Slack.ConversationsOpenResponse conversationsOpen(Slack.ConversationsOpenRequest req) { } + global Slack.ConversationsRenameResponse conversationsRename(Slack.ConversationsRenameRequest req) { } + global Slack.ConversationsRepliesResponse conversationsReplies(Slack.ConversationsRepliesRequest req) { } + global Slack.ConversationsSetPurposeResponse conversationsSetPurpose(Slack.ConversationsSetPurposeRequest req) { } + global Slack.ConversationsSetTopicResponse conversationsSetTopic(Slack.ConversationsSetTopicRequest req) { } + global Slack.ConversationsUnarchiveResponse conversationsUnarchive(Slack.ConversationsUnarchiveRequest req) { } + global Slack.DndEndDndResponse dndEndDnd(Slack.DndEndDndRequest req) { } + global Slack.DndEndSnoozeResponse dndEndSnooze(Slack.DndEndSnoozeRequest req) { } + global Slack.DndInfoResponse dndInfo(Slack.DndInfoRequest req) { } + global Slack.DndSetSnoozeResponse dndSetSnooze(Slack.DndSetSnoozeRequest req) { } + global Slack.DndTeamInfoResponse dndTeamInfo(Slack.DndTeamInfoRequest req) { } + global Slack.EmojiListResponse emojiList(Slack.EmojiListRequest req) { } + global Slack.FilesDeleteResponse filesDelete(Slack.FilesDeleteRequest req) { } + global Slack.FilesInfoResponse filesInfo(Slack.FilesInfoRequest req) { } + global Slack.FilesListResponse filesList(Slack.FilesListRequest req) { } + global Slack.FilesRemoteInfoResponse filesRemoteInfo(Slack.FilesRemoteInfoRequest req) { } + global Slack.FilesRemoteListResponse filesRemoteList(Slack.FilesRemoteListRequest req) { } + global Slack.FilesRemoteShareResponse filesRemoteShare(Slack.FilesRemoteShareRequest req) { } + global Slack.FilesRevokePublicURLResponse filesRevokePublicURL(Slack.FilesRevokePublicURLRequest req) { } + global Slack.FilesSharedPublicURLResponse filesSharedPublicURL(Slack.FilesSharedPublicURLRequest req) { } + global Slack.MigrationExchangeResponse migrationExchange(Slack.MigrationExchangeRequest req) { } + global Slack.PinsAddResponse pinsAdd(Slack.PinsAddRequest req) { } + global Slack.PinsListResponse pinsList(Slack.PinsListRequest req) { } + global Slack.PinsRemoveResponse pinsRemove(Slack.PinsRemoveRequest req) { } + global Slack.ReactionsAddResponse reactionsAdd(Slack.ReactionsAddRequest req) { } + global Slack.ReactionsGetResponse reactionsGet(Slack.ReactionsGetRequest req) { } + global Slack.ReactionsListResponse reactionsList(Slack.ReactionsListRequest req) { } + global Slack.ReactionsRemoveResponse reactionsRemove(Slack.ReactionsRemoveRequest req) { } + global Slack.RemindersAddResponse remindersAdd(Slack.RemindersAddRequest req) { } + global Slack.RemindersCompleteResponse remindersComplete(Slack.RemindersCompleteRequest req) { } + global Slack.RemindersDeleteResponse remindersDelete(Slack.RemindersDeleteRequest req) { } + global Slack.RemindersInfoResponse remindersInfo(Slack.RemindersInfoRequest req) { } + global Slack.RemindersListResponse remindersList(Slack.RemindersListRequest req) { } + global Slack.SearchAllResponse searchAll(Slack.SearchAllRequest req) { } + global Slack.SearchFilesResponse searchFiles(Slack.SearchFilesRequest req) { } + global Slack.SearchMessagesResponse searchMessages(Slack.SearchMessagesRequest req) { } + global Slack.StarsAddResponse starsAdd(Slack.StarsAddRequest req) { } + global Slack.StarsListResponse starsList(Slack.StarsListRequest req) { } + global Slack.StarsRemoveResponse starsRemove(Slack.StarsRemoveRequest req) { } + global Slack.TeamAccessLogsResponse teamAccessLogs(Slack.TeamAccessLogsRequest req) { } + global Slack.TeamBillableInfoResponse teamBillableInfo(Slack.TeamBillableInfoRequest req) { } + global Slack.TeamInfoResponse teamInfo(Slack.TeamInfoRequest req) { } + global Slack.TeamIntegrationLogsResponse teamIntegrationLogs(Slack.TeamIntegrationLogsRequest req) { } + global Slack.TeamProfileGetResponse teamProfileGet(Slack.TeamProfileGetRequest req) { } + global Slack.UsergroupsCreateResponse usergroupsCreate(Slack.UsergroupsCreateRequest req) { } + global Slack.UsergroupsDisableResponse usergroupsDisable(Slack.UsergroupsDisableRequest req) { } + global Slack.UsergroupsEnableResponse usergroupsEnable(Slack.UsergroupsEnableRequest req) { } + global Slack.UsergroupsListResponse usergroupsList(Slack.UsergroupsListRequest req) { } + global Slack.UsergroupsUpdateResponse usergroupsUpdate(Slack.UsergroupsUpdateRequest req) { } + global Slack.UsergroupsUsersListResponse usergroupsUsersList(Slack.UsergroupsUsersListRequest req) { } + global Slack.UsergroupsUsersUpdateResponse usergroupsUsersUpdate(Slack.UsergroupsUsersUpdateRequest req) { } + global Slack.UsersConversationsResponse usersConversations(Slack.UsersConversationsRequest req) { } + global Slack.UsersDeletePhotoResponse usersDeletePhoto(Slack.UsersDeletePhotoRequest req) { } + global Slack.UsersGetPresenceResponse usersGetPresence(Slack.UsersGetPresenceRequest req) { } + global Slack.UsersIdentityResponse usersIdentity(Slack.UsersIdentityRequest req) { } + global Slack.UsersInfoResponse usersInfo(Slack.UsersInfoRequest req) { } + global Slack.UsersListResponse usersList(Slack.UsersListRequest req) { } + global Slack.UsersLookupByEmailResponse usersLookupByEmail(Slack.UsersLookupByEmailRequest req) { } + global Slack.UsersProfileGetResponse usersProfileGet(Slack.UsersProfileGetRequest req) { } + global Slack.UsersProfileSetResponse usersProfileSet(Slack.UsersProfileSetRequest req) { } + global Slack.UsersSetActiveResponse usersSetActive(Slack.UsersSetActiveRequest req) { } + global Slack.UsersSetPresenceResponse usersSetPresence(Slack.UsersSetPresenceRequest req) { } + global Slack.ViewsOpenResponse viewsOpen(Slack.ViewsOpenRequest req) { } + global Slack.ViewsPushResponse viewsPush(Slack.ViewsPushRequest req) { } + global Slack.ViewsUpdateResponse viewsUpdate(Slack.ViewsUpdateRequest req) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UserClientMock.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UserClientMock.cls new file mode 100644 index 0000000..4b5676f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UserClientMock.cls @@ -0,0 +1,108 @@ +global class UserClientMock { + global UserClientMock() { } + global Slack.ApiTestResponse apiTest(Slack.ApiTestRequest req) { } + global Slack.AppsEventAuthorizationsListResponse appsEventAuthorizationsList(Slack.AppsEventAuthorizationsListRequest req) { } + global Slack.AppsUninstallResponse appsUninstall(Slack.AppsUninstallRequest req) { } + global Slack.AuthRevokeResponse authRevoke(Slack.AuthRevokeRequest req) { } + global Slack.AuthTeamsListResponse authTeamsList(Slack.AuthTeamsListRequest req) { } + global Slack.AuthTestResponse authTest(Slack.AuthTestRequest req) { } + global Slack.BookmarksAddResponse bookmarksAdd(Slack.BookmarksAddRequest req) { } + global Slack.BookmarksEditResponse bookmarksEdit(Slack.BookmarksEditRequest req) { } + global Slack.BookmarksListResponse bookmarksList(Slack.BookmarksListRequest req) { } + global Slack.BookmarksRemoveResponse bookmarksRemove(Slack.BookmarksRemoveRequest req) { } + global Slack.BotsInfoResponse botsInfo(Slack.BotsInfoRequest req) { } + global Slack.CallsAddResponse callsAdd(Slack.CallsAddRequest req) { } + global Slack.CallsEndResponse callsEnd(Slack.CallsEndRequest req) { } + global Slack.CallsInfoResponse callsInfo(Slack.CallsInfoRequest req) { } + global Slack.CallsParticipantsAddResponse callsParticipantsAdd(Slack.CallsParticipantsAddRequest req) { } + global Slack.CallsParticipantsRemoveResponse callsParticipantsRemove(Slack.CallsParticipantsRemoveRequest req) { } + global Slack.CallsUpdateResponse callsUpdate(Slack.CallsUpdateRequest req) { } + global Slack.ChatDeleteResponse chatDelete(Slack.ChatDeleteRequest req) { } + global Slack.ChatDeleteScheduledMessageResponse chatDeleteScheduledMessage(Slack.ChatDeleteScheduledMessageRequest req) { } + global Slack.ChatGetPermalinkResponse chatGetPermalink(Slack.ChatGetPermalinkRequest req) { } + global Slack.ChatMeMessageResponse chatMeMessage(Slack.ChatMeMessageRequest req) { } + global Slack.ChatPostEphemeralResponse chatPostEphemeral(Slack.ChatPostEphemeralRequest req) { } + global Slack.ChatPostMessageResponse chatPostMessage(Slack.ChatPostMessageRequest req) { } + global Slack.ChatScheduleMessageResponse chatScheduleMessage(Slack.ChatScheduleMessageRequest req) { } + global Slack.ChatScheduledMessagesListResponse chatScheduledMessagesList(Slack.ChatScheduledMessagesListRequest req) { } + global Slack.ChatUpdateResponse chatUpdate(Slack.ChatUpdateRequest req) { } + global Object clone() { } + global Slack.ConversationsArchiveResponse conversationsArchive(Slack.ConversationsArchiveRequest req) { } + global Slack.ConversationsCloseResponse conversationsClose(Slack.ConversationsCloseRequest req) { } + global Slack.ConversationsCreateResponse conversationsCreate(Slack.ConversationsCreateRequest req) { } + global Slack.ConversationsHistoryResponse conversationsHistory(Slack.ConversationsHistoryRequest req) { } + global Slack.ConversationsInfoResponse conversationsInfo(Slack.ConversationsInfoRequest req) { } + global Slack.ConversationsInviteResponse conversationsInvite(Slack.ConversationsInviteRequest req) { } + global Slack.ConversationsJoinResponse conversationsJoin(Slack.ConversationsJoinRequest req) { } + global Slack.ConversationsKickResponse conversationsKick(Slack.ConversationsKickRequest req) { } + global Slack.ConversationsLeaveResponse conversationsLeave(Slack.ConversationsLeaveRequest req) { } + global Slack.ConversationsListResponse conversationsList(Slack.ConversationsListRequest req) { } + global Slack.ConversationsMarkResponse conversationsMark(Slack.ConversationsMarkRequest req) { } + global Slack.ConversationsMembersResponse conversationsMembers(Slack.ConversationsMembersRequest req) { } + global Slack.ConversationsOpenResponse conversationsOpen(Slack.ConversationsOpenRequest req) { } + global Slack.ConversationsRenameResponse conversationsRename(Slack.ConversationsRenameRequest req) { } + global Slack.ConversationsRepliesResponse conversationsReplies(Slack.ConversationsRepliesRequest req) { } + global Slack.ConversationsSetPurposeResponse conversationsSetPurpose(Slack.ConversationsSetPurposeRequest req) { } + global Slack.ConversationsSetTopicResponse conversationsSetTopic(Slack.ConversationsSetTopicRequest req) { } + global Slack.ConversationsUnarchiveResponse conversationsUnarchive(Slack.ConversationsUnarchiveRequest req) { } + global Slack.DndEndDndResponse dndEndDnd(Slack.DndEndDndRequest req) { } + global Slack.DndEndSnoozeResponse dndEndSnooze(Slack.DndEndSnoozeRequest req) { } + global Slack.DndInfoResponse dndInfo(Slack.DndInfoRequest req) { } + global Slack.DndSetSnoozeResponse dndSetSnooze(Slack.DndSetSnoozeRequest req) { } + global Slack.DndTeamInfoResponse dndTeamInfo(Slack.DndTeamInfoRequest req) { } + global Slack.EmojiListResponse emojiList(Slack.EmojiListRequest req) { } + global Slack.FilesDeleteResponse filesDelete(Slack.FilesDeleteRequest req) { } + global Slack.FilesInfoResponse filesInfo(Slack.FilesInfoRequest req) { } + global Slack.FilesListResponse filesList(Slack.FilesListRequest req) { } + global Slack.FilesRemoteInfoResponse filesRemoteInfo(Slack.FilesRemoteInfoRequest req) { } + global Slack.FilesRemoteListResponse filesRemoteList(Slack.FilesRemoteListRequest req) { } + global Slack.FilesRemoteShareResponse filesRemoteShare(Slack.FilesRemoteShareRequest req) { } + global Slack.FilesRevokePublicURLResponse filesRevokePublicURL(Slack.FilesRevokePublicURLRequest req) { } + global Slack.FilesSharedPublicURLResponse filesSharedPublicURL(Slack.FilesSharedPublicURLRequest req) { } + global Slack.MigrationExchangeResponse migrationExchange(Slack.MigrationExchangeRequest req) { } + global Slack.PinsAddResponse pinsAdd(Slack.PinsAddRequest req) { } + global Slack.PinsListResponse pinsList(Slack.PinsListRequest req) { } + global Slack.PinsRemoveResponse pinsRemove(Slack.PinsRemoveRequest req) { } + global Slack.ReactionsAddResponse reactionsAdd(Slack.ReactionsAddRequest req) { } + global Slack.ReactionsGetResponse reactionsGet(Slack.ReactionsGetRequest req) { } + global Slack.ReactionsListResponse reactionsList(Slack.ReactionsListRequest req) { } + global Slack.ReactionsRemoveResponse reactionsRemove(Slack.ReactionsRemoveRequest req) { } + global Slack.RemindersAddResponse remindersAdd(Slack.RemindersAddRequest req) { } + global Slack.RemindersCompleteResponse remindersComplete(Slack.RemindersCompleteRequest req) { } + global Slack.RemindersDeleteResponse remindersDelete(Slack.RemindersDeleteRequest req) { } + global Slack.RemindersInfoResponse remindersInfo(Slack.RemindersInfoRequest req) { } + global Slack.RemindersListResponse remindersList(Slack.RemindersListRequest req) { } + global Slack.SearchAllResponse searchAll(Slack.SearchAllRequest req) { } + global Slack.SearchFilesResponse searchFiles(Slack.SearchFilesRequest req) { } + global Slack.SearchMessagesResponse searchMessages(Slack.SearchMessagesRequest req) { } + global Slack.StarsAddResponse starsAdd(Slack.StarsAddRequest req) { } + global Slack.StarsListResponse starsList(Slack.StarsListRequest req) { } + global Slack.StarsRemoveResponse starsRemove(Slack.StarsRemoveRequest req) { } + global Slack.TeamAccessLogsResponse teamAccessLogs(Slack.TeamAccessLogsRequest req) { } + global Slack.TeamBillableInfoResponse teamBillableInfo(Slack.TeamBillableInfoRequest req) { } + global Slack.TeamInfoResponse teamInfo(Slack.TeamInfoRequest req) { } + global Slack.TeamIntegrationLogsResponse teamIntegrationLogs(Slack.TeamIntegrationLogsRequest req) { } + global Slack.TeamProfileGetResponse teamProfileGet(Slack.TeamProfileGetRequest req) { } + global Slack.UsergroupsCreateResponse usergroupsCreate(Slack.UsergroupsCreateRequest req) { } + global Slack.UsergroupsDisableResponse usergroupsDisable(Slack.UsergroupsDisableRequest req) { } + global Slack.UsergroupsEnableResponse usergroupsEnable(Slack.UsergroupsEnableRequest req) { } + global Slack.UsergroupsListResponse usergroupsList(Slack.UsergroupsListRequest req) { } + global Slack.UsergroupsUpdateResponse usergroupsUpdate(Slack.UsergroupsUpdateRequest req) { } + global Slack.UsergroupsUsersListResponse usergroupsUsersList(Slack.UsergroupsUsersListRequest req) { } + global Slack.UsergroupsUsersUpdateResponse usergroupsUsersUpdate(Slack.UsergroupsUsersUpdateRequest req) { } + global Slack.UsersConversationsResponse usersConversations(Slack.UsersConversationsRequest req) { } + global Slack.UsersDeletePhotoResponse usersDeletePhoto(Slack.UsersDeletePhotoRequest req) { } + global Slack.UsersGetPresenceResponse usersGetPresence(Slack.UsersGetPresenceRequest req) { } + global Slack.UsersIdentityResponse usersIdentity(Slack.UsersIdentityRequest req) { } + global Slack.UsersInfoResponse usersInfo(Slack.UsersInfoRequest req) { } + global Slack.UsersListResponse usersList(Slack.UsersListRequest req) { } + global Slack.UsersLookupByEmailResponse usersLookupByEmail(Slack.UsersLookupByEmailRequest req) { } + global Slack.UsersProfileGetResponse usersProfileGet(Slack.UsersProfileGetRequest req) { } + global Slack.UsersProfileSetResponse usersProfileSet(Slack.UsersProfileSetRequest req) { } + global Slack.UsersSetActiveResponse usersSetActive(Slack.UsersSetActiveRequest req) { } + global Slack.UsersSetPresenceResponse usersSetPresence(Slack.UsersSetPresenceRequest req) { } + global Slack.ViewsOpenResponse viewsOpen(Slack.ViewsOpenRequest req) { } + global Slack.ViewsPushResponse viewsPush(Slack.ViewsPushRequest req) { } + global Slack.ViewsUpdateResponse viewsUpdate(Slack.ViewsUpdateRequest req) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UserMapping.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UserMapping.cls new file mode 100644 index 0000000..f866ba6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UserMapping.cls @@ -0,0 +1,7 @@ +global class UserMapping { + global UserMapping(String salesforceId, String slackUserId) { } + global Object clone() { } + global String getSalesforceUserId() { } + global String getSlackUserId() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UserMappingResult.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UserMappingResult.cls new file mode 100644 index 0000000..0c9b3d0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UserMappingResult.cls @@ -0,0 +1,8 @@ +global class UserMappingResult { + global Object clone() { } + global Slack.UserProvisioningErrorCode getError() { } + global Slack.UserMapping getUserMapping() { } + global Boolean isSuccess() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UserMappingService.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UserMappingService.cls new file mode 100644 index 0000000..3455a2e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UserMappingService.cls @@ -0,0 +1,9 @@ +global class UserMappingService { + global UserMappingService() { } + global Object clone() { } + global static String getSalesforceUserId(String slackUserId) { } + global static Map getSalesforceUserIdMap(List slackUserIds) { } + global static String getSlackUserId(String salesforceUserId, String teamId) { } + global static Map getSlackUserIdMap(List salesforceUserIds, String teamId) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UserMappingUrlServiceProvider.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UserMappingUrlServiceProvider.cls new file mode 100644 index 0000000..c9dc514 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UserMappingUrlServiceProvider.cls @@ -0,0 +1,7 @@ +global class UserMappingUrlServiceProvider { + global UserMappingUrlServiceProvider() { } + global Object clone() { } + global static String generatePartnerAuthorizationUrl(String slackAppId, String slackTeamId) { } + global static String generateSlackAuthorizationUrl(String slackAppId) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UserProvisioningErrorCode.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UserProvisioningErrorCode.cls new file mode 100644 index 0000000..b485296 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UserProvisioningErrorCode.cls @@ -0,0 +1,7 @@ +global class UserProvisioningErrorCode { + global Object clone() { } + global Integer getCode() { } + global String getDescription() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UserProvisioningProvider.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UserProvisioningProvider.cls new file mode 100644 index 0000000..bcc3485 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UserProvisioningProvider.cls @@ -0,0 +1,8 @@ +global class UserProvisioningProvider { + global UserProvisioningProvider() { } + global Object clone() { } + global static Slack.UserProvisioningResult importUsers(List proposedUserMappings, String installedAppContextId) { } + global static Slack.UserProvisioningResult revokeUsersBySalesforceId(List salesforceIdsToRevoke, String installedAppContextId) { } + global static Slack.UserProvisioningResult revokeUsersBySlackId(List slackIdsToRevoke) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UserProvisioningResult.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UserProvisioningResult.cls new file mode 100644 index 0000000..cdee080 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UserProvisioningResult.cls @@ -0,0 +1,8 @@ +global class UserProvisioningResult { + global Object clone() { } + global List getFailedMappings() { } + global List getSuccessfulMappings() { } + global Boolean isSuccess() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UserResourceDeniedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UserResourceDeniedEvent.cls new file mode 100644 index 0000000..4cc82f7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UserResourceDeniedEvent.cls @@ -0,0 +1,14 @@ +global class UserResourceDeniedEvent { + global UserResourceDeniedEvent() { } + global Object clone() { } + global List getScopes() { } + global String getSubtype() { } + global String getTriggerId() { } + global String getType() { } + global String getUser() { } + global void setScopes(List scopes) { } + global void setTriggerId(String triggerId) { } + global void setUser(String user) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UserResourceGrantedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UserResourceGrantedEvent.cls new file mode 100644 index 0000000..1dc29fa --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UserResourceGrantedEvent.cls @@ -0,0 +1,14 @@ +global class UserResourceGrantedEvent { + global UserResourceGrantedEvent() { } + global Object clone() { } + global List getScopes() { } + global String getSubtype() { } + global String getTriggerId() { } + global String getType() { } + global String getUser() { } + global void setScopes(List scopes) { } + global void setTriggerId(String triggerId) { } + global void setUser(String user) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UserResourceRemovedEvent.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UserResourceRemovedEvent.cls new file mode 100644 index 0000000..8c7f75f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UserResourceRemovedEvent.cls @@ -0,0 +1,12 @@ +global class UserResourceRemovedEvent { + global UserResourceRemovedEvent() { } + global Object clone() { } + global String getSubtype() { } + global String getTriggerId() { } + global String getType() { } + global String getUser() { } + global void setTriggerId(String triggerId) { } + global void setUser(String user) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UserType.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UserType.cls new file mode 100644 index 0000000..7ea8451 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UserType.cls @@ -0,0 +1,5 @@ +global enum UserType { +AUTHENTICATED, +SYSTEM, +UNAUTHENTICATED +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/Usergroup.Prefs.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/Usergroup.Prefs.cls new file mode 100644 index 0000000..a0341d8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/Usergroup.Prefs.cls @@ -0,0 +1,9 @@ +global class Usergroup.Prefs { + global Usergroup.Prefs() { } + global Object clone() { } + global List getChannels() { } + global List getGroups() { } + global void setChannels(List channels) { } + global void setGroups(List groups) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/Usergroup.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/Usergroup.cls new file mode 100644 index 0000000..ea80f81 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/Usergroup.cls @@ -0,0 +1,57 @@ +global class Usergroup { + global Usergroup() { } + global Object clone() { } + global String getAutoType() { } + global Integer getChannelCount() { } + global String getCreatedBy() { } + global Integer getDateCreate() { } + global Integer getDateDelete() { } + global Integer getDateUpdate() { } + global String getDeletedBy() { } + global String getDescription() { } + global String getEnterpriseSubteamId() { } + global String getHandle() { } + global String getId() { } + global String getName() { } + global Slack.Usergroup.Prefs getPrefs() { } + global String getTeamId() { } + global String getUpdatedBy() { } + global Integer getUserCount() { } + global List getUsers() { } + global Boolean isAutoProvision() { } + global Boolean isExternal() { } + global Boolean isSubteam() { } + global Boolean isUsergroup() { } + global void setAutoProvision(Boolean autoProvision) { } + global void setAutoType(String autoType) { } + global void setChannelCount(Integer channelCount) { } + global void setCreatedBy(String createdBy) { } + global void setDateCreate(Integer dateCreate) { } + global void setDateDelete(Integer dateDelete) { } + global void setDateUpdate(Integer dateUpdate) { } + global void setDeletedBy(String deletedBy) { } + global void setDescription(String description) { } + global void setEnterpriseSubteamId(String enterpriseSubteamId) { } + global void setExternal(Boolean external) { } + global void setHandle(String handle) { } + global void setId(String id) { } + global void setName(String name) { } + global void setPrefs(Slack.Usergroup.Prefs prefs) { } + global void setSubteam(Boolean subteam) { } + global void setTeamId(String teamId) { } + global void setUpdatedBy(String updatedBy) { } + global void setUserCount(Integer userCount) { } + global void setUsergroup(Boolean usergroup) { } + global void setUsers(List users) { } + global String toString() { } +global class Prefs { + global Usergroup.Prefs() { } + global Object clone() { } + global List getChannels() { } + global List getGroups() { } + global void setChannels(List channels) { } + global void setGroups(List groups) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsCreateRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsCreateRequest.cls new file mode 100644 index 0000000..d786427 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsCreateRequest.cls @@ -0,0 +1,24 @@ +global class UsergroupsCreateRequest { + global static Slack.UsergroupsCreateRequest.Builder builder() { } + global Object clone() { } + global List getChannels() { } + global String getDescription() { } + global String getHandle() { } + global String getName() { } + global String getTeamId() { } + global Boolean isIncludeCount() { } + global String toString() { } +global class Builder { + global UsergroupsCreateRequest.Builder() { } + global Slack.UsergroupsCreateRequest build() { } + global Slack.UsergroupsCreateRequest.Builder channels(List channels) { } + global Object clone() { } + global Slack.UsergroupsCreateRequest.Builder description(String description) { } + global Slack.UsergroupsCreateRequest.Builder handle(String handle) { } + global Slack.UsergroupsCreateRequest.Builder includeCount(Boolean includeCount) { } + global Slack.UsergroupsCreateRequest.Builder name(String name) { } + global Slack.UsergroupsCreateRequest.Builder teamId(String teamId) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsCreateResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsCreateResponse.cls new file mode 100644 index 0000000..c7e4ef2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsCreateResponse.cls @@ -0,0 +1,20 @@ +global class UsergroupsCreateResponse { + global UsergroupsCreateResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.Usergroup getUsergroup() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setUsergroup(Slack.Usergroup usergroup) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsDisableRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsDisableRequest.cls new file mode 100644 index 0000000..c917e4f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsDisableRequest.cls @@ -0,0 +1,18 @@ +global class UsergroupsDisableRequest { + global static Slack.UsergroupsDisableRequest.Builder builder() { } + global Object clone() { } + global String getTeamId() { } + global String getUsergroup() { } + global Boolean isIncludeCount() { } + global String toString() { } +global class Builder { + global UsergroupsDisableRequest.Builder() { } + global Slack.UsergroupsDisableRequest build() { } + global Object clone() { } + global Slack.UsergroupsDisableRequest.Builder includeCount(Boolean includeCount) { } + global Slack.UsergroupsDisableRequest.Builder teamId(String teamId) { } + global Slack.UsergroupsDisableRequest.Builder usergroup(String usergroup) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsDisableResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsDisableResponse.cls new file mode 100644 index 0000000..dcbee78 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsDisableResponse.cls @@ -0,0 +1,20 @@ +global class UsergroupsDisableResponse { + global UsergroupsDisableResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.Usergroup getUsergroup() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setUsergroup(Slack.Usergroup usergroup) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsEnableRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsEnableRequest.cls new file mode 100644 index 0000000..056dba3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsEnableRequest.cls @@ -0,0 +1,18 @@ +global class UsergroupsEnableRequest { + global static Slack.UsergroupsEnableRequest.Builder builder() { } + global Object clone() { } + global String getTeamId() { } + global String getUsergroup() { } + global Boolean isIncludeCount() { } + global String toString() { } +global class Builder { + global UsergroupsEnableRequest.Builder() { } + global Slack.UsergroupsEnableRequest build() { } + global Object clone() { } + global Slack.UsergroupsEnableRequest.Builder includeCount(Boolean includeCount) { } + global Slack.UsergroupsEnableRequest.Builder teamId(String teamId) { } + global Slack.UsergroupsEnableRequest.Builder usergroup(String usergroup) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsEnableResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsEnableResponse.cls new file mode 100644 index 0000000..5b94fdd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsEnableResponse.cls @@ -0,0 +1,20 @@ +global class UsergroupsEnableResponse { + global UsergroupsEnableResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.Usergroup getUsergroup() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setUsergroup(Slack.Usergroup usergroup) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsListRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsListRequest.cls new file mode 100644 index 0000000..c5bb592 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsListRequest.cls @@ -0,0 +1,20 @@ +global class UsergroupsListRequest { + global static Slack.UsergroupsListRequest.Builder builder() { } + global Object clone() { } + global String getTeamId() { } + global Boolean isIncludeCount() { } + global Boolean isIncludeDisabled() { } + global Boolean isIncludeUsers() { } + global String toString() { } +global class Builder { + global UsergroupsListRequest.Builder() { } + global Slack.UsergroupsListRequest build() { } + global Object clone() { } + global Slack.UsergroupsListRequest.Builder includeCount(Boolean includeCount) { } + global Slack.UsergroupsListRequest.Builder includeDisabled(Boolean includeDisabled) { } + global Slack.UsergroupsListRequest.Builder includeUsers(Boolean includeUsers) { } + global Slack.UsergroupsListRequest.Builder teamId(String teamId) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsListResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsListResponse.cls new file mode 100644 index 0000000..3130ce1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsListResponse.cls @@ -0,0 +1,20 @@ +global class UsergroupsListResponse { + global UsergroupsListResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global List getUsergroups() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setUsergroups(List usergroups) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsUpdateRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsUpdateRequest.cls new file mode 100644 index 0000000..ee0fd0a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsUpdateRequest.cls @@ -0,0 +1,26 @@ +global class UsergroupsUpdateRequest { + global static Slack.UsergroupsUpdateRequest.Builder builder() { } + global Object clone() { } + global List getChannels() { } + global String getDescription() { } + global String getHandle() { } + global String getName() { } + global String getTeamId() { } + global String getUsergroup() { } + global Boolean isIncludeCount() { } + global String toString() { } +global class Builder { + global UsergroupsUpdateRequest.Builder() { } + global Slack.UsergroupsUpdateRequest build() { } + global Slack.UsergroupsUpdateRequest.Builder channels(List channels) { } + global Object clone() { } + global Slack.UsergroupsUpdateRequest.Builder description(String description) { } + global Slack.UsergroupsUpdateRequest.Builder handle(String handle) { } + global Slack.UsergroupsUpdateRequest.Builder includeCount(Boolean includeCount) { } + global Slack.UsergroupsUpdateRequest.Builder name(String name) { } + global Slack.UsergroupsUpdateRequest.Builder teamId(String teamId) { } + global Slack.UsergroupsUpdateRequest.Builder usergroup(String usergroup) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsUpdateResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsUpdateResponse.cls new file mode 100644 index 0000000..c8f8f79 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsUpdateResponse.cls @@ -0,0 +1,20 @@ +global class UsergroupsUpdateResponse { + global UsergroupsUpdateResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.Usergroup getUsergroup() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setUsergroup(Slack.Usergroup usergroup) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsUsersListRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsUsersListRequest.cls new file mode 100644 index 0000000..8b44dff --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsUsersListRequest.cls @@ -0,0 +1,18 @@ +global class UsergroupsUsersListRequest { + global static Slack.UsergroupsUsersListRequest.Builder builder() { } + global Object clone() { } + global String getTeamId() { } + global String getUsergroup() { } + global Boolean isIncludeDisabled() { } + global String toString() { } +global class Builder { + global UsergroupsUsersListRequest.Builder() { } + global Slack.UsergroupsUsersListRequest build() { } + global Object clone() { } + global Slack.UsergroupsUsersListRequest.Builder includeDisabled(Boolean includeDisabled) { } + global Slack.UsergroupsUsersListRequest.Builder teamId(String teamId) { } + global Slack.UsergroupsUsersListRequest.Builder usergroup(String usergroup) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsUsersListResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsUsersListResponse.cls new file mode 100644 index 0000000..721fd53 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsUsersListResponse.cls @@ -0,0 +1,20 @@ +global class UsergroupsUsersListResponse { + global UsergroupsUsersListResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global List getUsers() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setUsers(List users) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsUsersUpdateRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsUsersUpdateRequest.cls new file mode 100644 index 0000000..2584cc8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsUsersUpdateRequest.cls @@ -0,0 +1,20 @@ +global class UsergroupsUsersUpdateRequest { + global static Slack.UsergroupsUsersUpdateRequest.Builder builder() { } + global Object clone() { } + global String getTeamId() { } + global String getUsergroup() { } + global List getUsers() { } + global Boolean isIncludeCount() { } + global String toString() { } +global class Builder { + global UsergroupsUsersUpdateRequest.Builder() { } + global Slack.UsergroupsUsersUpdateRequest build() { } + global Object clone() { } + global Slack.UsergroupsUsersUpdateRequest.Builder includeCount(Boolean includeCount) { } + global Slack.UsergroupsUsersUpdateRequest.Builder teamId(String teamId) { } + global Slack.UsergroupsUsersUpdateRequest.Builder usergroup(String usergroup) { } + global Slack.UsergroupsUsersUpdateRequest.Builder users(List users) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsUsersUpdateResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsUsersUpdateResponse.cls new file mode 100644 index 0000000..2d0eaad --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsergroupsUsersUpdateResponse.cls @@ -0,0 +1,20 @@ +global class UsergroupsUsersUpdateResponse { + global UsergroupsUsersUpdateResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.Usergroup getUsergroup() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setUsergroup(Slack.Usergroup usergroup) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsersConversationsRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersConversationsRequest.cls new file mode 100644 index 0000000..d431c98 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersConversationsRequest.cls @@ -0,0 +1,23 @@ +global class UsersConversationsRequest { + global static Slack.UsersConversationsRequest.Builder builder() { } + global Object clone() { } + global String getCursor() { } + global Integer getLimit() { } + global String getTeamId() { } + global String getUser() { } + global Boolean isExcludeArchived() { } + global String toString() { } +global class Builder { + global UsersConversationsRequest.Builder() { } + global Slack.UsersConversationsRequest build() { } + global Object clone() { } + global Slack.UsersConversationsRequest.Builder cursor(String cursor) { } + global Slack.UsersConversationsRequest.Builder excludeArchived(Boolean excludeArchived) { } + global Slack.UsersConversationsRequest.Builder limitValue(Integer limitValue) { } + global Slack.UsersConversationsRequest.Builder teamId(String teamId) { } + global Slack.UsersConversationsRequest.Builder types(List types) { } + global Slack.UsersConversationsRequest.Builder user(String user) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsersConversationsResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersConversationsResponse.cls new file mode 100644 index 0000000..a76e31d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersConversationsResponse.cls @@ -0,0 +1,22 @@ +global class UsersConversationsResponse { + global UsersConversationsResponse() { } + global Object clone() { } + global List getChannels() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.ResponseMetadata getResponseMetadata() { } + global String getWarning() { } + global Boolean isOk() { } + global void setChannels(List channels) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ResponseMetadata responseMetadata) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsersDeletePhotoRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersDeletePhotoRequest.cls new file mode 100644 index 0000000..e033b98 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersDeletePhotoRequest.cls @@ -0,0 +1,12 @@ +global class UsersDeletePhotoRequest { + global static Slack.UsersDeletePhotoRequest.Builder builder() { } + global Object clone() { } + global String toString() { } +global class Builder { + global UsersDeletePhotoRequest.Builder() { } + global Slack.UsersDeletePhotoRequest build() { } + global Object clone() { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsersDeletePhotoResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersDeletePhotoResponse.cls new file mode 100644 index 0000000..d305529 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersDeletePhotoResponse.cls @@ -0,0 +1,18 @@ +global class UsersDeletePhotoResponse { + global UsersDeletePhotoResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsersGetPresenceRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersGetPresenceRequest.cls new file mode 100644 index 0000000..a94c052 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersGetPresenceRequest.cls @@ -0,0 +1,14 @@ +global class UsersGetPresenceRequest { + global static Slack.UsersGetPresenceRequest.Builder builder() { } + global Object clone() { } + global String getUser() { } + global String toString() { } +global class Builder { + global UsersGetPresenceRequest.Builder() { } + global Slack.UsersGetPresenceRequest build() { } + global Object clone() { } + global Slack.UsersGetPresenceRequest.Builder user(String user) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsersGetPresenceResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersGetPresenceResponse.cls new file mode 100644 index 0000000..4ec3e56 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersGetPresenceResponse.cls @@ -0,0 +1,30 @@ +global class UsersGetPresenceResponse { + global UsersGetPresenceResponse() { } + global Object clone() { } + global Integer getConnectionCount() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global Integer getLastActivity() { } + global String getNeeded() { } + global String getPresence() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isAutoAway() { } + global Boolean isManualAway() { } + global Boolean isOk() { } + global Boolean isOnline() { } + global void setAutoAway(Boolean autoAway) { } + global void setConnectionCount(Integer connectionCount) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setLastActivity(Integer lastActivity) { } + global void setManualAway(Boolean manualAway) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setOnline(Boolean online) { } + global void setPresence(String presence) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsersIdentityRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersIdentityRequest.cls new file mode 100644 index 0000000..06f08d8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersIdentityRequest.cls @@ -0,0 +1,12 @@ +global class UsersIdentityRequest { + global static Slack.UsersIdentityRequest.Builder builder() { } + global Object clone() { } + global String toString() { } +global class Builder { + global UsersIdentityRequest.Builder() { } + global Slack.UsersIdentityRequest build() { } + global Object clone() { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsersIdentityResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersIdentityResponse.cls new file mode 100644 index 0000000..d8fad86 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersIdentityResponse.cls @@ -0,0 +1,54 @@ +global class UsersIdentityResponse { + global UsersIdentityResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.UsersIdentityResponse.Team getTeam() { } + global Slack.UsersIdentityResponse.User getUser() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setTeam(Slack.UsersIdentityResponse.Team team) { } + global void setUser(Slack.UsersIdentityResponse.User user) { } + global void setWarning(String warning) { } + global String toString() { } +global class Team { + global UsersIdentityResponse.Team() { } + global Object clone() { } + global String getId() { } + global String getName() { } + global void setId(String id) { } + global void setName(String name) { } + +} +global class User { + global UsersIdentityResponse.User() { } + global Object clone() { } + global String getEmail() { } + global String getId() { } + global String getImage192() { } + global String getImage24() { } + global String getImage32() { } + global String getImage48() { } + global String getImage512() { } + global String getImage72() { } + global String getName() { } + global void setEmail(String email) { } + global void setId(String id) { } + global void setImage192(String image192) { } + global void setImage24(String image24) { } + global void setImage32(String image32) { } + global void setImage48(String image48) { } + global void setImage512(String image512) { } + global void setImage72(String image72) { } + global void setName(String name) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsersInfoRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersInfoRequest.cls new file mode 100644 index 0000000..9747ed9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersInfoRequest.cls @@ -0,0 +1,16 @@ +global class UsersInfoRequest { + global static Slack.UsersInfoRequest.Builder builder() { } + global Object clone() { } + global String getUser() { } + global Boolean isIncludeLocale() { } + global String toString() { } +global class Builder { + global UsersInfoRequest.Builder() { } + global Slack.UsersInfoRequest build() { } + global Object clone() { } + global Slack.UsersInfoRequest.Builder includeLocale(Boolean includeLocale) { } + global Slack.UsersInfoRequest.Builder user(String user) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsersInfoResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersInfoResponse.cls new file mode 100644 index 0000000..b318f56 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersInfoResponse.cls @@ -0,0 +1,20 @@ +global class UsersInfoResponse { + global UsersInfoResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.User getUser() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setUser(Slack.User user) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsersListRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersListRequest.cls new file mode 100644 index 0000000..c664327 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersListRequest.cls @@ -0,0 +1,20 @@ +global class UsersListRequest { + global static Slack.UsersListRequest.Builder builder() { } + global Object clone() { } + global String getCursor() { } + global Integer getLimit() { } + global String getTeamId() { } + global Boolean isIncludeLocale() { } + global String toString() { } +global class Builder { + global UsersListRequest.Builder() { } + global Slack.UsersListRequest build() { } + global Object clone() { } + global Slack.UsersListRequest.Builder cursor(String cursor) { } + global Slack.UsersListRequest.Builder includeLocale(Boolean includeLocale) { } + global Slack.UsersListRequest.Builder limitValue(Integer limitValue) { } + global Slack.UsersListRequest.Builder teamId(String teamId) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsersListResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersListResponse.cls new file mode 100644 index 0000000..c6b160e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersListResponse.cls @@ -0,0 +1,26 @@ +global class UsersListResponse { + global UsersListResponse() { } + global Object clone() { } + global String getCacheTs() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global List getMembers() { } + global String getNeeded() { } + global String getOffset() { } + global String getProvided() { } + global Slack.ResponseMetadata getResponseMetadata() { } + global String getWarning() { } + global Boolean isOk() { } + global void setCacheTs(String cacheTs) { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setMembers(List members) { } + global void setNeeded(String needed) { } + global void setOffset(String offset) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ResponseMetadata responseMetadata) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsersLookupByEmailRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersLookupByEmailRequest.cls new file mode 100644 index 0000000..dd90153 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersLookupByEmailRequest.cls @@ -0,0 +1,14 @@ +global class UsersLookupByEmailRequest { + global static Slack.UsersLookupByEmailRequest.Builder builder() { } + global Object clone() { } + global String getEmail() { } + global String toString() { } +global class Builder { + global UsersLookupByEmailRequest.Builder() { } + global Slack.UsersLookupByEmailRequest build() { } + global Object clone() { } + global Slack.UsersLookupByEmailRequest.Builder email(String email) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsersLookupByEmailResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersLookupByEmailResponse.cls new file mode 100644 index 0000000..ff906ef --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersLookupByEmailResponse.cls @@ -0,0 +1,22 @@ +global class UsersLookupByEmailResponse { + global UsersLookupByEmailResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.ResponseMetadata getResponseMetadata() { } + global Slack.User getUser() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ResponseMetadata responseMetadata) { } + global void setUser(Slack.User user) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsersProfileGetRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersProfileGetRequest.cls new file mode 100644 index 0000000..5431418 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersProfileGetRequest.cls @@ -0,0 +1,16 @@ +global class UsersProfileGetRequest { + global static Slack.UsersProfileGetRequest.Builder builder() { } + global Object clone() { } + global String getUser() { } + global Boolean isIncludeLabels() { } + global String toString() { } +global class Builder { + global UsersProfileGetRequest.Builder() { } + global Slack.UsersProfileGetRequest build() { } + global Object clone() { } + global Slack.UsersProfileGetRequest.Builder includeLabels(Boolean includeLabels) { } + global Slack.UsersProfileGetRequest.Builder user(String user) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsersProfileGetResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersProfileGetResponse.cls new file mode 100644 index 0000000..1741f00 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersProfileGetResponse.cls @@ -0,0 +1,18 @@ +global class UsersProfileGetResponse { + global UsersProfileGetResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsersProfileSetRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersProfileSetRequest.cls new file mode 100644 index 0000000..170eae2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersProfileSetRequest.cls @@ -0,0 +1,18 @@ +global class UsersProfileSetRequest { + global static Slack.UsersProfileSetRequest.Builder builder() { } + global Object clone() { } + global String getName() { } + global String getUser() { } + global String getValue() { } + global String toString() { } +global class Builder { + global UsersProfileSetRequest.Builder() { } + global Slack.UsersProfileSetRequest build() { } + global Object clone() { } + global Slack.UsersProfileSetRequest.Builder name(String name) { } + global Slack.UsersProfileSetRequest.Builder user(String user) { } + global Slack.UsersProfileSetRequest.Builder value(String value) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsersProfileSetResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersProfileSetResponse.cls new file mode 100644 index 0000000..83b09f0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersProfileSetResponse.cls @@ -0,0 +1,20 @@ +global class UsersProfileSetResponse { + global UsersProfileSetResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getUsername() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setUsername(String username) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsersSetActiveRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersSetActiveRequest.cls new file mode 100644 index 0000000..712a6c2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersSetActiveRequest.cls @@ -0,0 +1,12 @@ +global class UsersSetActiveRequest { + global static Slack.UsersSetActiveRequest.Builder builder() { } + global Object clone() { } + global String toString() { } +global class Builder { + global UsersSetActiveRequest.Builder() { } + global Slack.UsersSetActiveRequest build() { } + global Object clone() { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsersSetActiveResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersSetActiveResponse.cls new file mode 100644 index 0000000..a14f7e9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersSetActiveResponse.cls @@ -0,0 +1,18 @@ +global class UsersSetActiveResponse { + global UsersSetActiveResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsersSetPresenceRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersSetPresenceRequest.cls new file mode 100644 index 0000000..1be619f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersSetPresenceRequest.cls @@ -0,0 +1,14 @@ +global class UsersSetPresenceRequest { + global static Slack.UsersSetPresenceRequest.Builder builder() { } + global Object clone() { } + global String getPresence() { } + global String toString() { } +global class Builder { + global UsersSetPresenceRequest.Builder() { } + global Slack.UsersSetPresenceRequest build() { } + global Object clone() { } + global Slack.UsersSetPresenceRequest.Builder presence(String presence) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/UsersSetPresenceResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersSetPresenceResponse.cls new file mode 100644 index 0000000..782da54 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/UsersSetPresenceResponse.cls @@ -0,0 +1,18 @@ +global class UsersSetPresenceResponse { + global UsersSetPresenceResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/View.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/View.cls new file mode 100644 index 0000000..d21a1fc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/View.cls @@ -0,0 +1,10 @@ +global class View { + global View() { } + global Object clone() { } + global String getExternalId() { } + global String getId() { } + global String getTeamId() { } + global void setId(String id) { } + global void setTeamId(String teamId) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ViewContext.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ViewContext.cls new file mode 100644 index 0000000..cf1f578 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ViewContext.cls @@ -0,0 +1,18 @@ +global class ViewContext { + global Object clone() { } + global String getHash() { } + global String getId() { } + global String getPreviousViewId() { } + global String getType() { } +global class Builder { + global ViewContext.Builder() { } + global Slack.ViewContext build() { } + global Object clone() { } + global Slack.ViewContext.Builder hash(String hash) { } + global Slack.ViewContext.Builder id(String id) { } + global Slack.ViewContext.Builder previousViewId(String previousViewId) { } + global Slack.ViewContext.Builder type(String type) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ViewReference.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ViewReference.cls new file mode 100644 index 0000000..6a7a691 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ViewReference.cls @@ -0,0 +1,9 @@ +global class ViewReference { + global Object clone() { } + global Boolean equals(Object o) { } + global Object getParameter(String name) { } + global static Slack.ViewReference getViewByName(String developerName) { } + global String getViewName() { } + global void setParameter(String name, Object value) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ViewsOpenRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ViewsOpenRequest.cls new file mode 100644 index 0000000..731864a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ViewsOpenRequest.cls @@ -0,0 +1,15 @@ +global class ViewsOpenRequest { + global static Slack.ViewsOpenRequest.Builder builder() { } + global Object clone() { } + global String getTriggerId() { } + global String toString() { } +global class Builder { + global ViewsOpenRequest.Builder() { } + global Slack.ViewsOpenRequest build() { } + global Object clone() { } + global Slack.ViewsOpenRequest.Builder triggerId(String triggerId) { } + global Slack.ViewsOpenRequest.Builder view(Slack.ModalView view) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ViewsOpenResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ViewsOpenResponse.cls new file mode 100644 index 0000000..7c2b697 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ViewsOpenResponse.cls @@ -0,0 +1,20 @@ +global class ViewsOpenResponse { + global ViewsOpenResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.ErrorResponseMetadata getResponseMetadata() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ErrorResponseMetadata responseMetadata) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ViewsPublishRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ViewsPublishRequest.cls new file mode 100644 index 0000000..c60b1f6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ViewsPublishRequest.cls @@ -0,0 +1,17 @@ +global class ViewsPublishRequest { + global static Slack.ViewsPublishRequest.Builder builder() { } + global Object clone() { } + global String getHash() { } + global String getUserId() { } + global String toString() { } +global class Builder { + global ViewsPublishRequest.Builder() { } + global Slack.ViewsPublishRequest build() { } + global Object clone() { } + global Slack.ViewsPublishRequest.Builder hash(String hash) { } + global Slack.ViewsPublishRequest.Builder userId(String userId) { } + global Slack.ViewsPublishRequest.Builder view(Slack.HomeView view) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ViewsPublishResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ViewsPublishResponse.cls new file mode 100644 index 0000000..0825b17 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ViewsPublishResponse.cls @@ -0,0 +1,20 @@ +global class ViewsPublishResponse { + global ViewsPublishResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.ErrorResponseMetadata getResponseMetadata() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ErrorResponseMetadata responseMetadata) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ViewsPushRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ViewsPushRequest.cls new file mode 100644 index 0000000..affc790 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ViewsPushRequest.cls @@ -0,0 +1,15 @@ +global class ViewsPushRequest { + global static Slack.ViewsPushRequest.Builder builder() { } + global Object clone() { } + global String getTriggerId() { } + global String toString() { } +global class Builder { + global ViewsPushRequest.Builder() { } + global Slack.ViewsPushRequest build() { } + global Object clone() { } + global Slack.ViewsPushRequest.Builder triggerId(String triggerId) { } + global Slack.ViewsPushRequest.Builder view(Slack.ModalView view) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ViewsPushResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ViewsPushResponse.cls new file mode 100644 index 0000000..e016ffd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ViewsPushResponse.cls @@ -0,0 +1,20 @@ +global class ViewsPushResponse { + global ViewsPushResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.ErrorResponseMetadata getResponseMetadata() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ErrorResponseMetadata responseMetadata) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ViewsUpdateRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ViewsUpdateRequest.cls new file mode 100644 index 0000000..3b16cfc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ViewsUpdateRequest.cls @@ -0,0 +1,19 @@ +global class ViewsUpdateRequest { + global static Slack.ViewsUpdateRequest.Builder builder() { } + global Object clone() { } + global String getExternalId() { } + global String getHash() { } + global String getViewId() { } + global String toString() { } +global class Builder { + global ViewsUpdateRequest.Builder() { } + global Slack.ViewsUpdateRequest build() { } + global Object clone() { } + global Slack.ViewsUpdateRequest.Builder externalId(String externalId) { } + global Slack.ViewsUpdateRequest.Builder hash(String hash) { } + global Slack.ViewsUpdateRequest.Builder view(Slack.ModalView view) { } + global Slack.ViewsUpdateRequest.Builder viewId(String viewId) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/ViewsUpdateResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/ViewsUpdateResponse.cls new file mode 100644 index 0000000..c67fdc4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/ViewsUpdateResponse.cls @@ -0,0 +1,20 @@ +global class ViewsUpdateResponse { + global ViewsUpdateResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global Slack.ErrorResponseMetadata getResponseMetadata() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setResponseMetadata(Slack.ErrorResponseMetadata responseMetadata) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/WarningResponseMetadata.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/WarningResponseMetadata.cls new file mode 100644 index 0000000..814b6f3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/WarningResponseMetadata.cls @@ -0,0 +1,8 @@ +global class WarningResponseMetadata { + global WarningResponseMetadata() { } + global Object clone() { } + global List getWarnings() { } + global void setWarnings(List warnings) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/WorkflowStepInput.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/WorkflowStepInput.cls new file mode 100644 index 0000000..4202a38 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/WorkflowStepInput.cls @@ -0,0 +1,12 @@ +global class WorkflowStepInput { + global WorkflowStepInput() { } + global Object clone() { } + global Boolean getSkipVariableReplacement() { } + global Object getValue() { } + global Map getVariables() { } + global void setSkipVariableReplacement(Boolean skipVariableReplacement) { } + global void setValue(Object value) { } + global void setVariables(Map variables) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/WorkflowStepOutput.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/WorkflowStepOutput.cls new file mode 100644 index 0000000..49a9606 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/WorkflowStepOutput.cls @@ -0,0 +1,12 @@ +global class WorkflowStepOutput { + global WorkflowStepOutput() { } + global Object clone() { } + global String getLabel() { } + global String getName() { } + global String getType() { } + global void setLabel(String label) { } + global void setName(String name) { } + global void setType(String type) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/WorkflowsStepCompletedRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/WorkflowsStepCompletedRequest.cls new file mode 100644 index 0000000..592dfc6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/WorkflowsStepCompletedRequest.cls @@ -0,0 +1,18 @@ +global class WorkflowsStepCompletedRequest { + global static Slack.WorkflowsStepCompletedRequest.Builder builder() { } + global Object clone() { } + global Map getOutputs() { } + global String getOutputsAsString() { } + global String getWorkflowStepExecuteId() { } + global String toString() { } +global class Builder { + global WorkflowsStepCompletedRequest.Builder() { } + global Slack.WorkflowsStepCompletedRequest build() { } + global Object clone() { } + global Slack.WorkflowsStepCompletedRequest.Builder outputs(Map outputs) { } + global Slack.WorkflowsStepCompletedRequest.Builder outputsAsString(String outputsAsString) { } + global Slack.WorkflowsStepCompletedRequest.Builder workflowStepExecuteId(String workflowStepExecuteId) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/WorkflowsStepCompletedResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/WorkflowsStepCompletedResponse.cls new file mode 100644 index 0000000..ed11fce --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/WorkflowsStepCompletedResponse.cls @@ -0,0 +1,18 @@ +global class WorkflowsStepCompletedResponse { + global WorkflowsStepCompletedResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/WorkflowsStepFailedRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/WorkflowsStepFailedRequest.cls new file mode 100644 index 0000000..4ee593c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/WorkflowsStepFailedRequest.cls @@ -0,0 +1,16 @@ +global class WorkflowsStepFailedRequest { + global static Slack.WorkflowsStepFailedRequest.Builder builder() { } + global Object clone() { } + global Map getError() { } + global String getWorkflowStepExecuteId() { } + global String toString() { } +global class Builder { + global WorkflowsStepFailedRequest.Builder() { } + global Slack.WorkflowsStepFailedRequest build() { } + global Object clone() { } + global Slack.WorkflowsStepFailedRequest.Builder error(Map error) { } + global Slack.WorkflowsStepFailedRequest.Builder workflowStepExecuteId(String workflowStepExecuteId) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/WorkflowsStepFailedResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/WorkflowsStepFailedResponse.cls new file mode 100644 index 0000000..9cdd6cd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/WorkflowsStepFailedResponse.cls @@ -0,0 +1,18 @@ +global class WorkflowsStepFailedResponse { + global WorkflowsStepFailedResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/WorkflowsUpdateStepRequest.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/WorkflowsUpdateStepRequest.cls new file mode 100644 index 0000000..b6119af --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/WorkflowsUpdateStepRequest.cls @@ -0,0 +1,26 @@ +global class WorkflowsUpdateStepRequest { + global static Slack.WorkflowsUpdateStepRequest.Builder builder() { } + global Object clone() { } + global Map getInputs() { } + global String getInputsAsString() { } + global List getOutputs() { } + global String getOutputsAsString() { } + global String getStepImageUrl() { } + global String getStepName() { } + global String getWorkflowStepEditId() { } + global String toString() { } +global class Builder { + global WorkflowsUpdateStepRequest.Builder() { } + global Slack.WorkflowsUpdateStepRequest build() { } + global Object clone() { } + global Slack.WorkflowsUpdateStepRequest.Builder inputs(Map inputs) { } + global Slack.WorkflowsUpdateStepRequest.Builder inputsAsString(String inputsAsString) { } + global Slack.WorkflowsUpdateStepRequest.Builder outputs(List outputs) { } + global Slack.WorkflowsUpdateStepRequest.Builder outputsAsString(String outputsAsString) { } + global Slack.WorkflowsUpdateStepRequest.Builder stepImageUrl(String stepImageUrl) { } + global Slack.WorkflowsUpdateStepRequest.Builder stepName(String stepName) { } + global Slack.WorkflowsUpdateStepRequest.Builder workflowStepEditId(String workflowStepEditId) { } + +} + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Slack/WorkflowsUpdateStepResponse.cls b/.sfdx/tools/246/StandardApexLibrary/Slack/WorkflowsUpdateStepResponse.cls new file mode 100644 index 0000000..d10a0ba --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Slack/WorkflowsUpdateStepResponse.cls @@ -0,0 +1,18 @@ +global class WorkflowsUpdateStepResponse { + global WorkflowsUpdateStepResponse() { } + global Object clone() { } + global String getError() { } + global Map> getHttpResponseHeaders() { } + global String getNeeded() { } + global String getProvided() { } + global String getWarning() { } + global Boolean isOk() { } + global void setError(String error) { } + global void setHttpResponseHeaders(Map> httpResponseHeaders) { } + global void setNeeded(String needed) { } + global void setOk(Boolean ok) { } + global void setProvided(String provided) { } + global void setWarning(String warning) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Support/EmailTemplateSelector.cls b/.sfdx/tools/246/StandardApexLibrary/Support/EmailTemplateSelector.cls new file mode 100644 index 0000000..8e108df --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Support/EmailTemplateSelector.cls @@ -0,0 +1,4 @@ +global interface EmailTemplateSelector { + Id getDefaultEmailTemplateId(Id param0); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Support/EmailToCaseHandler.cls b/.sfdx/tools/246/StandardApexLibrary/Support/EmailToCaseHandler.cls new file mode 100644 index 0000000..e264a53 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Support/EmailToCaseHandler.cls @@ -0,0 +1,5 @@ +global class EmailToCaseHandler { + global EmailToCaseHandler() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Support/MilestoneTriggerTimeCalculator.cls b/.sfdx/tools/246/StandardApexLibrary/Support/MilestoneTriggerTimeCalculator.cls new file mode 100644 index 0000000..11c493e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Support/MilestoneTriggerTimeCalculator.cls @@ -0,0 +1,4 @@ +global interface MilestoneTriggerTimeCalculator { + Integer calculateMilestoneTriggerTime(String param0, String param1); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Support/WorkCapacityCalculation.cls b/.sfdx/tools/246/StandardApexLibrary/Support/WorkCapacityCalculation.cls new file mode 100644 index 0000000..c5c2593 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Support/WorkCapacityCalculation.cls @@ -0,0 +1,7 @@ +global class WorkCapacityCalculation { + global WorkCapacityCalculation() { } + global Support.WorkCapacityDuration calculateActualUsage(Support.WorkCapacityInfo inputWorkCapacity) { } + global Support.WorkCapacityDuration calculateEstimatedUsage(Support.WorkCapacityInfo inputWorkCapacity) { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Support/WorkCapacityDuration.cls b/.sfdx/tools/246/StandardApexLibrary/Support/WorkCapacityDuration.cls new file mode 100644 index 0000000..cc312c2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Support/WorkCapacityDuration.cls @@ -0,0 +1,8 @@ +global class WorkCapacityDuration { + global List dates; + global List durations; + global List serviceAppointmentIds; + global WorkCapacityDuration() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Support/WorkCapacityInfo.cls b/.sfdx/tools/246/StandardApexLibrary/Support/WorkCapacityInfo.cls new file mode 100644 index 0000000..4c0bc28 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Support/WorkCapacityInfo.cls @@ -0,0 +1,6 @@ +global class WorkCapacityInfo { + global List serviceAppointmentIds; + global WorkCapacityInfo(List serviceAppointmentIds) { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/AccessLevel.cls b/.sfdx/tools/246/StandardApexLibrary/System/AccessLevel.cls new file mode 100644 index 0000000..d594c57 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/AccessLevel.cls @@ -0,0 +1,6 @@ +global class AccessLevel { + global static System.AccessLevel SYSTEM_MODE; + global static System.AccessLevel USER_MODE; + global Object clone() { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/AccessType.cls b/.sfdx/tools/246/StandardApexLibrary/System/AccessType.cls new file mode 100644 index 0000000..cd47efe --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/AccessType.cls @@ -0,0 +1,6 @@ +global enum AccessType { +CREATABLE, +READABLE, +UPDATABLE, +UPSERTABLE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Address.cls b/.sfdx/tools/246/StandardApexLibrary/System/Address.cls new file mode 100644 index 0000000..df59161 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Address.cls @@ -0,0 +1,23 @@ +global class Address { + global String city; + global String country; + global String countrycode; + global String geocodeaccuracy; + global String postalcode; + global String state; + global String statecode; + global String street; + global Address() { } + global String getCity() { } + global String getCountry() { } + global String getCountryCode() { } + global Double getDistance(System.Location other, String unit) { } + global String getGeocodeAccuracy() { } + global Double getLatitude() { } + global Double getLongitude() { } + global String getPostalCode() { } + global String getState() { } + global String getStateCode() { } + global String getStreet() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Answers.cls b/.sfdx/tools/246/StandardApexLibrary/System/Answers.cls new file mode 100644 index 0000000..1ac105f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Answers.cls @@ -0,0 +1,7 @@ +global class Answers { + global Answers() { } + global Object clone() { } + global static List findSimilar(SObject question) { } + global static void setBestReply(String questionId, String bestReplyId) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/ApexPages.cls b/.sfdx/tools/246/StandardApexLibrary/System/ApexPages.cls new file mode 100644 index 0000000..0182027 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/ApexPages.cls @@ -0,0 +1,9 @@ +global class ApexPages { + global static void addMessage(ApexPages.Message message) { } + global static void addMessages(Object ex) { } + global static System.PageReference currentPage() { } + global static List getMessages() { } + global static Boolean hasMessages(ApexPages.Severity severity) { } + global static Boolean hasMessages() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/AppExchangeTrialTemplate.cls b/.sfdx/tools/246/StandardApexLibrary/System/AppExchangeTrialTemplate.cls new file mode 100644 index 0000000..fc42b5d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/AppExchangeTrialTemplate.cls @@ -0,0 +1,9 @@ +global class AppExchangeTrialTemplate { + global Object clone() { } + global Datetime getCreatedDate() { } + global String getId() { } + global Datetime getLastModifiedDate() { } + global String getName() { } + global String getStatus() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/AppExchangeUserPerms.cls b/.sfdx/tools/246/StandardApexLibrary/System/AppExchangeUserPerms.cls new file mode 100644 index 0000000..9a93ae6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/AppExchangeUserPerms.cls @@ -0,0 +1,6 @@ +global class AppExchangeUserPerms { + global Object clone() { } + global Boolean getCanEditBilling() { } + global Boolean getCanInstall() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Approval.cls b/.sfdx/tools/246/StandardApexLibrary/System/Approval.cls new file mode 100644 index 0000000..57af1e2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Approval.cls @@ -0,0 +1,23 @@ +global class Approval { + global static Boolean isLocked(Id id) { } + global static Map isLocked(List ids) { } + global static Map isLocked(List sobjects) { } + global static Boolean isLocked(SObject sobject) { } + global static Approval.LockResult lock(Id id, Boolean allOrNothing) { } + global static List lock(List ids, Boolean allOrNothing) { } + global static List lock(List sobjects, Boolean allOrNothing) { } + global static Approval.LockResult lock(SObject sobject, Boolean allOrNothing) { } + global static Approval.LockResult lock(Id id) { } + global static List lock(List ids) { } + global static List lock(List sobjects) { } + global static Approval.LockResult lock(SObject sobject) { } + global static Approval.UnlockResult unlock(Id id, Boolean allOrNothing) { } + global static List unlock(List ids, Boolean allOrNothing) { } + global static List unlock(List sobjects, Boolean allOrNothing) { } + global static Approval.UnlockResult unlock(SObject sobject, Boolean allOrNothing) { } + global static Approval.UnlockResult unlock(Id id) { } + global static List unlock(List ids) { } + global static List unlock(List sobjects) { } + global static Approval.UnlockResult unlock(SObject sobject) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Assert.cls b/.sfdx/tools/246/StandardApexLibrary/System/Assert.cls new file mode 100644 index 0000000..a710b46 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Assert.cls @@ -0,0 +1,23 @@ +global class Assert { + global Assert() { } + global static void areEqual(Object expected, Object actual, String msg) { } + global static void areEqual(Object expected, Object actual) { } + global static void areNotEqual(Object notExpected, Object actual, String msg) { } + global static void areNotEqual(Object notExpected, Object actual) { } + global Object clone() { } + global static void fail(String msg) { } + global static void fail() { } + global static void isFalse(Boolean condition, String msg) { } + global static void isFalse(Boolean condition) { } + global static void isInstanceOfType(Object instance, System.Type expectedType, String msg) { } + global static void isInstanceOfType(Object instance, System.Type expectedType) { } + global static void isNotInstanceOfType(Object instance, System.Type notExpectedType, String msg) { } + global static void isNotInstanceOfType(Object instance, System.Type notExpectedType) { } + global static void isNotNull(Object value, String msg) { } + global static void isNotNull(Object value) { } + global static void isNull(Object value, String msg) { } + global static void isNull(Object value) { } + global static void isTrue(Boolean condition, String msg) { } + global static void isTrue(Boolean condition) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/AssertException.cls b/.sfdx/tools/246/StandardApexLibrary/System/AssertException.cls new file mode 100644 index 0000000..0592e01 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/AssertException.cls @@ -0,0 +1,15 @@ +global class AssertException extends Exception { + global AssertException(String param0, Exception param1) { } + global AssertException(Exception param0) { } + global AssertException(String param0) { } + global AssertException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/AsyncException.cls b/.sfdx/tools/246/StandardApexLibrary/System/AsyncException.cls new file mode 100644 index 0000000..fa0bd0d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/AsyncException.cls @@ -0,0 +1,15 @@ +global class AsyncException extends Exception { + global AsyncException(String param0, Exception param1) { } + global AsyncException(Exception param0) { } + global AsyncException(String param0) { } + global AsyncException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/AsyncInfo.cls b/.sfdx/tools/246/StandardApexLibrary/System/AsyncInfo.cls new file mode 100644 index 0000000..b05824e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/AsyncInfo.cls @@ -0,0 +1,9 @@ +global class AsyncInfo { + global AsyncInfo() { } + global Object clone() { } + global static Integer getCurrentQueueableStackDepth() { } + global static Integer getMaximumQueueableStackDepth() { } + global static Integer getMinimumQueueableDelayInMinutes() { } + global static Boolean hasMaxStackDepth() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/AsyncOptions.cls b/.sfdx/tools/246/StandardApexLibrary/System/AsyncOptions.cls new file mode 100644 index 0000000..d58f0de --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/AsyncOptions.cls @@ -0,0 +1,7 @@ +global class AsyncOptions { + global Integer MaximumQueueableStackDepth; + global Integer MinimumQueueableDelayInMinutes; + global AsyncOptions() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Aura.cls b/.sfdx/tools/246/StandardApexLibrary/System/Aura.cls new file mode 100644 index 0000000..64dfcb1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Aura.cls @@ -0,0 +1,4 @@ +global class Aura { + global static void redirect(Object pageReference) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/BcpProvisionService.cls b/.sfdx/tools/246/StandardApexLibrary/System/BcpProvisionService.cls new file mode 100644 index 0000000..af244b8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/BcpProvisionService.cls @@ -0,0 +1,6 @@ +global class BcpProvisionService { + global BcpProvisionService() { } + global Object clone() { } + global static void enableC2C() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/BigObjectException.cls b/.sfdx/tools/246/StandardApexLibrary/System/BigObjectException.cls new file mode 100644 index 0000000..6764d1b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/BigObjectException.cls @@ -0,0 +1,15 @@ +global class BigObjectException extends Exception { + global BigObjectException(String param0, Exception param1) { } + global BigObjectException(Exception param0) { } + global BigObjectException(String param0) { } + global BigObjectException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/BusinessHours.cls b/.sfdx/tools/246/StandardApexLibrary/System/BusinessHours.cls new file mode 100644 index 0000000..816144a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/BusinessHours.cls @@ -0,0 +1,10 @@ +global class BusinessHours { + global BusinessHours() { } + global static Datetime add(Id businessHoursId, Datetime startDate, Long interval) { } + global static Datetime addGmt(Id businessHoursId, Datetime startDate, Long interval) { } + global Object clone() { } + global static Long diff(String businessHoursId, Datetime startDate, Datetime endDate) { } + global static Boolean isWithin(String businessHoursId, Datetime targetDate) { } + global static Datetime nextStartDate(Id businessHoursId, Datetime targetDate) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Busop.cls b/.sfdx/tools/246/StandardApexLibrary/System/Busop.cls new file mode 100644 index 0000000..d4e33da --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Busop.cls @@ -0,0 +1,12 @@ +global class Busop { + global static void asyncUpdatePartnerPackageBooleanParam(String targetUserName, String paramName, Boolean value) { } + global static void asyncUpdatePartnerPackageDateParam(String targetUserName, String paramName, Date value) { } + global static void asyncUpdatePartnerPackageIntegerParam(String targetUserName, String paramName, Decimal value) { } + global static String getOrgInfo(String orgId) { } + global static String getPackageVersionString(String allPackageVersionId) { } + global static Boolean isSandbox(String orgId) { } + global static void refreshPackageLicenses(String lmoOrgId, String allPackageId) { } + global static void savePackage(String packageId, String fieldName) { } + global static void updatePartnerLicense(String targetUserName, String newStatus, Integer newNumberOfUsers, Date newExpirationDate, Date provisioningDate) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Callable.cls b/.sfdx/tools/246/StandardApexLibrary/System/Callable.cls new file mode 100644 index 0000000..4307aa9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Callable.cls @@ -0,0 +1,4 @@ +global interface Callable { + Object call(String param0, Map param1); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/CalloutException.cls b/.sfdx/tools/246/StandardApexLibrary/System/CalloutException.cls new file mode 100644 index 0000000..f4c9a9c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/CalloutException.cls @@ -0,0 +1,15 @@ +global class CalloutException extends Exception { + global CalloutException(String param0, Exception param1) { } + global CalloutException(Exception param0) { } + global CalloutException(String param0) { } + global CalloutException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/CanvasException.cls b/.sfdx/tools/246/StandardApexLibrary/System/CanvasException.cls new file mode 100644 index 0000000..696a319 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/CanvasException.cls @@ -0,0 +1,15 @@ +global class CanvasException extends Exception { + global CanvasException(String param0, Exception param1) { } + global CanvasException(Exception param0) { } + global CanvasException(String param0) { } + global CanvasException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Cases.cls b/.sfdx/tools/246/StandardApexLibrary/System/Cases.cls new file mode 100644 index 0000000..fd9f8fe --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Cases.cls @@ -0,0 +1,8 @@ +global class Cases { + global Cases() { } + global Object clone() { } + global static String generateThreadingMessageId(Id caseId) { } + global static Id getCaseIdFromEmailHeaders(List headers) { } + global static Id getCaseIdFromEmailThreadId(String emailThreadId) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Communities.cls b/.sfdx/tools/246/StandardApexLibrary/System/Communities.cls new file mode 100644 index 0000000..1511232 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Communities.cls @@ -0,0 +1,11 @@ +global class Communities { + global Communities() { } + global Object clone() { } + global static System.PageReference communitiesLanding(String startUrl) { } + global static System.PageReference communitiesLanding() { } + global static System.PageReference forwardToAuthPage(String startUrl) { } + global static String getCSS() { } + global static System.PageReference internalLogin(String startUrl) { } + global static System.PageReference login(String username, String password, String startUrl) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Comparable.cls b/.sfdx/tools/246/StandardApexLibrary/System/Comparable.cls new file mode 100644 index 0000000..3a78df4 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Comparable.cls @@ -0,0 +1,4 @@ +global interface Comparable { + Integer compareTo(Object param0); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Continuation.cls b/.sfdx/tools/246/StandardApexLibrary/System/Continuation.cls new file mode 100644 index 0000000..aaf6494 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Continuation.cls @@ -0,0 +1,12 @@ +global class Continuation { + global String ContinuationMethod; + global Integer Timeout; + global Object state; + global Continuation(Integer timeoutInSecs) { } + global String addHttpRequest(System.HttpRequest request) { } + global Object clone() { } + global Map getRequests() { } + global static System.HttpResponse getResponse(String label) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Cookie.cls b/.sfdx/tools/246/StandardApexLibrary/System/Cookie.cls new file mode 100644 index 0000000..8078317 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Cookie.cls @@ -0,0 +1,12 @@ +global class Cookie { + global Cookie(String name, String value, String path, Integer maxAge, Boolean isSecure, String sameSite) { } + global Cookie(String name, String value, String path, Integer maxAge, Boolean isSecure) { } + global String getDomain() { } + global Integer getMaxAge() { } + global String getName() { } + global String getPath() { } + global String getSameSite() { } + global String getValue() { } + global Boolean isSecure() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Crypto.cls b/.sfdx/tools/246/StandardApexLibrary/System/Crypto.cls new file mode 100644 index 0000000..1c4fb9b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Crypto.cls @@ -0,0 +1,21 @@ +global class Crypto { + global Crypto() { } + global Object clone() { } + global static Blob decrypt(String algorithmName, Blob secretKey, Blob initializationVector, Blob encryptedData) { } + global static Blob decryptWithManagedIV(String algorithmName, Blob secretKey, Blob encryptedData) { } + global static Blob encrypt(String algorithmName, Blob secretKey, Blob initializationVector, Blob clearData) { } + global static Blob encryptWithManagedIV(String algorithmName, Blob secretKey, Blob clearData) { } + global static Blob generateAesKey(Integer size) { } + global static Blob generateDigest(String algorithmName, Blob input) { } + global static Blob generateMac(String algorithmName, Blob input, Blob privateKey) { } + global static Integer getRandomInteger() { } + global static Long getRandomLong() { } + global static Blob sign(String algorithmName, Blob input, Blob privateKey) { } + global static Blob signWithCertificate(String algorithmName, Blob input, String certDevName) { } + global static void signXml(String algorithmName, dom.XmlNode node, String idAttributeName, String certDevName, dom.XmlNode refChild) { } + global static void signXml(String algorithmName, dom.XmlNode node, String idAttributeName, String certDevName) { } + global static Boolean verify(String algorithmName, Blob data, Blob signature, Blob publicKey) { } + global static Boolean verify(String algorithmName, Blob data, Blob signature, String certDevName) { } + global static Boolean verifyHmac(String algorithmName, Blob data, Blob privateKey, Blob hmacToVerify) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/DataWeaveScriptException.cls b/.sfdx/tools/246/StandardApexLibrary/System/DataWeaveScriptException.cls new file mode 100644 index 0000000..08efdae --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/DataWeaveScriptException.cls @@ -0,0 +1,15 @@ +global class DataWeaveScriptException extends Exception { + global DataWeaveScriptException(String param0, Exception param1) { } + global DataWeaveScriptException(Exception param0) { } + global DataWeaveScriptException(String param0) { } + global DataWeaveScriptException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Database.cls b/.sfdx/tools/246/StandardApexLibrary/System/Database.cls new file mode 100644 index 0000000..6c8958f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Database.cls @@ -0,0 +1,154 @@ +global class Database { + global static Database.LeadConvertResult convertLead(Database.LeadConvert leadConvert, Database.DMLOptions DmlOptions, Object accessLevel) { } + global static Database.LeadConvertResult convertLead(Database.LeadConvert leadConvert, Boolean allOrNothing, Object accessLevel) { } + global static List convertLead(List leadConverts, Database.DMLOptions DmlOptions, Object accessLevel) { } + global static List convertLead(List leadConverts, Boolean allOrNothing, Object accessLevel) { } + global static Database.LeadConvertResult convertLead(Database.LeadConvert leadConvert, Database.DMLOptions DmlOptions || AccessLevel) { } + global static Database.LeadConvertResult convertLead(Database.LeadConvert leadConvert, Boolean allOrNothing) { } + global static List convertLead(List leadConverts, Database.DMLOptions DmlOptions || AccessLevel) { } + global static List convertLead(List leadConverts, Boolean allOrNothing) { } + global static Database.LeadConvertResult convertLead(Database.LeadConvert leadConvert) { } + global static List convertLead(List leadConverts) { } + global static Integer countQuery(String query, Object accessLevel) { } + global static Integer countQuery(String query) { } + global static List countQueryWithBinds(String query, Map bindMap, Object accessLevel) { } + global static Database.DeleteResult delete(Id id, Boolean allOrNothing, Object accessLevel) { } + global static List delete(List ids, Boolean allOrNothing, Object accessLevel) { } + global static List delete(List sobjects, Boolean allOrNothing, Object accessLevel) { } + global static Database.DeleteResult delete(SObject sobject, Boolean allOrNothing, Object accessLevel) { } + global static Database.DeleteResult delete(Id id, Object accessLevel) { } + global static Database.DeleteResult delete(Id id, Boolean allOrNothing) { } + global static List delete(List ids, Object accessLevel) { } + global static List delete(List ids, Boolean allOrNothing) { } + global static List delete(List sobjects, Object accessLevel) { } + global static List delete(List sobjects, Boolean allOrNothing) { } + global static Database.DeleteResult delete(SObject sobject, Object accessLevel) { } + global static Database.DeleteResult delete(SObject sobject, Boolean allOrNothing) { } + global static Database.DeleteResult delete(Id id) { } + global static List delete(List ids) { } + global static List delete(List sobjects) { } + global static Database.DeleteResult delete(SObject sobject) { } + global static List deleteAsync(List sobjects, Object callback, Object accessLevel) { } + global static Database.DeleteResult deleteAsync(SObject sobject, Object callback, Object accessLevel) { } + global static List deleteAsync(List sobjects, Object callback || accessLevel) { } + global static Database.DeleteResult deleteAsync(SObject sobject, Object callback || accessLevel) { } + global static List deleteAsync(List sobjects) { } + global static Database.DeleteResult deleteAsync(SObject sobject) { } + global static List deleteImmediate(List sobjects, Object accessLevel) { } + global static Database.DeleteResult deleteImmediate(SObject sobject, Object accessLevel) { } + global static List deleteImmediate(List sobjects) { } + global static Database.DeleteResult deleteImmediate(SObject sobject) { } + global static List emptyRecycleBin(List ids) { } + global static List emptyRecycleBin(List sobjects) { } + global static Database.EmptyRecycleBinResult emptyRecycleBin(SObject sobject) { } + global static String executeBatch(Object batchable, Integer batchSize) { } + global static String executeBatch(Object batchable) { } + global static Database.DeleteResult getAsyncDeleteResult(Object deleteResult) { } + global static Database.DeleteResult getAsyncDeleteResult(String asyncLocator) { } + global static String getAsyncLocator(Object result) { } + global static Database.SaveResult getAsyncSaveResult(Object saveResult) { } + global static Database.SaveResult getAsyncSaveResult(String asyncLocator) { } + global static Database.GetDeletedResult getDeleted(String sobjectType, Datetime startDate, Datetime endDate) { } + global static Database.QueryLocator getQueryLocator(List queries, Object accessLevel) { } + global static Database.QueryLocator getQueryLocator(String query, Object accessLevel) { } + global static Database.QueryLocator getQueryLocator(List query) { } + global static Database.QueryLocator getQueryLocator(String query) { } + global static Database.QueryLocator getQueryLocatorWithBinds(String query, Map bindMap, Object accessLevel) { } + global static Database.GetUpdatedResult getUpdated(String sobjectType, Datetime startDate, Datetime endDate) { } + global static List insert(List sobjects, Database.DMLOptions DmlOptions, Object accessLevel) { } + global static List insert(List sobjects, Boolean allOrNothing, Object accessLevel) { } + global static Database.SaveResult insert(SObject sobject, Database.DMLOptions DmlOptions, Object accessLevel) { } + global static Database.SaveResult insert(SObject sobject, Boolean allOrNothing, Object accessLevel) { } + global static List insert(List sobjects, Database.DMLOptions DmlOptions) { } + global static List insert(List sobjects, Boolean allOrNothing) { } + global static Database.SaveResult insert(SObject sobject, Database.DMLOptions DmlOptions || AccessLevel) { } + global static Database.SaveResult insert(SObject sobject, Boolean allOrNothing) { } + global static List insert(List sobjects) { } + global static Database.SaveResult insert(SObject sobject) { } + global static List insertAsync(List sobjects, Object callback, Object accessLevel) { } + global static Database.SaveResult insertAsync(SObject sobject, Object callback, Object accessLevel) { } + global static List insertAsync(List sobjects, Object callback || accessLevel) { } + global static Database.SaveResult insertAsync(SObject sobject, Object callback || accessLevel) { } + global static List insertAsync(List sobjects) { } + global static Database.SaveResult insertAsync(SObject sobject) { } + global static List insertImmediate(List sobjects, Object accessLevel) { } + global static Database.SaveResult insertImmediate(SObject sobject, Object accessLevel) { } + global static List insertImmediate(List sobjects) { } + global static Database.SaveResult insertImmediate(SObject sobject) { } + global static Database.MergeResult merge(SObject primary, Id duplicate, Boolean allOrNothing, Object accessLevel) { } + global static List merge(SObject primary, List duplicates, Boolean allOrNothing, Object accessLevel) { } + global static List merge(SObject primary, List duplicates, Boolean allOrNothing, Object accessLevel) { } + global static Database.MergeResult merge(SObject primary, SObject duplicate, Boolean allOrNothing, Object accessLevel) { } + global static Database.MergeResult merge(SObject primary, Id duplicate, Object accessLevel) { } + global static Database.MergeResult merge(SObject primary, Id duplicate, Boolean allOrNothing) { } + global static List merge(SObject primary, List duplicates, Object accessLevel) { } + global static List merge(SObject primary, List duplicates, Boolean allOrNothing) { } + global static List merge(SObject primary, List duplicates, Object accessLevel) { } + global static List merge(SObject primary, List duplicates, Boolean allOrNothing) { } + global static Database.MergeResult merge(SObject primary, SObject duplicate, Object accessLevel) { } + global static Database.MergeResult merge(SObject primary, SObject duplicate, Boolean allOrNothing) { } + global static Database.MergeResult merge(SObject primary, Id duplicate) { } + global static List merge(SObject primary, List duplicates) { } + global static List merge(SObject primary, List duplicates) { } + global static Database.MergeResult merge(SObject primary, SObject duplicate) { } + global static List query(String query, Object accessLevel) { } + global static List query(String query) { } + global static List queryWithBinds(String query, Map bindMap, Object accessLevel) { } + global static void rollback(System.Savepoint savepoint) { } + global static System.Savepoint setSavepoint() { } + global static List treeSave(List sobjects) { } + global static Database.NestedSaveResult treeSave(SObject sobject) { } + global static Database.UndeleteResult undelete(Id id, Boolean allOrNothing, Object accessLevel) { } + global static List undelete(List ids, Boolean allOrNothing, Object accessLevel) { } + global static List undelete(List sobjects, Boolean allOrNothing, Object accessLevel) { } + global static Database.UndeleteResult undelete(SObject sobject, Boolean allOrNothing, Object accessLevel) { } + global static Database.UndeleteResult undelete(Id id, Object accessLevel) { } + global static Database.UndeleteResult undelete(Id id, Boolean allOrNothing) { } + global static List undelete(List ids, Object accessLevel) { } + global static List undelete(List ids, Boolean allOrNothing) { } + global static List undelete(List sobjects, Object accessLevel) { } + global static List undelete(List sobjects, Boolean allOrNothing) { } + global static Database.UndeleteResult undelete(SObject sobject, Object accessLevel) { } + global static Database.UndeleteResult undelete(SObject sobject, Boolean allOrNothing) { } + global static Database.UndeleteResult undelete(Id id) { } + global static List undelete(List ids) { } + global static List undelete(List sobjects) { } + global static Database.UndeleteResult undelete(SObject sobject) { } + global static List update(List sobjects, Database.DMLOptions DmlOptions, Object accessLevel) { } + global static List update(List sobjects, Boolean allOrNothing, Object accessLevel) { } + global static Database.SaveResult update(SObject sobject, Database.DMLOptions DmlOptions, Object accessLevel) { } + global static Database.SaveResult update(SObject sobject, Boolean allOrNothing, Object accessLevel) { } + global static List update(List sobjects, Database.DMLOptions DmlOptions || accessLevel) { } + global static List update(List sobjects, Boolean allOrNothing) { } + global static Database.SaveResult update(SObject sobject, Database.DMLOptions DmlOptions || accessLevel) { } + global static Database.SaveResult update(SObject sobject, Boolean allOrNothing) { } + global static List update(List sobjects) { } + global static Database.SaveResult update(SObject sobject) { } + global static List updateAsync(List sobjects, Object callback, Object accessLevel) { } + global static Database.SaveResult updateAsync(SObject sobject, Object callback, Object accessLevel) { } + global static List updateAsync(List sobjects, Object callback || accessLevel) { } + global static Database.SaveResult updateAsync(SObject sobject, Object callback || accessLevel) { } + global static List updateAsync(List sobjects) { } + global static Database.SaveResult updateAsync(SObject sobject) { } + global static List updateImmediate(List sobjects, Object accessLevel) { } + global static Database.SaveResult updateImmediate(SObject sobject, Object accessLevel) { } + global static List updateImmediate(List sobjects) { } + global static Database.SaveResult updateImmediate(SObject sobject) { } + global static List upsert(List sobjects, Schema.SObjectField field, Boolean allOrNothing, Object accessLevel) { } + global static Database.UpsertResult upsert(SObject sobject, Schema.SObjectField field, Boolean allOrNothing, Object accessLevel) { } + global static List upsert(List sobjects, Boolean allOrNothing, Object accessLevel) { } + global static List upsert(List sobjects, Schema.SObjectField field , Object accessLevel) { } + global static List upsert(List sobjects, Schema.SObjectField field, Boolean allOrNothing) { } + global static Database.UpsertResult upsert(SObject sobject, Boolean allOrNothing, Object accessLevel) { } + global static Database.UpsertResult upsert(SObject sobject, Schema.SObjectField field, Object accessLevel) { } + global static Database.UpsertResult upsert(SObject sobject, Schema.SObjectField field, Boolean allOrNothing) { } + global static List upsert(List sobjects, Object accessLevel) { } + global static List upsert(List sobjects, Boolean allOrNothing) { } + global static List upsert(List sobjects, Schema.SObjectField field) { } + global static Database.UpsertResult upsert(SObject sobject, Object accessLevel) { } + global static Database.UpsertResult upsert(SObject sobject, Boolean allOrNothing) { } + global static Database.UpsertResult upsert(SObject sobject, Schema.SObjectField field) { } + global static List upsert(List sobjects) { } + global static Database.UpsertResult upsert(SObject sobject) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Date.cls b/.sfdx/tools/246/StandardApexLibrary/System/Date.cls new file mode 100644 index 0000000..053289f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Date.cls @@ -0,0 +1,10 @@ +global class Date { + global static Integer daysInMonth(Integer year, Integer month) { } + global static Boolean isLeapYear(Integer year) { } + global static Date newInstance(Integer year, Integer month, Integer day) { } + global static Date parse(String str) { } + global static Date today() { } + global static Date valueOf(Object o) { } + global static Date valueOf(String str) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/DistributedLedgerService.cls b/.sfdx/tools/246/StandardApexLibrary/System/DistributedLedgerService.cls new file mode 100644 index 0000000..4c5f714 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/DistributedLedgerService.cls @@ -0,0 +1,6 @@ +global class DistributedLedgerService { + global DistributedLedgerService() { } + global Object clone() { } + global static void enableC2C() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/DmlException.cls b/.sfdx/tools/246/StandardApexLibrary/System/DmlException.cls new file mode 100644 index 0000000..4da0b19 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/DmlException.cls @@ -0,0 +1,23 @@ +global class DmlException extends Exception { + global DmlException(String param0, Exception param1) { } + global DmlException(Exception param0) { } + global DmlException(String param0) { } + global DmlException() { } + global Exception getCause() { } + global List getDmlFieldNames(Integer index) { } + global List getDmlFields(Integer index) { } + global String getDmlId(Integer index) { } + global Integer getDmlIndex(Integer index) { } + global String getDmlMessage(Integer index) { } + global String getDmlStatusCode(Integer index) { } + global System.StatusCode getDmlType(Integer index) { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global Integer getNumDml() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Domain.cls b/.sfdx/tools/246/StandardApexLibrary/System/Domain.cls new file mode 100644 index 0000000..c725c9e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Domain.cls @@ -0,0 +1,9 @@ +global class Domain { + global Object clone() { } + global System.DomainType getDomainType() { } + global String getMyDomainName() { } + global String getPackageName() { } + global String getSandboxName() { } + global String getSitesSubdomainName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/DomainCreator.cls b/.sfdx/tools/246/StandardApexLibrary/System/DomainCreator.cls new file mode 100644 index 0000000..90333a5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/DomainCreator.cls @@ -0,0 +1,15 @@ +global class DomainCreator { + global DomainCreator() { } + global Object clone() { } + global static String getContentHostname() { } + global static String getExperienceCloudSitesBuilderHostname() { } + global static String getExperienceCloudSitesHostname() { } + global static String getExperienceCloudSitesLivePreviewHostname() { } + global static String getExperienceCloudSitesPreviewHostname() { } + global static String getLightningContainerComponentHostname(String packageName) { } + global static String getLightningHostname() { } + global static String getOrgMyDomainHostname() { } + global static String getSalesforceSitesHostname() { } + global static String getVisualforceHostname(String packageName) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/DomainParser.cls b/.sfdx/tools/246/StandardApexLibrary/System/DomainParser.cls new file mode 100644 index 0000000..b38dcb5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/DomainParser.cls @@ -0,0 +1,7 @@ +global class DomainParser { + global DomainParser() { } + global Object clone() { } + global static System.Domain parse(String hostname) { } + global static System.Domain parse(System.Url url) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/DomainType.cls b/.sfdx/tools/246/StandardApexLibrary/System/DomainType.cls new file mode 100644 index 0000000..2d7e940 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/DomainType.cls @@ -0,0 +1,15 @@ +global enum DomainType { +CMS_DOMAIN, +CONTENT_DOMAIN, +CUSTOMER_360_ADMIN_DOMAIN, +CUSTOMER_360_DOMAIN, +EXPERIENCE_CLOUD_SITES_BUILDER_DOMAIN, +EXPERIENCE_CLOUD_SITES_DOMAIN, +EXPERIENCE_CLOUD_SITES_LIVE_PREVIEW_DOMAIN, +EXPERIENCE_CLOUD_SITES_PREVIEW_DOMAIN, +LIGHTNING_CONTAINER_COMPONENT_DOMAIN, +LIGHTNING_DOMAIN, +ORG_MY_DOMAIN, +SALESFORCE_SITES_DOMAIN, +VISUALFORCE_DOMAIN +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Dynamic.cls b/.sfdx/tools/246/StandardApexLibrary/System/Dynamic.cls new file mode 100644 index 0000000..6d17ca0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Dynamic.cls @@ -0,0 +1,9 @@ +global class Dynamic { + global Dynamic() { } + global Object clone() { } + global static dynamic.Inst env(String language) { } + global static dynamic.Inst env() { } + global static Object eval(String language, String eval) { } + global static Object eval(String eval) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/EmailException.cls b/.sfdx/tools/246/StandardApexLibrary/System/EmailException.cls new file mode 100644 index 0000000..4086f3b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/EmailException.cls @@ -0,0 +1,23 @@ +global class EmailException extends Exception { + global EmailException(String param0, Exception param1) { } + global EmailException(Exception param0) { } + global EmailException(String param0) { } + global EmailException() { } + global Exception getCause() { } + global List getDmlFieldNames(Integer index) { } + global List getDmlFields(Integer index) { } + global String getDmlId(Integer index) { } + global Integer getDmlIndex(Integer index) { } + global String getDmlMessage(Integer index) { } + global String getDmlStatusCode(Integer index) { } + global System.StatusCode getDmlType(Integer index) { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global Integer getNumDml() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/EmailMessages.cls b/.sfdx/tools/246/StandardApexLibrary/System/EmailMessages.cls new file mode 100644 index 0000000..a3ebee6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/EmailMessages.cls @@ -0,0 +1,7 @@ +global class EmailMessages { + global EmailMessages() { } + global Object clone() { } + global static String getFormattedThreadingToken(Id recordId) { } + global static Id getRecordIdFromEmail(String subject, String textBody, String htmlBody) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/EmailTemplateRenderException.cls b/.sfdx/tools/246/StandardApexLibrary/System/EmailTemplateRenderException.cls new file mode 100644 index 0000000..6528bcd --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/EmailTemplateRenderException.cls @@ -0,0 +1,15 @@ +global class EmailTemplateRenderException extends Exception { + global EmailTemplateRenderException(String param0, Exception param1) { } + global EmailTemplateRenderException(Exception param0) { } + global EmailTemplateRenderException(String param0) { } + global EmailTemplateRenderException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/EncodingUtil.cls b/.sfdx/tools/246/StandardApexLibrary/System/EncodingUtil.cls new file mode 100644 index 0000000..6b46f5c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/EncodingUtil.cls @@ -0,0 +1,11 @@ +global class EncodingUtil { + global EncodingUtil() { } + global static Blob base64Decode(String s) { } + global static String base64Encode(Blob s) { } + global Object clone() { } + global static Blob convertFromHex(String input) { } + global static String convertToHex(Blob s) { } + global static String urlDecode(String s, String enc) { } + global static String urlEncode(String s, String enc) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/EventBus.cls b/.sfdx/tools/246/StandardApexLibrary/System/EventBus.cls new file mode 100644 index 0000000..3467b43 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/EventBus.cls @@ -0,0 +1,8 @@ +global class EventBus { + global static String getOperationId(Object result) { } + global static List publish(List sobjects, Object callback) { } + global static Database.SaveResult publish(SObject sobject, Object callback) { } + global static List publish(List sobjects) { } + global static Database.SaveResult publish(SObject sobject) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/EventObjectException.cls b/.sfdx/tools/246/StandardApexLibrary/System/EventObjectException.cls new file mode 100644 index 0000000..ac515a5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/EventObjectException.cls @@ -0,0 +1,15 @@ +global class EventObjectException extends Exception { + global EventObjectException(String param0, Exception param1) { } + global EventObjectException(Exception param0) { } + global EventObjectException(String param0) { } + global EventObjectException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/ExternalObjectException.cls b/.sfdx/tools/246/StandardApexLibrary/System/ExternalObjectException.cls new file mode 100644 index 0000000..72ed3c7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/ExternalObjectException.cls @@ -0,0 +1,15 @@ +global class ExternalObjectException extends Exception { + global ExternalObjectException(String param0, Exception param1) { } + global ExternalObjectException(Exception param0) { } + global ExternalObjectException(String param0) { } + global ExternalObjectException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/FeatureManagement.cls b/.sfdx/tools/246/StandardApexLibrary/System/FeatureManagement.cls new file mode 100644 index 0000000..9ecac77 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/FeatureManagement.cls @@ -0,0 +1,13 @@ +global class FeatureManagement { + global FeatureManagement() { } + global static void changeProtection(String apiName, String typeApiName, String protection) { } + global static Boolean checkPackageBooleanValue(String apiName) { } + global static Date checkPackageDateValue(String apiName) { } + global static Integer checkPackageIntegerValue(String apiName) { } + global static Boolean checkPermission(String apiName) { } + global Object clone() { } + global static void setPackageBooleanValue(String apiName, Boolean value) { } + global static void setPackageDateValue(String apiName, Date value) { } + global static void setPackageIntegerValue(String apiName, Integer value) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/FinalException.cls b/.sfdx/tools/246/StandardApexLibrary/System/FinalException.cls new file mode 100644 index 0000000..04e4813 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/FinalException.cls @@ -0,0 +1,15 @@ +global class FinalException extends Exception { + global FinalException(String param0, Exception param1) { } + global FinalException(Exception param0) { } + global FinalException(String param0) { } + global FinalException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Finalizer.cls b/.sfdx/tools/246/StandardApexLibrary/System/Finalizer.cls new file mode 100644 index 0000000..7809665 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Finalizer.cls @@ -0,0 +1,4 @@ +global interface Finalizer { + void execute(System.FinalizerContext param0); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/FinalizerContext.cls b/.sfdx/tools/246/StandardApexLibrary/System/FinalizerContext.cls new file mode 100644 index 0000000..0413f81 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/FinalizerContext.cls @@ -0,0 +1,7 @@ +global interface FinalizerContext { + Id getAsyncApexJobId(); + Exception getException(); + String getRequestId(); + System.ParentJobResult getResult(); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/FinalizerContextImpl.cls b/.sfdx/tools/246/StandardApexLibrary/System/FinalizerContextImpl.cls new file mode 100644 index 0000000..8f5130a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/FinalizerContextImpl.cls @@ -0,0 +1,8 @@ +global class FinalizerContextImpl { + global Object clone() { } + global Id getAsyncApexJobId() { } + global Exception getException() { } + global String getRequestId() { } + global System.ParentJobResult getResult() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/FlexQueue.cls b/.sfdx/tools/246/StandardApexLibrary/System/FlexQueue.cls new file mode 100644 index 0000000..2ad43ab --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/FlexQueue.cls @@ -0,0 +1,7 @@ +global class FlexQueue { + global static Boolean moveAfterJob(Id jobToMoveId, Id jobInQueueId) { } + global static Boolean moveBeforeJob(Id jobToMoveId, Id jobInQueueId) { } + global static Boolean moveJobToEnd(Id jobId) { } + global static Boolean moveJobToFront(Id jobId) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/FlowException.cls b/.sfdx/tools/246/StandardApexLibrary/System/FlowException.cls new file mode 100644 index 0000000..a6dc819 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/FlowException.cls @@ -0,0 +1,15 @@ +global class FlowException extends Exception { + global FlowException(String param0, Exception param1) { } + global FlowException(Exception param0) { } + global FlowException(String param0) { } + global FlowException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Formula.cls b/.sfdx/tools/246/StandardApexLibrary/System/Formula.cls new file mode 100644 index 0000000..95aa388 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Formula.cls @@ -0,0 +1,6 @@ +global class Formula { + global Formula() { } + global Object clone() { } + global static List recalculateFormulas(List sobjects) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/FormulaRecalcFieldError.cls b/.sfdx/tools/246/StandardApexLibrary/System/FormulaRecalcFieldError.cls new file mode 100644 index 0000000..f0cdb8b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/FormulaRecalcFieldError.cls @@ -0,0 +1,6 @@ +global class FormulaRecalcFieldError { + global Object clone() { } + global String getFieldError() { } + global String getFieldName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/FormulaRecalcResult.cls b/.sfdx/tools/246/StandardApexLibrary/System/FormulaRecalcResult.cls new file mode 100644 index 0000000..bbdecca --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/FormulaRecalcResult.cls @@ -0,0 +1,7 @@ +global class FormulaRecalcResult { + global Object clone() { } + global List getErrors() { } + global SObject getSObject() { } + global Boolean isSuccess() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/HandledException.cls b/.sfdx/tools/246/StandardApexLibrary/System/HandledException.cls new file mode 100644 index 0000000..83e15f1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/HandledException.cls @@ -0,0 +1,15 @@ +global class HandledException extends Exception { + global HandledException(String param0, Exception param1) { } + global HandledException(Exception param0) { } + global HandledException(String param0) { } + global HandledException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Http.cls b/.sfdx/tools/246/StandardApexLibrary/System/Http.cls new file mode 100644 index 0000000..054205c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Http.cls @@ -0,0 +1,6 @@ +global class Http { + global Http() { } + global System.HttpResponse send(Object request) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/HttpCalloutMock.cls b/.sfdx/tools/246/StandardApexLibrary/System/HttpCalloutMock.cls new file mode 100644 index 0000000..8e9c435 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/HttpCalloutMock.cls @@ -0,0 +1,4 @@ +global interface HttpCalloutMock { + System.HttpResponse respond(System.HttpRequest param0); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/HttpRequest.cls b/.sfdx/tools/246/StandardApexLibrary/System/HttpRequest.cls new file mode 100644 index 0000000..3548738 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/HttpRequest.cls @@ -0,0 +1,22 @@ +global class HttpRequest { + global HttpRequest() { } + global String getBody() { } + global Blob getBodyAsBlob() { } + global dom.Document getBodyDocument() { } + global Boolean getCompressed() { } + global String getEndpoint() { } + global String getHeader(String key) { } + global String getMethod() { } + global void setBody(String body) { } + global void setBodyAsBlob(Blob body) { } + global void setBodyDocument(Object body) { } + global void setClientCertificate(String clientCert, String password) { } + global void setClientCertificateName(String certDevName) { } + global void setCompressed(Boolean compressed) { } + global void setEndpoint(String endpoint) { } + global void setHeader(String key, String value) { } + global void setMethod(String method) { } + global void setTimeout(Integer timeout) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/HttpResponse.cls b/.sfdx/tools/246/StandardApexLibrary/System/HttpResponse.cls new file mode 100644 index 0000000..a58fb77 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/HttpResponse.cls @@ -0,0 +1,18 @@ +global class HttpResponse { + global HttpResponse() { } + global String getBody() { } + global Blob getBodyAsBlob() { } + global dom.Document getBodyDocument() { } + global String getHeader(String key) { } + global List getHeaderKeys() { } + global String getStatus() { } + global Integer getStatusCode() { } + global System.XmlStreamReader getXmlStreamReader() { } + global void setBody(String body) { } + global void setBodyAsBlob(Blob body) { } + global void setHeader(String key, String value) { } + global void setStatus(String status) { } + global void setStatusCode(Integer statusCode) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Ideas.cls b/.sfdx/tools/246/StandardApexLibrary/System/Ideas.cls new file mode 100644 index 0000000..e9ee3ae --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Ideas.cls @@ -0,0 +1,10 @@ +global class Ideas { + global Ideas() { } + global Object clone() { } + global static List findSimilar(SObject idea) { } + global static List getAllRecentReplies(String userId, String communityId) { } + global static List getReadRecentReplies(String userId, String communityId) { } + global static List getUnreadRecentReplies(String userId, String communityId) { } + global static void markRead(String ideaId) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/IllegalArgumentException.cls b/.sfdx/tools/246/StandardApexLibrary/System/IllegalArgumentException.cls new file mode 100644 index 0000000..c659e95 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/IllegalArgumentException.cls @@ -0,0 +1,9 @@ +global class IllegalArgumentException extends Exception { + global IllegalArgumentException(String param0, Exception param1) { } + global IllegalArgumentException(Exception param0) { } + global IllegalArgumentException(String param0) { } + global IllegalArgumentException() { } + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/InvalidHeaderException.cls b/.sfdx/tools/246/StandardApexLibrary/System/InvalidHeaderException.cls new file mode 100644 index 0000000..9df7f6d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/InvalidHeaderException.cls @@ -0,0 +1,9 @@ +global class InvalidHeaderException extends Exception { + global InvalidHeaderException(String param0, Exception param1) { } + global InvalidHeaderException(Exception param0) { } + global InvalidHeaderException(String param0) { } + global InvalidHeaderException() { } + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/InvalidParameterValueException.cls b/.sfdx/tools/246/StandardApexLibrary/System/InvalidParameterValueException.cls new file mode 100644 index 0000000..e7c4554 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/InvalidParameterValueException.cls @@ -0,0 +1,12 @@ +global class InvalidParameterValueException extends Exception { + global InvalidParameterValueException(String param0, String param1) { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/InvalidReadOnlyUserDmlException.cls b/.sfdx/tools/246/StandardApexLibrary/System/InvalidReadOnlyUserDmlException.cls new file mode 100644 index 0000000..7268f40 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/InvalidReadOnlyUserDmlException.cls @@ -0,0 +1,15 @@ +global class InvalidReadOnlyUserDmlException extends Exception { + global InvalidReadOnlyUserDmlException(String param0, Exception param1) { } + global InvalidReadOnlyUserDmlException(Exception param0) { } + global InvalidReadOnlyUserDmlException(String param0) { } + global InvalidReadOnlyUserDmlException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Iterable.cls b/.sfdx/tools/246/StandardApexLibrary/System/Iterable.cls new file mode 100644 index 0000000..bf6ff25 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Iterable.cls @@ -0,0 +1,4 @@ +global interface Iterable { + System.Iterator iterator(); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Iterator.cls b/.sfdx/tools/246/StandardApexLibrary/System/Iterator.cls new file mode 100644 index 0000000..49b57ec --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Iterator.cls @@ -0,0 +1,5 @@ +global interface Iterator { + Boolean hasNext(); + Object next(); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/JSON.cls b/.sfdx/tools/246/StandardApexLibrary/System/JSON.cls new file mode 100644 index 0000000..25ec250 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/JSON.cls @@ -0,0 +1,14 @@ +global class JSON { + global JSON() { } + global Object clone() { } + global static System.JSONGenerator createGenerator(Boolean pretty) { } + global static System.JSONParser createParser(String jsonString) { } + global static Object deserialize(String jsonString, System.Type apexType) { } + global static Object deserializeStrict(String jsonString, System.Type apexType) { } + global static Object deserializeUntyped(String jsonString) { } + global static String serialize(Object o, Boolean suppressApexObjectNulls) { } + global static String serialize(Object o) { } + global static String serializePretty(Object o, Boolean suppressApexObjectNulls) { } + global static String serializePretty(Object o) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/JSONException.cls b/.sfdx/tools/246/StandardApexLibrary/System/JSONException.cls new file mode 100644 index 0000000..47951cb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/JSONException.cls @@ -0,0 +1,15 @@ +global class JSONException extends Exception { + global JSONException(String param0, Exception param1) { } + global JSONException(Exception param0) { } + global JSONException(String param0) { } + global JSONException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/JSONGenerator.cls b/.sfdx/tools/246/StandardApexLibrary/System/JSONGenerator.cls new file mode 100644 index 0000000..5e580f5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/JSONGenerator.cls @@ -0,0 +1,38 @@ +global class JSONGenerator { + global Object clone() { } + global void close() { } + global String getAsString() { } + global Boolean isClosed() { } + global void writeBlob(Blob b) { } + global void writeBlobField(String fieldName, Blob b) { } + global void writeBoolean(Boolean b) { } + global void writeBooleanField(String fieldName, Boolean b) { } + global void writeDate(Date d) { } + global void writeDateField(String fieldName, Date d) { } + global void writeDateTime(Datetime dt) { } + global void writeDateTimeField(String fieldName, Datetime dt) { } + global void writeEndArray() { } + global void writeEndObject() { } + global void writeFieldName(String fieldName) { } + global void writeId(Id id) { } + global void writeIdField(String fieldName, Id id) { } + global void writeNull() { } + global void writeNullField(String fieldName) { } + global void writeNumber(Decimal d) { } + global void writeNumber(Double d) { } + global void writeNumber(Integer i) { } + global void writeNumber(Long lng) { } + global void writeNumberField(String fieldName, Decimal d) { } + global void writeNumberField(String fieldName, Double d) { } + global void writeNumberField(String fieldName, Integer i) { } + global void writeNumberField(String fieldName, Long lng) { } + global void writeObject(Object o) { } + global void writeObjectField(String fieldName, Object o) { } + global void writeStartArray() { } + global void writeStartObject() { } + global void writeString(String str) { } + global void writeStringField(String fieldName, String str) { } + global void writeTime(Time t) { } + global void writeTimeField(String fieldName, Time t) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/JSONParser.cls b/.sfdx/tools/246/StandardApexLibrary/System/JSONParser.cls new file mode 100644 index 0000000..a3c966f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/JSONParser.cls @@ -0,0 +1,25 @@ +global class JSONParser { + global void clearCurrentToken() { } + global Object clone() { } + global Blob getBlobValue() { } + global Boolean getBooleanValue() { } + global String getCurrentName() { } + global System.JSONToken getCurrentToken() { } + global Datetime getDateTimeValue() { } + global Date getDateValue() { } + global Decimal getDecimalValue() { } + global Double getDoubleValue() { } + global Id getIdValue() { } + global Integer getIntegerValue() { } + global System.JSONToken getLastClearedToken() { } + global Long getLongValue() { } + global String getText() { } + global Time getTimeValue() { } + global Boolean hasCurrentToken() { } + global System.JSONToken nextToken() { } + global System.JSONToken nextValue() { } + global Object readValueAs(System.Type apexType) { } + global Object readValueAsStrict(System.Type apexType) { } + global void skipChildren() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/JSONToken.cls b/.sfdx/tools/246/StandardApexLibrary/System/JSONToken.cls new file mode 100644 index 0000000..e95ac39 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/JSONToken.cls @@ -0,0 +1,15 @@ +global enum JSONToken { +END_ARRAY, +END_OBJECT, +FIELD_NAME, +NOT_AVAILABLE, +START_ARRAY, +START_OBJECT, +VALUE_EMBEDDED_OBJECT, +VALUE_FALSE, +VALUE_NULL, +VALUE_NUMBER_FLOAT, +VALUE_NUMBER_INT, +VALUE_STRING, +VALUE_TRUE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/LicenseException.cls b/.sfdx/tools/246/StandardApexLibrary/System/LicenseException.cls new file mode 100644 index 0000000..a38d1d8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/LicenseException.cls @@ -0,0 +1,15 @@ +global class LicenseException extends Exception { + global LicenseException(String param0, Exception param1) { } + global LicenseException(Exception param0) { } + global LicenseException(String param0) { } + global LicenseException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/LimitException.cls b/.sfdx/tools/246/StandardApexLibrary/System/LimitException.cls new file mode 100644 index 0000000..ad37851 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/LimitException.cls @@ -0,0 +1,15 @@ +global class LimitException extends Exception { + global LimitException(String param0, Exception param1) { } + global LimitException(Exception param0) { } + global LimitException(String param0) { } + global LimitException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Limits.cls b/.sfdx/tools/246/StandardApexLibrary/System/Limits.cls new file mode 100644 index 0000000..f0b0495 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Limits.cls @@ -0,0 +1,57 @@ +global class Limits { + global static Integer getAggregateQueries() { } + global static Integer getAsyncCalls() { } + global static Integer getCallouts() { } + global static Integer getChildRelationshipsDescribes() { } + global static Integer getCpuTime() { } + global static Integer getDatabaseTime() { } + global static Integer getDmlRows() { } + global static Integer getDmlStatements() { } + global static Integer getEmailInvocations() { } + global static Integer getFieldSetsDescribes() { } + global static Integer getFieldsDescribes() { } + global static Integer getFindSimilarCalls() { } + global static Integer getFutureCalls() { } + global static Integer getHeapSize() { } + global static Integer getLimitAggregateQueries() { } + global static Integer getLimitAsyncCalls() { } + global static Integer getLimitCallouts() { } + global static Integer getLimitChildRelationshipsDescribes() { } + global static Integer getLimitCpuTime() { } + global static Integer getLimitDatabaseTime() { } + global static Integer getLimitDmlRows() { } + global static Integer getLimitDmlStatements() { } + global static Integer getLimitEmailInvocations() { } + global static Integer getLimitFieldSetsDescribes() { } + global static Integer getLimitFieldsDescribes() { } + global static Integer getLimitFindSimilarCalls() { } + global static Integer getLimitFutureCalls() { } + global static Integer getLimitHeapSize() { } + global static Integer getLimitMobilePushApexCalls() { } + global static Integer getLimitPicklistDescribes() { } + global static Integer getLimitPublishImmediateDML() { } + global static Integer getLimitQueries() { } + global static Integer getLimitQueryLocatorRows() { } + global static Integer getLimitQueryRows() { } + global static Integer getLimitQueueableJobs() { } + global static Integer getLimitRecordTypesDescribes() { } + global static Integer getLimitRunAs() { } + global static Integer getLimitSavepointRollbacks() { } + global static Integer getLimitSavepoints() { } + global static Integer getLimitScriptStatements() { } + global static Integer getLimitSoslQueries() { } + global static Integer getMobilePushApexCalls() { } + global static Integer getPicklistDescribes() { } + global static Integer getPublishImmediateDML() { } + global static Integer getQueries() { } + global static Integer getQueryLocatorRows() { } + global static Integer getQueryRows() { } + global static Integer getQueueableJobs() { } + global static Integer getRecordTypesDescribes() { } + global static Integer getRunAs() { } + global static Integer getSavepointRollbacks() { } + global static Integer getSavepoints() { } + global static Integer getScriptStatements() { } + global static Integer getSoslQueries() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/ListException.cls b/.sfdx/tools/246/StandardApexLibrary/System/ListException.cls new file mode 100644 index 0000000..1599fbc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/ListException.cls @@ -0,0 +1,15 @@ +global class ListException extends Exception { + global ListException(String param0, Exception param1) { } + global ListException(Exception param0) { } + global ListException(String param0) { } + global ListException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Location.cls b/.sfdx/tools/246/StandardApexLibrary/System/Location.cls new file mode 100644 index 0000000..3761b22 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Location.cls @@ -0,0 +1,9 @@ +global class Location { + global Double latitude; + global Double longitude; + global Location() { } + global Double getDistance(System.Location other, String unit) { } + global Double getLatitude() { } + global Double getLongitude() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/LoggingLevel.cls b/.sfdx/tools/246/StandardApexLibrary/System/LoggingLevel.cls new file mode 100644 index 0000000..1acab5f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/LoggingLevel.cls @@ -0,0 +1,11 @@ +global enum LoggingLevel { +DEBUG, +ERROR, +FINE, +FINER, +FINEST, +INFO, +INTERNAL, +NONE, +WARN +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Matcher.cls b/.sfdx/tools/246/StandardApexLibrary/System/Matcher.cls new file mode 100644 index 0000000..114b8a3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Matcher.cls @@ -0,0 +1,31 @@ +global class Matcher { + global Object clone() { } + global Integer end(Integer grp) { } + global Integer end() { } + global Boolean find(Integer start) { } + global Boolean find() { } + global String group(Integer start) { } + global String group() { } + global Integer groupCount() { } + global Boolean hasAnchoringBounds() { } + global Boolean hasTransparentBounds() { } + global Boolean hitEnd() { } + global Boolean lookingAt() { } + global Boolean matches() { } + global System.Pattern pattern() { } + global static String quoteReplacement(String s) { } + global System.Matcher region(Integer start, Integer ending) { } + global Integer regionEnd() { } + global Integer regionStart() { } + global String replaceAll(String replacement) { } + global String replaceFirst(String replacement) { } + global Boolean requireEnd() { } + global System.Matcher reset(String input) { } + global System.Matcher reset() { } + global Integer start(Integer grp) { } + global Integer start() { } + global System.Matcher useAnchoringBounds(Boolean b) { } + global System.Matcher usePattern(System.Pattern p) { } + global System.Matcher useTransparentBounds(Boolean b) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Math.cls b/.sfdx/tools/246/StandardApexLibrary/System/Math.cls new file mode 100644 index 0000000..937f95a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Math.cls @@ -0,0 +1,65 @@ +global class Math { + global Double E; + global Double PI; + global Math() { } + global static Decimal abs(Decimal x) { } + global static Double abs(Double x) { } + global static Integer abs(Integer x) { } + global static Long abs(Long x) { } + global static Decimal acos(Decimal x) { } + global static Double acos(Double x) { } + global static Decimal asin(Decimal x) { } + global static Double asin(Double x) { } + global static Decimal atan(Decimal x) { } + global static Double atan(Double x) { } + global static Decimal atan2(Decimal x, Decimal y) { } + global static Double atan2(Double x, Double y) { } + global static Decimal cbrt(Decimal x) { } + global static Double cbrt(Double x) { } + global static Decimal ceil(Decimal x) { } + global static Double ceil(Double x) { } + global Object clone() { } + global static Decimal cos(Decimal x) { } + global static Double cos(Double x) { } + global static Decimal cosh(Decimal x) { } + global static Double cosh(Double x) { } + global static Decimal exp(Decimal x) { } + global static Double exp(Double x) { } + global static Decimal floor(Decimal x) { } + global static Double floor(Double x) { } + global static Decimal log(Decimal x) { } + global static Double log(Double x) { } + global static Decimal log10(Decimal x) { } + global static Double log10(Double x) { } + global static Decimal max(Decimal x, Decimal y) { } + global static Double max(Double x, Double y) { } + global static Integer max(Integer x, Integer y) { } + global static Long max(Long x, Long y) { } + global static Decimal min(Decimal x, Decimal y) { } + global static Double min(Double x, Double y) { } + global static Integer min(Integer x, Integer y) { } + global static Long min(Long x, Long y) { } + global static Integer mod(Integer x, Integer y) { } + global static Long mod(Long x, Long y) { } + global static Double pow(Double base, Double exp) { } + global static Double random() { } + global static Decimal rint(Decimal x) { } + global static Double rint(Double x) { } + global static Integer round(Decimal x) { } + global static Integer round(Double x) { } + global static Long roundToLong(Decimal x) { } + global static Long roundToLong(Double x) { } + global static Decimal signum(Decimal x) { } + global static Double signum(Double x) { } + global static Decimal sin(Decimal x) { } + global static Double sin(Double x) { } + global static Decimal sinh(Decimal x) { } + global static Double sinh(Double x) { } + global static Decimal sqrt(Decimal x) { } + global static Double sqrt(Double x) { } + global static Decimal tan(Decimal x) { } + global static Double tan(Double x) { } + global static Decimal tanh(Decimal x) { } + global static Double tanh(Double x) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/MathException.cls b/.sfdx/tools/246/StandardApexLibrary/System/MathException.cls new file mode 100644 index 0000000..824f4b1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/MathException.cls @@ -0,0 +1,15 @@ +global class MathException extends Exception { + global MathException(String param0, Exception param1) { } + global MathException(Exception param0) { } + global MathException(String param0) { } + global MathException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Messaging.cls b/.sfdx/tools/246/StandardApexLibrary/System/Messaging.cls new file mode 100644 index 0000000..3f31ff1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Messaging.cls @@ -0,0 +1,14 @@ +global class Messaging { + global static Messaging.InboundEmail extractInboundEmail(Object source, Boolean includeForwardedAttachments) { } + global static List renderEmailTemplate(String whoId, String whatId, List bodies) { } + global static Messaging.SingleEmailMessage renderStoredEmailTemplate(String templateId, String whoId, String whatId, Object attachmentRetrievalOption, Boolean updateEmailTemplateUsage) { } + global static Messaging.SingleEmailMessage renderStoredEmailTemplate(String templateId, String whoId, String whatId, Object attachmentRetrievalOption) { } + global static Messaging.SingleEmailMessage renderStoredEmailTemplate(String templateId, String whoId, String whatId) { } + global static void reserveMassEmailCapacity(Integer count) { } + global static void reserveSingleEmailCapacity(Integer count) { } + global static List sendEmail(List emailMessages, Boolean allOrNothing) { } + global static List sendEmail(List emailMessages) { } + global static List sendEmailMessage(List emailMessagesIds, Boolean allOrNothing) { } + global static List sendEmailMessage(List emailMessagesIds) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/MultiStaticResourceCalloutMock.cls b/.sfdx/tools/246/StandardApexLibrary/System/MultiStaticResourceCalloutMock.cls new file mode 100644 index 0000000..ff07c4d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/MultiStaticResourceCalloutMock.cls @@ -0,0 +1,10 @@ +global class MultiStaticResourceCalloutMock { + global MultiStaticResourceCalloutMock() { } + global Object clone() { } + global System.HttpResponse respond(System.HttpRequest request) { } + global void setHeader(String key, String val) { } + global void setStaticResource(String url, String staticResourceName) { } + global void setStatus(String status) { } + global void setStatusCode(Integer code) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Network.cls b/.sfdx/tools/246/StandardApexLibrary/System/Network.cls new file mode 100644 index 0000000..f170f8b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Network.cls @@ -0,0 +1,17 @@ +global class Network { + global Network() { } + global Object clone() { } + global static System.PageReference communitiesLanding() { } + global static String createExternalUserAsync(SObject user, SObject contact, SObject account) { } + global static String createRecordAsync(String processType, SObject mbObject) { } + global static System.PageReference forwardToAuthPage(String startUrl, String displayType) { } + global static System.PageReference forwardToAuthPage(String startUrl) { } + global static String getLoginUrl(String networkId) { } + global static String getLogoutUrl(String networkId) { } + global static String getNetworkId() { } + global static String getSelfRegUrl(String networkId) { } + global static Integer loadAllPackageDefaultNetworkDashboardSettings() { } + global static Integer loadAllPackageDefaultNetworkPulseSettings() { } + global static Integer loadAllPackageDefaultNetworkWorkspaceMetricSettings() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/NoAccessException.cls b/.sfdx/tools/246/StandardApexLibrary/System/NoAccessException.cls new file mode 100644 index 0000000..03760a3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/NoAccessException.cls @@ -0,0 +1,12 @@ +global class NoAccessException extends Exception { + global NoAccessException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/NoDataFoundException.cls b/.sfdx/tools/246/StandardApexLibrary/System/NoDataFoundException.cls new file mode 100644 index 0000000..65de5b6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/NoDataFoundException.cls @@ -0,0 +1,12 @@ +global class NoDataFoundException extends Exception { + global NoDataFoundException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/NoSuchElementException.cls b/.sfdx/tools/246/StandardApexLibrary/System/NoSuchElementException.cls new file mode 100644 index 0000000..4506fd9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/NoSuchElementException.cls @@ -0,0 +1,15 @@ +global class NoSuchElementException extends Exception { + global NoSuchElementException(String param0, Exception param1) { } + global NoSuchElementException(Exception param0) { } + global NoSuchElementException(String param0) { } + global NoSuchElementException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/NullPointerException.cls b/.sfdx/tools/246/StandardApexLibrary/System/NullPointerException.cls new file mode 100644 index 0000000..f3f0baf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/NullPointerException.cls @@ -0,0 +1,12 @@ +global class NullPointerException extends Exception { + global NullPointerException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/OrgInstrumentationContext.cls b/.sfdx/tools/246/StandardApexLibrary/System/OrgInstrumentationContext.cls new file mode 100644 index 0000000..caa880a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/OrgInstrumentationContext.cls @@ -0,0 +1,9 @@ +global class OrgInstrumentationContext { + global OrgInstrumentationContext(System.OrgMetricPublishTypeEnum publishType) { } + global Object clone() { } + global void end() { } + global Long getDuration() { } + global System.OrgMetricPublishTypeEnum getPublishType() { } + global void startTime() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/OrgInstrumentationOperation.cls b/.sfdx/tools/246/StandardApexLibrary/System/OrgInstrumentationOperation.cls new file mode 100644 index 0000000..2bca3e2 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/OrgInstrumentationOperation.cls @@ -0,0 +1,16 @@ +global class OrgInstrumentationOperation { + global Object clone() { } + global System.TracerSpan createNewSpan() { } + global void end(System.OrgInstrumentationContext context) { } + global void endWithStatus(System.OrgInstrumentationContext context, Integer statusCode) { } + global void publishCustomHistogramValues(String metricName, Long value) { } + global void publishCustomIncrementalValue(String metricName, Long value) { } + global void publishCustomPercentileSet(String metricName, Long value) { } + global void publishIncrementalValue(System.OrgMetricTypeEnum metricType, Long value, Integer statusCode) { } + global void publishPercentileSet(System.OrgMetricTypeEnum metricType, Long value) { } + global void publishRequestCountAndDuration(Long countValue, Integer statusCode, Long duration, String metricName) { } + global void publishRequestCountAndDuration(Long countValue, Integer statusCode, Long duration) { } + global void setMetricTags(Map tags) { } + global System.OrgInstrumentationContext start(System.OrgMetricPublishTypeEnum publishingType) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/OrgInstrumentationService.cls b/.sfdx/tools/246/StandardApexLibrary/System/OrgInstrumentationService.cls new file mode 100644 index 0000000..7b2f648 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/OrgInstrumentationService.cls @@ -0,0 +1,10 @@ +global class OrgInstrumentationService { + global OrgInstrumentationService(System.OrgMetricServiceEnum service, String subServiceName, String featureGroupName, String featureName) { } + global Object clone() { } + global System.OrgInstrumentationOperation getInstrumentationOperation(String operationName, Map tags, List percentileBuckets) { } + global System.OrgInstrumentationOperation getInstrumentationOperation(String operationName, Map tags, List buckets) { } + global System.OrgInstrumentationOperation getInstrumentationOperation(String operationName, Map tags) { } + global Map getTracerContext() { } + global void propagateContext(System.HttpRequest request) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/OrgLimit.cls b/.sfdx/tools/246/StandardApexLibrary/System/OrgLimit.cls new file mode 100644 index 0000000..23b2ea6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/OrgLimit.cls @@ -0,0 +1,8 @@ +global class OrgLimit { + global Object clone() { } + global Integer getLimit() { } + global String getName() { } + global Integer getValue() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/OrgLimits.cls b/.sfdx/tools/246/StandardApexLibrary/System/OrgLimits.cls new file mode 100644 index 0000000..46bd161 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/OrgLimits.cls @@ -0,0 +1,7 @@ +global class OrgLimits { + global OrgLimits() { } + global Object clone() { } + global static List getAll() { } + global static Map getMap() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/OrgMetricPublishTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/System/OrgMetricPublishTypeEnum.cls new file mode 100644 index 0000000..bb243ca --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/OrgMetricPublishTypeEnum.cls @@ -0,0 +1,6 @@ +global enum OrgMetricPublishTypeEnum { +DURATION, +NONE, +REQUEST_COUNT, +REQUEST_COUNT_AND_DURATION +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/OrgMetricServiceEnum.cls b/.sfdx/tools/246/StandardApexLibrary/System/OrgMetricServiceEnum.cls new file mode 100644 index 0000000..af1086d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/OrgMetricServiceEnum.cls @@ -0,0 +1,9 @@ +global enum OrgMetricServiceEnum { +CRM, +GUS, +IDXR, +LEGO, +NETZEROMARKETPLACE, +TBID, +WORKDOTCOM +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/OrgMetricTypeEnum.cls b/.sfdx/tools/246/StandardApexLibrary/System/OrgMetricTypeEnum.cls new file mode 100644 index 0000000..e78b2f6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/OrgMetricTypeEnum.cls @@ -0,0 +1,5 @@ +global enum OrgMetricTypeEnum { +DURATION, +REQUEST_COUNT, +SATURATION +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/PackageOMCopyForRzoneEnvironment.cls b/.sfdx/tools/246/StandardApexLibrary/System/PackageOMCopyForRzoneEnvironment.cls new file mode 100644 index 0000000..a5d7a0d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/PackageOMCopyForRzoneEnvironment.cls @@ -0,0 +1,5 @@ +global class PackageOMCopyForRzoneEnvironment { + global PackageOMCopyForRzoneEnvironment() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Packaging.cls b/.sfdx/tools/246/StandardApexLibrary/System/Packaging.cls new file mode 100644 index 0000000..9b121cc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Packaging.cls @@ -0,0 +1,6 @@ +global class Packaging { + global Packaging() { } + global Object clone() { } + global static String getCurrentPackageId() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/PageReference.cls b/.sfdx/tools/246/StandardApexLibrary/System/PageReference.cls new file mode 100644 index 0000000..fd08f2d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/PageReference.cls @@ -0,0 +1,5 @@ +global class Pagereference { + global static System.PageReference forResource(String resourceName, String path) { } + global static System.PageReference forResource(String resourceName) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/ParentJobResult.cls b/.sfdx/tools/246/StandardApexLibrary/System/ParentJobResult.cls new file mode 100644 index 0000000..fa9a10b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/ParentJobResult.cls @@ -0,0 +1,4 @@ +global enum ParentJobResult { +SUCCESS, +UNHANDLED_EXCEPTION +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Pattern.cls b/.sfdx/tools/246/StandardApexLibrary/System/Pattern.cls new file mode 100644 index 0000000..600403d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Pattern.cls @@ -0,0 +1,11 @@ +global class Pattern { + global Object clone() { } + global static System.Pattern compile(String regex) { } + global System.Matcher matcher(String input) { } + global static Boolean matches(String regex, String input) { } + global String pattern() { } + global static String quote(String s) { } + global List split(String input, Integer n) { } + global List split(String input) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/PlatformCacheException.cls b/.sfdx/tools/246/StandardApexLibrary/System/PlatformCacheException.cls new file mode 100644 index 0000000..9376eef --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/PlatformCacheException.cls @@ -0,0 +1,15 @@ +global class PlatformCacheException extends Exception { + global PlatformCacheException(String param0, Exception param1) { } + global PlatformCacheException(Exception param0) { } + global PlatformCacheException(String param0) { } + global PlatformCacheException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/PolyglotException.cls b/.sfdx/tools/246/StandardApexLibrary/System/PolyglotException.cls new file mode 100644 index 0000000..bd16550 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/PolyglotException.cls @@ -0,0 +1,15 @@ +global class PolyglotException extends Exception { + global PolyglotException(String param0, Exception param1) { } + global PolyglotException(Exception param0) { } + global PolyglotException(String param0) { } + global PolyglotException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/ProcedureException.cls b/.sfdx/tools/246/StandardApexLibrary/System/ProcedureException.cls new file mode 100644 index 0000000..d300082 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/ProcedureException.cls @@ -0,0 +1,15 @@ +global class ProcedureException extends Exception { + global ProcedureException(String param0, Exception param1) { } + global ProcedureException(Exception param0) { } + global ProcedureException(String param0) { } + global ProcedureException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/QueryException.cls b/.sfdx/tools/246/StandardApexLibrary/System/QueryException.cls new file mode 100644 index 0000000..d277253 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/QueryException.cls @@ -0,0 +1,15 @@ +global class QueryException extends Exception { + global QueryException(String param0, Exception param1) { } + global QueryException(Exception param0) { } + global QueryException(String param0) { } + global QueryException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Queueable.cls b/.sfdx/tools/246/StandardApexLibrary/System/Queueable.cls new file mode 100644 index 0000000..fd5c0bf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Queueable.cls @@ -0,0 +1,4 @@ +global interface Queueable { + void execute(System.QueueableContext param0); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/QueueableContext.cls b/.sfdx/tools/246/StandardApexLibrary/System/QueueableContext.cls new file mode 100644 index 0000000..4f9dcce --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/QueueableContext.cls @@ -0,0 +1,4 @@ +global interface QueueableContext { + Id getJobId(); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/QueueableContextImpl.cls b/.sfdx/tools/246/StandardApexLibrary/System/QueueableContextImpl.cls new file mode 100644 index 0000000..5cbb647 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/QueueableContextImpl.cls @@ -0,0 +1,5 @@ +global class QueueableContextImpl { + global Object clone() { } + global Id getJobId() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/QuickAction.cls b/.sfdx/tools/246/StandardApexLibrary/System/QuickAction.cls new file mode 100644 index 0000000..4b69ec0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/QuickAction.cls @@ -0,0 +1,11 @@ +global class QuickAction { + global static List describeAvailableQuickActions(String parentType) { } + global static List describeQuickActions(List actions) { } + global static QuickAction.QuickActionResult performQuickAction(QuickAction.QuickActionRequest performQuickAction, Boolean allOrNothing) { } + global static QuickAction.QuickActionResult performQuickAction(QuickAction.QuickActionRequest performQuickAction) { } + global static List performQuickActions(List performQuickActions, Boolean allOrNothing) { } + global static List performQuickActions(List performQuickActions) { } + global static QuickAction.QuickActionTemplateResult retrieveQuickActionTemplate(String quickActionName, Id contextId) { } + global static List retrieveQuickActionTemplates(List quickActionNames, Id contextId) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Quiddity.cls b/.sfdx/tools/246/StandardApexLibrary/System/Quiddity.cls new file mode 100644 index 0000000..fa25125 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Quiddity.cls @@ -0,0 +1,30 @@ +global enum Quiddity { +ANONYMOUS, +AURA, +BATCH_ACS, +BATCH_APEX, +BATCH_CHUNK_PARALLEL, +BATCH_CHUNK_SERIAL, +BULK_API, +COMMERCE_INTEGRATION, +DISCOVERABLE_LOGIN, +FUNCTION_CALLBACK, +FUTURE, +INBOUND_EMAIL_SERVICE, +INVOCABLE_ACTION, +IOT, +PLATFORM_EVENT_PUBLISH_CALLBACK, +POST_INSTALL_SCRIPT, +QUEUEABLE, +QUICK_ACTION, +REMOTE_ACTION, +REST, +RUNTEST_ASYNC, +RUNTEST_DEPLOY, +RUNTEST_SYNC, +SCHEDULED, +SOAP, +SYNCHRONOUS, +TRANSACTION_FINALIZER_QUEUEABLE, +VF +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/RemoteObjectController.cls b/.sfdx/tools/246/StandardApexLibrary/System/RemoteObjectController.cls new file mode 100644 index 0000000..921221d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/RemoteObjectController.cls @@ -0,0 +1,9 @@ +global class RemoteObjectController { + global RemoteObjectController() { } + global Object clone() { } + global static Map create(String type, Map fields) { } + global static Map del(String type, List ids) { } + global static Map retrieve(String type, List fields, Map criteria) { } + global static Map updat(String type, List ids, Map fields) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Request.cls b/.sfdx/tools/246/StandardApexLibrary/System/Request.cls new file mode 100644 index 0000000..545e911 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Request.cls @@ -0,0 +1,8 @@ +global class Request { + global Request() { } + global Object clone() { } + global static System.Request getCurrent() { } + global System.Quiddity getQuiddity() { } + global String getRequestId() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/RequestImpl.cls b/.sfdx/tools/246/StandardApexLibrary/System/RequestImpl.cls new file mode 100644 index 0000000..90b3a4d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/RequestImpl.cls @@ -0,0 +1,5 @@ +global class RequestImpl { + global Object clone() { } + global static System.Request getCurrent() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/RequiredFeatureMissingException.cls b/.sfdx/tools/246/StandardApexLibrary/System/RequiredFeatureMissingException.cls new file mode 100644 index 0000000..749d139 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/RequiredFeatureMissingException.cls @@ -0,0 +1,15 @@ +global class RequiredFeatureMissingException extends Exception { + global RequiredFeatureMissingException(String param0, Exception param1) { } + global RequiredFeatureMissingException(Exception param0) { } + global RequiredFeatureMissingException(String param0) { } + global RequiredFeatureMissingException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/ResetPasswordResult.cls b/.sfdx/tools/246/StandardApexLibrary/System/ResetPasswordResult.cls new file mode 100644 index 0000000..429bda6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/ResetPasswordResult.cls @@ -0,0 +1,5 @@ +global class ResetPasswordResult { + global String password; + global String getPassword() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/RestContext.cls b/.sfdx/tools/246/StandardApexLibrary/System/RestContext.cls new file mode 100644 index 0000000..90a115f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/RestContext.cls @@ -0,0 +1,6 @@ +global class RestContext { + global System.RestRequest request; + global System.RestResponse response; + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/RestRequest.cls b/.sfdx/tools/246/StandardApexLibrary/System/RestRequest.cls new file mode 100644 index 0000000..36e455b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/RestRequest.cls @@ -0,0 +1,14 @@ +global class RestRequest { + global Map headers; + global String httpMethod; + global Map params; + global String remoteAddress; + global Blob requestBody; + global String requestURI; + global String resourcePath; + global RestRequest() { } + global void addHeader(String name, String value) { } + global void addParameter(String name, String value) { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/RestResponse.cls b/.sfdx/tools/246/StandardApexLibrary/System/RestResponse.cls new file mode 100644 index 0000000..cfde5a0 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/RestResponse.cls @@ -0,0 +1,9 @@ +global class RestResponse { + global Map headers; + global Blob responseBody; + global Integer statusCode; + global RestResponse() { } + global void addHeader(String name, String value) { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/RoundingMode.cls b/.sfdx/tools/246/StandardApexLibrary/System/RoundingMode.cls new file mode 100644 index 0000000..12252ad --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/RoundingMode.cls @@ -0,0 +1,10 @@ +global enum RoundingMode { +CEILING, +DOWN, +FLOOR, +HALF_DOWN, +HALF_EVEN, +HALF_UP, +UNNECESSARY, +UP +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/SObjectAccessDecision.cls b/.sfdx/tools/246/StandardApexLibrary/System/SObjectAccessDecision.cls new file mode 100644 index 0000000..76f90fa --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/SObjectAccessDecision.cls @@ -0,0 +1,7 @@ +global class SObjectAccessDecision { + global Object clone() { } + global Set getModifiedIndexes() { } + global List getRecords() { } + global Map> getRemovedFields() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/SObjectException.cls b/.sfdx/tools/246/StandardApexLibrary/System/SObjectException.cls new file mode 100644 index 0000000..64fa5b9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/SObjectException.cls @@ -0,0 +1,15 @@ +global class SObjectException extends Exception { + global SObjectException(String param0, Exception param1) { } + global SObjectException(Exception param0) { } + global SObjectException(String param0) { } + global SObjectException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/SandboxContext.cls b/.sfdx/tools/246/StandardApexLibrary/System/SandboxContext.cls new file mode 100644 index 0000000..54637ad --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/SandboxContext.cls @@ -0,0 +1,6 @@ +global interface SandboxContext { + Id organizationId(); + Id sandboxId(); + String sandboxName(); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/SandboxPostCopy.cls b/.sfdx/tools/246/StandardApexLibrary/System/SandboxPostCopy.cls new file mode 100644 index 0000000..7103fae --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/SandboxPostCopy.cls @@ -0,0 +1,4 @@ +global interface SandboxPostCopy { + void runApexClass(System.SandboxContext param0); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Schedulable.cls b/.sfdx/tools/246/StandardApexLibrary/System/Schedulable.cls new file mode 100644 index 0000000..8d811c8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Schedulable.cls @@ -0,0 +1,4 @@ +global interface Schedulable { + void execute(System.SchedulableContext param0); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/SchedulableContext.cls b/.sfdx/tools/246/StandardApexLibrary/System/SchedulableContext.cls new file mode 100644 index 0000000..3165a1d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/SchedulableContext.cls @@ -0,0 +1,4 @@ +global interface SchedulableContext { + Id getTriggerId(); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/SchedulableContextImpl.cls b/.sfdx/tools/246/StandardApexLibrary/System/SchedulableContextImpl.cls new file mode 100644 index 0000000..5d06781 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/SchedulableContextImpl.cls @@ -0,0 +1,4 @@ +global class SchedulableContextImpl { + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Schema.cls b/.sfdx/tools/246/StandardApexLibrary/System/Schema.cls new file mode 100644 index 0000000..022851e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Schema.cls @@ -0,0 +1,12 @@ +global class Schema { + global static List describeDataCategoryGroupStructures(List pairs, Boolean topCategoriesOnly) { } + global static List describeDataCategoryGroups(List sobjects) { } + global static List describeSObjects(List types, Object options) { } + global static List describeSObjects(List types) { } + global static List describeTabs() { } + global static Map getAppDescribe(String appName) { } + global static Map getGlobalDescribe() { } + global static Map getModuleDescribe(String moduleName) { } + global static Map getModuleDescribe() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Search.cls b/.sfdx/tools/246/StandardApexLibrary/System/Search.cls new file mode 100644 index 0000000..300445a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Search.cls @@ -0,0 +1,9 @@ +global class Search { + global static Search.SearchResults find(String searchQuery, Object accessLevel) { } + global static Search.SearchResults find(String searchQuery) { } + global static List> query(String searchQuery, Object accessLevel) { } + global static List> query(String searchQuery) { } + global static Search.SuggestionResults suggest(String searchQuery, String sObjectType, Object options, Object accessLevel) { } + global static Search.SuggestionResults suggest(String searchQuery, String sObjectType, Object options) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/SearchException.cls b/.sfdx/tools/246/StandardApexLibrary/System/SearchException.cls new file mode 100644 index 0000000..c8bd9c5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/SearchException.cls @@ -0,0 +1,15 @@ +global class SearchException extends Exception { + global SearchException(String param0, Exception param1) { } + global SearchException(Exception param0) { } + global SearchException(String param0) { } + global SearchException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Security.cls b/.sfdx/tools/246/StandardApexLibrary/System/Security.cls new file mode 100644 index 0000000..0a987e6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Security.cls @@ -0,0 +1,7 @@ +global class Security { + global Security() { } + global Object clone() { } + global static System.SObjectAccessDecision stripInaccessible(System.AccessType accessCheckType, List sourceRecords, Boolean enforceRootObjectCRUD) { } + global static System.SObjectAccessDecision stripInaccessible(System.AccessType accessCheckType, List sourceRecords) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/SecurityException.cls b/.sfdx/tools/246/StandardApexLibrary/System/SecurityException.cls new file mode 100644 index 0000000..0d24136 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/SecurityException.cls @@ -0,0 +1,15 @@ +global class SecurityException extends Exception { + global SecurityException(String param0, Exception param1) { } + global SecurityException(Exception param0) { } + global SecurityException(String param0) { } + global SecurityException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/SelectOption.cls b/.sfdx/tools/246/StandardApexLibrary/System/SelectOption.cls new file mode 100644 index 0000000..7c147bf --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/SelectOption.cls @@ -0,0 +1,13 @@ +global class SelectOption { + global SelectOption(String value, String label, Boolean disabled) { } + global SelectOption(String value, String label) { } + global Boolean getDisabled() { } + global Boolean getEscapeItem() { } + global String getLabel() { } + global String getValue() { } + global void setDisabled(Boolean disabled) { } + global void setEscapeItem(Boolean disabled) { } + global void setLabel(String label) { } + global void setValue(String value) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/SerializationException.cls b/.sfdx/tools/246/StandardApexLibrary/System/SerializationException.cls new file mode 100644 index 0000000..b77e650 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/SerializationException.cls @@ -0,0 +1,15 @@ +global class SerializationException extends Exception { + global SerializationException(String param0, Exception param1) { } + global SerializationException(Exception param0) { } + global SerializationException(String param0) { } + global SerializationException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/SetupScope.cls b/.sfdx/tools/246/StandardApexLibrary/System/SetupScope.cls new file mode 100644 index 0000000..6b10021 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/SetupScope.cls @@ -0,0 +1,5 @@ +global enum SetupScope { +ORGANIZATION, +PROFILE, +USER +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Site.cls b/.sfdx/tools/246/StandardApexLibrary/System/Site.cls new file mode 100644 index 0000000..8e86d44 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Site.cls @@ -0,0 +1,50 @@ +global class Site { + global Site() { } + global static System.PageReference changePassword(String newPassword, String verifyNewPassword, String oldPassword) { } + global static System.PageReference changePassword(String newPassword, String verifyNewPassword) { } + global Object clone() { } + global static Id createExternalUser(SObject user, String accountId, String password, Boolean sendEmailConfirmation) { } + global static Id createExternalUser(SObject user, String accountId, String password) { } + global static Id createExternalUser(SObject user, String accountId) { } + global static Id createPersonAccountPortalUser(SObject user, String ownerId, String recordTypeId, String password) { } + global static Id createPersonAccountPortalUser(SObject user, String ownerId, String password) { } + global static Id createPortalUser(SObject user, String accountId, String password, Boolean sendEmailConfirmation) { } + global static Id createPortalUser(SObject user, String accountId, String password) { } + global static Id createPortalUser(SObject user, String accountId) { } + global static Boolean forgotPassword(String username, String emailTemplateName) { } + global static Boolean forgotPassword(String username) { } + global static String getAdminEmail() { } + global static Id getAdminId() { } + global static String getAnalyticsTrackingCode() { } + global static String getBaseCustomUrl() { } + global static String getBaseInsecureUrl() { } + global static String getBaseRequestUrl() { } + global static String getBaseSecureUrl() { } + global static String getBaseUrl() { } + global static String getCurrentSiteUrl() { } + global static String getCustomWebAddress() { } + global static String getDomain() { } + global static String getErrorDescription() { } + global static String getErrorMessage() { } + global static String getExperienceId() { } + global static String getMasterLabel() { } + global static String getName() { } + global static String getOriginalUrl() { } + global static String getPasswordPolicyStatement() { } + global static String getPathPrefix() { } + global static String getPrefix() { } + global static Id getSiteId() { } + global static String getSiteType() { } + global static String getSiteTypeLabel() { } + global static System.PageReference getTemplate() { } + global static Boolean isLoginEnabled() { } + global static Boolean isPasswordExpired() { } + global static Boolean isRegistrationEnabled() { } + global static Boolean isValidUsername(String username) { } + global static System.PageReference login(String username, String password, String startUrl) { } + global static System.PageReference passwordlessLogin(Id userId, List methods, String startUrl) { } + global static void setExperienceId(String expIdValue) { } + global static void setPortalUserAsAuthProvider(SObject user, String accountId) { } + global static void validatePassword(SObject user, String password, String confirmPassword) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/StaticResourceCalloutMock.cls b/.sfdx/tools/246/StandardApexLibrary/System/StaticResourceCalloutMock.cls new file mode 100644 index 0000000..b366ffc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/StaticResourceCalloutMock.cls @@ -0,0 +1,10 @@ +global class StaticResourceCalloutMock { + global StaticResourceCalloutMock() { } + global Object clone() { } + global System.HttpResponse respond(System.HttpRequest request) { } + global void setHeader(String key, String val) { } + global void setStaticResource(String staticResourceName) { } + global void setStatus(String status) { } + global void setStatusCode(Integer code) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/StatusCode.cls b/.sfdx/tools/246/StandardApexLibrary/System/StatusCode.cls new file mode 100644 index 0000000..3725f79 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/StatusCode.cls @@ -0,0 +1,524 @@ +global enum StatusCode { +ALERT_NOTIFICATION_LIMIT_EXCEEDED, +ALL_OR_NONE_OPERATION_ROLLED_BACK, +ALREADY_APPLIED, +ALREADY_IN_PROCESS, +ALREADY_REDEEMED_VOUCHER, +APEX_DATA_ACCESS_RESTRICTION, +APEX_FAILED, +APPLICATION_ALREADY_EXISTS, +ASSIGNEE_TYPE_REQUIRED, +ATTRIBUTE_DEFINITION_LIMIT_EXCEEDED, +AURA_COMPILE_ERROR, +AUTH_PROVIDER_NEEDS_AUTH, +AUTH_PROVIDER_NOT_FOUND, +B2B_SEARCH_ADMIN_ERROR, +BAD_CUSTOM_ENTITY_PARENT_DOMAIN, +BCC_NOT_ALLOWED_IF_BCC_COMPLIANCE_ENABLED, +BLOCKED_EXCLUSIVE, +CANNOT_CASCADE_PRODUCT_ACTIVE, +CANNOT_CHANGE_FIELD_TYPE_OF_APEX_REFERENCED_FIELD, +CANNOT_CHANGE_FIELD_TYPE_OF_REFERENCED_FIELD, +CANNOT_CREATE_ANOTHER_MANAGED_PACKAGE, +CANNOT_DEACTIVATE_DIVISION, +CANNOT_DELETE_GLOBAL_ACTION_LIST, +CANNOT_DELETE_LAST_DATED_CONVERSION_RATE, +CANNOT_DELETE_MANAGED_OBJECT, +CANNOT_DISABLE_LAST_ADMIN, +CANNOT_ENABLE_IP_RESTRICT_REQUESTS, +CANNOT_EXECUTE_FLOW_TRIGGER, +CANNOT_FREEZE_SELF, +CANNOT_INSERT_UPDATE_ACTIVATE_ENTITY, +CANNOT_MODIFY_MANAGED_OBJECT, +CANNOT_PASSWORD_LOCKOUT, +CANNOT_POST_TO_ARCHIVED_GROUP, +CANNOT_RENAME_APEX_REFERENCED_FIELD, +CANNOT_RENAME_APEX_REFERENCED_OBJECT, +CANNOT_RENAME_REFERENCED_FIELD, +CANNOT_RENAME_REFERENCED_OBJECT, +CANNOT_REPARENT_RECORD, +CANNOT_UPDATE_CONVERTED_LEAD, +CANNOT_UPDATE_IS_THIRD_PARTY, +CANNOT_UPDATE_PAYMENT_METHOD_SET, +CANT_DISABLE_CORP_CURRENCY, +CANT_UNSET_CORP_CURRENCY, +CART_ITEM_NOT_FOUND, +CART_NOT_FOUND, +CHECKOUT_CONFLICT, +CHECKOUT_EXPIRED, +CHECKOUT_INVALIDATED, +CHECKOUT_LOCKED, +CHECKOUT_NOT_FOUND, +CHECKOUT_UNAUTHORIZED, +CHILD_SHARE_FAILS_PARENT, +CIRCULAR_DEPENDENCY, +CLEAN_SERVICE_ERROR, +CLONE_FIELD_INTEGRITY_EXCEPTION, +CLONE_NOT_SUPPORTED, +CMS_FOLDER_ITEM_MOVE_FAILED, +COLLISION_DETECTED, +COMMERCE_SEARCH_INDEXING_SYSTEM_ERROR, +COMMERCE_SEARCH_MQ_ERROR, +COMMERCE_SEARCH_PROVIDER_LIMIT_EXCEEDED, +COMMERCE_SEARCH_RESOURCE_NOT_FOUND, +COMMERCIAL_CONTROL_ERROR, +COMMUNITY_NOT_ACCESSIBLE, +CONFLICT, +CONFLICTING_ENVIRONMENT_HUB_MEMBER, +CONFLICTING_SSO_USER_MAPPING, +CONTENT_NOT_FOUND, +CONTENT_SEARCH_NOT_ENABLED, +CONTENT_TYPE_DISABLED_FOR_API, +CONTENT_TYPE_NOT_FOUND, +COUPON_REDEMPTION_LIMIT_EXCEEDED, +CUSTOM_APEX_ERROR, +CUSTOM_CLOB_FIELD_LIMIT_EXCEEDED, +CUSTOM_ENTITY_OR_FIELD_LIMIT, +CUSTOM_FIELD_INDEX_LIMIT_EXCEEDED, +CUSTOM_INDEX_EXISTS, +CUSTOM_LINK_LIMIT_EXCEEDED, +CUSTOM_METADATA_LIMIT_EXCEEDED, +CUSTOM_METADATA_REL_FIELD_MANAGEABILITY, +CUSTOM_SETTINGS_LIMIT_EXCEEDED, +CUSTOM_TAB_LIMIT_EXCEEDED, +DATAASSESSMENT_CONFIG_ASSESSMENT_IN_PROGRESS_ERROR, +DATAASSESSMENT_CONFIG_SERVICE_ERROR, +DATACLOUDADDRESS_NO_RECORDS_FOUND, +DATACLOUDADDRESS_PROCESSING_ERROR, +DATACLOUDADDRESS_SERVER_ERROR, +DATA_MAPPING_NOT_FOUND, +DATA_MAPPING_SCHEMA_NOT_FOUND, +DATA_TRANSFER_RECORD_LIMIT_EXCEEDED, +DATA_TYPE_NOT_SUPPORTED, +DATE_OUT_OF_RANGE, +DELETE_FAILED, +DELETE_NOT_ALLOWED, +DELETE_OPERATION_TOO_LARGE, +DELETE_REQUIRED_ON_CASCADE, +DEPENDENCY_EXISTS, +DUPLICATES_DETECTED, +DUPLICATE_CASE_SOLUTION, +DUPLICATE_COMM_NICKNAME, +DUPLICATE_CUSTOM_ENTITY_DEFINITION, +DUPLICATE_CUSTOM_TAB_MOTIF, +DUPLICATE_DEVELOPER_NAME, +DUPLICATE_EXTERNAL_ID, +DUPLICATE_MASTER_LABEL, +DUPLICATE_SENDER_DISPLAY_NAME, +DUPLICATE_USERNAME, +DUPLICATE_VALUE, +EMAIL_ADDRESS_BOUNCED, +EMAIL_EXTERNAL_TRANSPORT_CONNECTION_ERROR, +EMAIL_EXTERNAL_TRANSPORT_PERMISSION_ERROR, +EMAIL_EXTERNAL_TRANSPORT_TOKEN_ERROR, +EMAIL_EXTERNAL_TRANSPORT_TOO_LARGE_ERROR, +EMAIL_EXTERNAL_TRANSPORT_TOO_MANY_REQUESTS_ERROR, +EMAIL_EXTERNAL_TRANSPORT_UNKNOWN_ERROR, +EMAIL_NOT_PROCESSED_DUE_TO_PRIOR_ERROR, +EMAIL_OPTED_OUT, +EMAIL_TEMPLATE_FORMULA_ERROR, +EMAIL_TEMPLATE_MERGEFIELD_ACCESS_ERROR, +EMAIL_TEMPLATE_MERGEFIELD_ERROR, +EMAIL_TEMPLATE_MERGEFIELD_VALUE_ERROR, +EMAIL_TEMPLATE_PROCESSING_ERROR, +EMPTY_CATALOG, +EMPTY_INGESTION_JOB, +EMPTY_SCONTROL_FILE_NAME, +ENHANCED_EMAIL_TEMPLATE_COMPILATION_ERROR, +ENTITY_FAILED_IFLASTMODIFIED_ON_UPDATE, +ENTITY_IS_ARCHIVED, +ENTITY_IS_DELETED, +ENTITY_IS_LOCKED, +ENTITY_SAVE_ERROR, +ENTITY_SAVE_VALIDATION_ERROR, +ENVIRONMENT_HUB_MEMBERSHIP_CONFLICT, +ENVIRONMENT_HUB_MEMBERSHIP_ERROR_JOINING_HUB, +ENVIRONMENT_HUB_MEMBERSHIP_USER_ALREADY_IN_HUB, +ENVIRONMENT_HUB_MEMBERSHIP_USER_NOT_ORG_ADMIN, +ERROR_CALCULATING_EXPIRY_DATE, +ERROR_IN_MAILER, +EXCEEDED_MAX_SEMIJOIN_SUBSELECTS_WRITE, +EXCHANGE_WEB_SERVICES_URL_INVALID, +EXTERNAL_RESOURCE_FORBIDDEN, +FAILED_ACTIVATION, +FAILED_DUE_TO_OTHER_INPUTS, +FAILED_TO_RESOLVE_MAPPING, +FAILED_TO_RESOLVE_SCHEMA_INFORMATION, +FIELD_CUSTOM_VALIDATION_EXCEPTION, +FIELD_FILTER_VALIDATION_EXCEPTION, +FIELD_INTEGRITY_EXCEPTION, +FIELD_KEYWORD_LIST_MATCH_LIMIT, +FIELD_MAPPING_ERROR, +FIELD_MODERATION_RULE_BLOCK, +FIELD_NOT_UPDATABLE, +FILE_EXTENSION_NOT_ALLOWED, +FILE_SIZE_LIMIT_EXCEEDED, +FILTERED_LOOKUP_LIMIT_EXCEEDED, +FIND_DUPLICATES_ERROR, +FLOW_EXCEPTION, +FUNCTIONALITY_NOT_ENABLED, +GET_EINSTEIN_TENANT_ERROR, +GUEST_INSUFFICIENT_ACCESS, +HAS_PUBLIC_REFERENCES, +HTML_FILE_UPLOAD_NOT_ALLOWED, +IAS_AM_AUTH_BAD_REQUEST, +IAS_AM_AUTH_UNAUTHORIZED, +IAS_INVALID_AUTH, +IAS_INVALID_REQUEST_PARAMETER, +IAS_RECORD_DOES_NOT_EXIST, +IAS_TENANT_NOT_PROVISIONED, +IAS_UNCOMMITTED_WORK, +IMAGE_TOO_LARGE, +INACTIVE_OWNER_OR_USER, +INACTIVE_RULE_ERROR, +INDEX_ITEM_LIMIT_EXCEEDED, +INDEX_PAYLOAD_NOT_FOUND, +INGESTION_JOB_RECORDS_LIMIT_EXCEEDED, +INGESTION_TOTAL_FILE_SIZE_LIMIT_EXCEEDED, +INPUTPARAM_INCOMPATIBLE_DATATYPE, +INSERT_UPDATE_DELETE_NOT_ALLOWED_DURING_MAINTENANCE, +INSUFFICIENT_ACCESS, +INSUFFICIENT_ACCESS_ON_CROSS_REFERENCE_ENTITY, +INSUFFICIENT_ACCESS_OR_READONLY, +INSUFFICIENT_ACCESS_TO_INSIGHTSEXTERNALDATA, +INSUFFICIENT_BALANCE, +INSUFFICIENT_BENEFIT_REMAINING, +INSUFFICIENT_CREDITS, +INTEGRATION_CANCELLED, +INTERNAL_ERROR, +INVALID_ACCESS_LEVEL, +INVALID_ACCESS_TOKEN, +INVALID_ACCOUNT, +INVALID_ACTION_VERSION, +INVALID_API_INPUT, +INVALID_ARGUMENT_TYPE, +INVALID_ASSIGNEE_TYPE, +INVALID_ASSIGNMENT_RULE, +INVALID_AUTH_HEADER, +INVALID_BATCH_OPERATION, +INVALID_BUSINESS_HOURS_NAME, +INVALID_CHECKOUT_INPUT, +INVALID_CONTACT, +INVALID_CONTENT_TYPE, +INVALID_CREDIT_CARD_INFO, +INVALID_CROSS_REFERENCE_KEY, +INVALID_CROSS_REFERENCE_TYPE_FOR_FIELD, +INVALID_CURRENCY_CONV_RATE, +INVALID_CURRENCY_CORP_RATE, +INVALID_CURRENCY_ISO, +INVALID_DATASET_REFERENCE_INPUT, +INVALID_DATA_CATEGORY_GROUP_REFERENCE, +INVALID_DATA_URI, +INVALID_EBV_OPERATION, +INVALID_EMAIL_ADDRESS, +INVALID_EMPTY_KEY_OWNER, +INVALID_ENTITY_FOR_MATCH_ENGINE_ERROR, +INVALID_ENTITY_FOR_MATCH_OPERATION_ERROR, +INVALID_ENTITY_FOR_UPSERT, +INVALID_ENVIRONMENT_HUB_MEMBER, +INVALID_EVENT_DELIVERY, +INVALID_EVENT_INPUT, +INVALID_EVENT_SUBSCRIPTION, +INVALID_EXTENSION_ID, +INVALID_EXTERNAL_ID_FIELD_NAME, +INVALID_FIELD, +INVALID_FIELD_FOR_INSERT_UPDATE, +INVALID_FIELD_WHEN_USING_TEMPLATE, +INVALID_FILTER_ACTION, +INVALID_GOOGLE_DOCS_URL, +INVALID_ID_FIELD, +INVALID_INET_ADDRESS, +INVALID_INPUT, +INVALID_INPUT_FORMAT, +INVALID_KEY_FIELD_INPUT, +INVALID_LINEITEM_CLONE_STATE, +INVALID_MARKUP, +INVALID_MASTER_OR_TRANSLATED_SOLUTION, +INVALID_MERCHANT_ACCOUNT_MODE, +INVALID_MERCHANT_ACCOUNT_MODE_OR_STATUS, +INVALID_MERGE_RECORD, +INVALID_MESSAGE_ID_REFERENCE, +INVALID_NAMESPACE_PREFIX, +INVALID_OAUTH_URL, +INVALID_OPERATION, +INVALID_OPERATOR, +INVALID_OR_NULL_FOR_RESTRICTED_PICKLIST, +INVALID_OWNER, +INVALID_PACKAGE_LICENSE, +INVALID_PACKAGE_VERSION, +INVALID_PARTNER_NETWORK_STATUS, +INVALID_PAYLOAD_VERSION, +INVALID_PERSON_ACCOUNT_OPERATION, +INVALID_PROFILE, +INVALID_PROMOTION, +INVALID_PROVIDER_TYPE, +INVALID_QUERY_KEY, +INVALID_QUERY_LOCATOR, +INVALID_QUERY_VALUE, +INVALID_READ_ONLY_USER_DML, +INVALID_RECEIVEDDOCUMENTID_ATTACHMENT, +INVALID_RECORD_ATTRIBUTE_VALUE, +INVALID_RECORD_TYPE, +INVALID_REFRESH_TOKEN, +INVALID_REQUEST_STATE, +INVALID_RUNTIME_VALUE, +INVALID_SAVE_AS_ACTIVITY_FLAG, +INVALID_SCS_INBOUND_USER, +INVALID_SEARCH_PROVIDER_REQUEST, +INVALID_SESSION_ID, +INVALID_SETUP_OWNER, +INVALID_SIGNUP_COUNTRY, +INVALID_SIGNUP_OPTION, +INVALID_SITE_DELETE_EXCEPTION, +INVALID_SITE_FILE_IMPORTED_EXCEPTION, +INVALID_SITE_FILE_TYPE_EXCEPTION, +INVALID_SOURCE_OBJECT_ID, +INVALID_STATUS, +INVALID_SUBDOMAIN, +INVALID_TARGET_OBJECT_NAME, +INVALID_TEXT_REPRESENTATION, +INVALID_TYPE, +INVALID_TYPE_FOR_OPERATION, +INVALID_TYPE_ON_FIELD_IN_RECORD, +INVALID_UNMERGE_RECORD, +INVALID_USERID, +INVALID_USER_OBJECT, +IP_RANGE_LIMIT_EXCEEDED, +ITEM_NOT_FOUND, +JIGSAW_IMPORT_LIMIT_EXCEEDED, +LICENSE_LIMIT_EXCEEDED, +LIGHT_PORTAL_USER_EXCEPTION, +LIMIT_EXCEEDED, +LIST_PRICE_NOT_FOUND, +MALFORMED_ID, +MANAGER_NOT_DEFINED, +MASSMAIL_RETRY_LIMIT_EXCEEDED, +MASS_MAIL_LIMIT_EXCEEDED, +MATCH_DEFINITION_ERROR, +MATCH_OPERATION_ERROR, +MATCH_OPERATION_INVALID_ENGINE_ERROR, +MATCH_OPERATION_INVALID_RULE_ERROR, +MATCH_OPERATION_MISSING_ENGINE_ERROR, +MATCH_OPERATION_MISSING_OBJECT_TYPE_ERROR, +MATCH_OPERATION_MISSING_OPTIONS_ERROR, +MATCH_OPERATION_MISSING_RULE_ERROR, +MATCH_OPERATION_UNKNOWN_RULE_ERROR, +MATCH_OPERATION_UNSUPPORTED_VERSION_ERROR, +MATCH_PRECONDITION_FAILED, +MATCH_PRECONDITION_REQUIRED, +MATCH_RUNTIME_ERROR, +MATCH_SERVICE_ERROR, +MATCH_SERVICE_TIMED_OUT, +MATCH_SERVICE_UNAVAILABLE_ERROR, +MAXIMUM_CCEMAILS_EXCEEDED, +MAXIMUM_DASHBOARD_COMPONENTS_EXCEEDED, +MAXIMUM_HIERARCHY_CHILDREN_REACHED, +MAXIMUM_HIERARCHY_LEVELS_REACHED, +MAXIMUM_HIERARCHY_TREE_SIZE_REACHED, +MAXIMUM_SIZE_OF_ATTACHMENT, +MAXIMUM_SIZE_OF_DOCUMENT, +MAX_ACTIONS_PER_RULE_EXCEEDED, +MAX_ACTIVE_RULES_EXCEEDED, +MAX_APPROVAL_STEPS_EXCEEDED, +MAX_DEPTH_IN_FLOW_EXECUTION, +MAX_FORMULAS_PER_RULE_EXCEEDED, +MAX_LIMIT_EXCEEDED, +MAX_RULES_EXCEEDED, +MAX_RULE_ENTRIES_EXCEEDED, +MAX_TASK_DESCRIPTION_EXCEEEDED, +MAX_TM_RULES_EXCEEDED, +MAX_TM_RULE_ITEMS_EXCEEDED, +MAX_TRIGGERS_EXCEEDED, +MERGE_FAILED, +METADATA_FIELD_UPDATE_ERROR, +METHOD_NOT_ALLOWED, +MISMATCHING_TYPES, +MISSING_ARGUMENT, +MISSING_OMNI_PROCESS_ID, +MISSING_RECEIVEDDOCUMENTID_ATTACHMENT, +MISSING_RECORD, +MIXED_DML_OPERATION, +MODEL_NOT_ACTIVE, +MULTIPLE_CONTENT_FOUND, +MULTIPLE_VOUCHERS, +NONUNIQUE_SHIPPING_ADDRESS, +NOT_FOUND, +NOT_RECOVERABLE_SEARCH_PROVIDER_ERROR, +NO_ACCESS_TOKEN, +NO_ACCESS_TOKEN_FROM_REFRESH, +NO_APPLICABLE_PROCESS, +NO_ATTACHMENT_PERMISSION, +NO_AUTH_PROVIDER, +NO_BUSINESS_HOURS_FOUND, +NO_INACTIVE_DIVISION_MEMBERS, +NO_MASS_MAIL_PERMISSION, +NO_MESSAGE_TYPE_MESSAGES, +NO_PARTNER_PERMISSION, +NO_REFRESH_TOKEN, +NO_SEARCH_ATTRIBUTES, +NO_SINGLE_MAIL_PERMISSION, +NO_SORT_PRICEBOOK_ASSOCIATED_ERROR, +NO_SUCH_USER_EXISTS, +NO_TOKEN_ENDPOINT, +NUMBER_OUTSIDE_VALID_RANGE, +NUM_HISTORY_FIELDS_BY_SOBJECT_EXCEEDED, +OCR_INVALID_REQUEST, +OPERATION_ENQUEUED, +OPERATION_WITH_CALLBACK_ENQUEUED, +OPTED_OUT_OF_MASS_MAIL, +OP_WITH_INVALID_USER_TYPE_EXCEPTION, +ORCHESTRATION_INVALID, +ORDER_MANAGEMENT_ACTION_NOT_ALLOWED, +ORDER_MANAGEMENT_INVALID_RECORD, +ORDER_MANAGEMENT_RECORD_EXISTS, +ORDER_MANAGEMENT_RECORD_NOT_FOUND, +ORG_SETTING_REQUIRED, +PACKAGE_DISABLED, +PACKAGE_LICENSE_REQUIRED, +PACKAGING_API_INSTALL_FAILED, +PACKAGING_API_UNINSTALL_FAILED, +PALI_INVALID_ACTION_ID, +PALI_INVALID_ACTION_NAME, +PALI_INVALID_ACTION_TYPE, +PAL_INVALID_ASSISTANT_RECOMMENDATION_TYPE_ID, +PAL_INVALID_ENTITY_ID, +PAL_INVALID_FLEXIPAGE_ID, +PAL_INVALID_LAYOUT_ID, +PAL_INVALID_PARAMETERS, +PARAMETER_TOO_LARGE, +PARTICIPANT_RELATIONSHIP_EXISTS, +PAYLOAD_SIZE_EXCEEDED, +PA_API_EXCEPTION, +PA_AXIS_FAULT, +PA_INVALID_ID_EXCEPTION, +PA_NO_ACCESS_EXCEPTION, +PA_NO_DATA_FOUND_EXCEPTION, +PA_URI_SYNTAX_EXCEPTION, +PA_VISIBLE_ACTIONS_FILTER_ORDERING_EXCEPTION, +PENDING_COMMIT, +PICKLIST_INACTIVE_VALUES_EXCEEDED, +PLATFORM_EVENT_ENCRYPTION_ERROR, +PLATFORM_EVENT_PUBLISHING_UNAVAILABLE, +PLATFORM_EVENT_PUBLISH_FAILED, +PORTAL_NO_ACCESS, +PORTAL_USER_ALREADY_EXISTS_FOR_CONTACT, +PORTAL_USER_CREATION_RESTRICTED_WITH_ENCRYPTION, +PRICE_NOT_FOUND, +PRIVATE_CONTACT_ON_ASSET, +PROCESSING_HALTED, +PROGRAM_PROGRESS_NOT_ACTIVE, +QA_INVALID_CREATE_FEED_ITEM, +QA_INVALID_SUCCESS_MESSAGE, +QUERY_REFINEMENT_VALUE_LIMIT_EXCEEDED, +QUERY_TIMEOUT, +QUICK_ACTION_LIST_ITEM_NOT_ALLOWED, +QUICK_ACTION_LIST_NOT_ALLOWED, +RECORD_CREATION_FAILED, +RECORD_IN_USE_BY_WORKFLOW, +RECORD_MISSING_REQUIRED_FIELD, +RECORD_UPDATE_FAILED, +RECOVERABLE_SEARCH_PROVIDER_ERROR, +REFRESH_FAILED, +RELATED_ENTITY_FILTER_VALIDATION_EXCEPTION, +REL_FIELD_BAD_ACCESSIBILITY, +REPUTATION_MINIMUM_NUMBER_NOT_REACHED, +REQUEST_RUNNING_TOO_LONG, +REQUIRED_FEATURE_MISSING, +REQUIRED_FIELD_MISSING, +REQUIRE_CONNECTED_APP_SCS, +REQUIRE_CONNECTED_APP_SESSION_SCS, +REQUIRE_RUNAS_USER, +RETRIEVE_EXCHANGE_ATTACHMENT_FAILED, +RETRIEVE_EXCHANGE_EMAIL_FAILED, +RETRIEVE_EXCHANGE_EVENT_FAILED, +RETRIEVE_GOOGLE_EMAIL_FAILED, +RETRIEVE_GOOGLE_EVENT_FAILED, +RETRIEVE_USER_CONFIG_ERROR, +ROUTES_EVALUATION_LIMIT_EXCEEDED, +SALESFORCE_INBOX_TRANSPORT_CONNECTION_ERROR, +SALESFORCE_INBOX_TRANSPORT_INVALID_INPUT_ERROR, +SALESFORCE_INBOX_TRANSPORT_TOKEN_ERROR, +SALESFORCE_INBOX_TRANSPORT_UNKNOWN_ERROR, +SCHEMA_OBJECT_NOT_FOUND, +SCREEN_POP_REQUIRED_INPUT_MISSING, +SEARCH_INCLUDE_RULES_MAX_RULE_DEFINITION_LIMIT_EXCEEDED, +SEARCH_INCLUDE_RULES_MIN_RULE_DEFINITION_NOT_MET, +SEARCH_PROVIDER_REQUEST_RATE_EXCEEDED, +SEGMENT_COUNT_LIMIT_EXCEEDED, +SELF_REFERENCE_FROM_FLOW, +SELF_REFERENCE_FROM_TRIGGER, +SERVICE_UNAVAILABLE, +SESSION_EXPIRED, +SESSION_INVALIDATED, +SHARE_NEEDED_FOR_CHILD_OWNER, +SINGLE_EMAIL_LIMIT_EXCEEDED, +SLACK_API_ERROR, +SOCIAL_ACCOUNT_NOT_FOUND, +SOCIAL_ACTION_INVALID, +SOCIAL_PERSONA_NOT_FOUND, +SOCIAL_POST_INVALID, +SOCIAL_POST_NOT_FOUND, +SPECIFICATION_GENERATION_EXCEPTION, +STANDARD_PRICE_NOT_DEFINED, +STORAGE_LIMIT_EXCEEDED, +STRING_TOO_LONG, +SUBDOMAIN_IN_USE, +TABSET_LIMIT_EXCEEDED, +TEMPLATE_NOT_ACTIVE, +TEMPLATE_NOT_FOUND, +TERMS_OF_SERVICE_UNREAD, +TERRITORY_REALIGN_IN_PROGRESS, +TEXT_DATA_OUTSIDE_SUPPORTED_CHARSET, +TEXT_TO_PICKLIST_VALUES_EXCEEDED, +TOO_MANY_APEX_REQUESTS, +TOO_MANY_ENUM_VALUE, +TOO_MANY_JOBS, +TOO_MANY_POSSIBLE_USERS_EXIST, +TRANSFER_REQUIRES_READ, +TXN_SECURITY_NO_ACCESS, +UISF_ENTITY_QUERY_FAILED, +UISF_NO_MAPPINGS_FOUND, +UISF_TOKEN_NOT_FOUND, +UISF_UNKNOWN_EXCEPTION, +UISF_USER_MAPPING_FAILED, +UNABLE_TO_LOCK_ROW, +UNAUTHORIZED_SEARCH_PROVIDER_REQUEST, +UNAVAILABLE_RECORDTYPE_EXCEPTION, +UNAVAILABLE_REF, +UNDEFINED_MAPPING_DEFINITION, +UNDELETE_FAILED, +UNKNOWN_EXCEPTION, +UNKNOWN_TOKEN_ERROR, +UNPROCESSABLE_REQUEST, +UNQUALIFIED_CART, +UNSAFE_HTML_CONTENT, +UNSPECIFIED_EMAIL_ADDRESS, +UNSUPPORTED_APEX_TRIGGER_OPERATON, +UNSUPPORTED_MODE, +UNSUPPORTED_PAYMENT_GATEWAY_TYPE, +UNSUPPORTED_PAYMENT_REQUEST_TYPE, +UNSUPPORTED_SITE, +UNSUPPORTED_SITE_FILE_IMPORTED_EXCEPTION, +UNSUPPORTED_SOCIAL_PROVIDER, +UNVERIFIED_SENDER_ADDRESS, +UPDATE_GOOGLE_EMAIL_LABEL_FAILED, +USER_OWNS_PORTAL_ACCOUNT_EXCEPTION, +USER_WITHOUT_WEM_PERMISSION, +USER_WITH_APEX_SHARES_EXCEPTION, +VARIANT_NOT_FOUND, +VF_COMPILE_ERROR, +VOICE_CAPACITY_ERROR, +WEBLINK_SIZE_LIMIT_EXCEEDED, +WEBLINK_URL_INVALID, +WEM_SEGMENTS_CAN_NOT_HAVE_NON_ACTIVE_SEGMENT_TYPE, +WEM_SHIFT_SEGMENT_TIME_IS_OUTSIDE_OF_THE_SHIFT_DURATION, +WEM_USER_NOT_ORG_ADMIN, +WORKSPACE_NOT_FOUND, +WRONG_CONTROLLER_TYPE, +XCLEAN_DJ_MATCH_IGNORABLE_ERROR, +XCLEAN_DJ_MATCH_INTERNAL_DJ_ERROR, +XCLEAN_DJ_MATCH_NON_RETRIABLE_ERROR, +XCLEAN_DJ_MATCH_RETRIABLE_ERROR, +XCLEAN_DJ_MATCH_UNKNOWN_ERROR, +XCLEAN_UNEXPECTED_ERROR +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/StringException.cls b/.sfdx/tools/246/StandardApexLibrary/System/StringException.cls new file mode 100644 index 0000000..d93686a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/StringException.cls @@ -0,0 +1,15 @@ +global class StringException extends Exception { + global StringException(String param0, Exception param1) { } + global StringException(Exception param0) { } + global StringException(String param0) { } + global StringException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/StubProvider.cls b/.sfdx/tools/246/StandardApexLibrary/System/StubProvider.cls new file mode 100644 index 0000000..40e6f82 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/StubProvider.cls @@ -0,0 +1,4 @@ +global interface StubProvider { + Object handleMethodCall(Object param0, String param1, System.Type param2, List param3, List param4, List param5); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/SupportPredictiveService.cls b/.sfdx/tools/246/StandardApexLibrary/System/SupportPredictiveService.cls new file mode 100644 index 0000000..f97de60 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/SupportPredictiveService.cls @@ -0,0 +1,6 @@ +global class SupportPredictiveService { + global SupportPredictiveService() { } + global Object clone() { } + global static List findSimilarCases(String caseId) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/System.cls b/.sfdx/tools/246/StandardApexLibrary/System/System.cls new file mode 100644 index 0000000..27472cc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/System.cls @@ -0,0 +1,148 @@ +/** + * Contains methods for system operations, such as writing debug messages and scheduling jobs. + */ +global class System { + /** + * Stops the specified job. The stopped job is still visible in the job queue in the Salesforce user interface. + */ + global static void abortJob(String jobId) { } + /** + * Asserts that the specified condition is true. If it is not, a fatal error is returned that causes code execution to halt. + */ + global static void assert(Boolean condition, Object msg) { } + /** + * Asserts that the specified condition is true. If it is not, a fatal error is returned that causes code execution to halt. + */ + global static void assert(Boolean condition) { } + /** + * Asserts that the first two arguments are the same. If they are not, a fatal error is returned that causes code execution to halt. + */ + global static void assertEquals(Object expected, Object actual, Object msg) { } + /** + * Asserts that the first two arguments are the same. If they are not, a fatal error is returned that causes code execution to halt. + */ + global static void assertEquals(Object expected, Object actual) { } + /** + * Asserts that the first two arguments are different. If they are the same, a fatal error is returned that causes code execution to halt. + */ + global static void assertNotEquals(Object expected, Object actual, Object msg) { } + /** + * Asserts that the first two arguments are different. If they are the same, a fatal error is returned that causes code execution to halt. + */ + global static void assertNotEquals(Object expected, Object actual) { } + global static void attachFinalizer(Object finalizer) { } + global static void changeOwnPassword(String oldPassword, String newPassword) { } + /** + * Returns a reference to the current page. This is used with Visualforce pages. + */ + global static System.PageReference currentPageReference() { } + /** + * Returns the current time in milliseconds, which is expressed as the difference between the current time and midnight, January 1, 1970 UTC. + */ + global static Long currentTimeMillis() { } + /** + * Writes the specified message, in string format, to the execution debug log with the specified log level. + */ + global static void debug(Object logLevel, Object o) { } + /** + * Writes the specified message, in string format, to the execution debug log. The `DEBUG` log level is used. + */ + global static void debug(Object o) { } + /** + * Adds a job to the Apex job queue that corresponds to the specified queueable class and returns the job ID. + */ + global static Id enqueueJob(Object queueable) { } + /** + * Returns `true` if both arguments are equal. Otherwise, returns `false`. + */ + global static Boolean equals(Object left, Object right) { } + /** + * Returns the read write mode set for an organization during Salesforce.com upgrades and downtimes. + */ + global static System.ApplicationReadWriteMode getApplicationReadWriteMode() { } + global static String getQuiddityShortCode(Object Quiddity) { } + /** + * Returns the hash code of the specified object. + */ + global static Integer hashCode(Object obj) { } + /** + * Returns `true` if a batch Apex job invoked the executing code, or `false` if not. In API version 35.0 and earlier, also returns `true` if a queueable Apex job invoked the code. + */ + global static Boolean isBatch() { } + global static Boolean isFunctionCallback() { } + /** + * Returns `true` if the currently executing code is invoked by code contained in a method annotated with future; `false` otherwise. + */ + global static Boolean isFuture() { } + /** + * Returns `true` if a queueable Apex job invoked the executing code. Returns `false` if not, including if a batch Apex job or a future method invoked the code. + */ + global static Boolean isQueueable() { } + global static Boolean isRunningElasticCompute() { } + /** + * Returns `true` if the currently executing code is invoked by a scheduled Apex job; `false` otherwise. + */ + global static Boolean isScheduled() { } + /** + * Moves the specified user’s password to a different user. + */ + global static void movePassword(Id targetUserId, Id sourceUserId) { } + /** + * Returns the current date and time in the GMT time zone. + */ + global static Datetime now() { } + global static void pragmaFailInCompiler(Boolean failInOld, Boolean failInNew) { } + /** + * Processes the list of work item IDs. + */ + global static List process(List workitemIds, String action, String commments, String nextApprover) { } + /** + * Deletes asynchronous Apex job records for jobs that have finished execution before the specified date with a Completed, Aborted, or Failed status, and returns the number of records deleted. + */ + global static Integer purgeOldAsyncJobs(Date date) { } + /** + * Returns a two-part version that contains the major and minor version numbers of a package. + */ + global static System.Version requestVersion() { } + /** + * Resets the password for the specified user. + */ + global static System.ResetPasswordResult resetPassword(Id userId, Boolean sendUserEmail) { } + /** + * Resets the user's password and sends an email to the user with their new password. You specify the email template that is sent to the specified user. Use this method for external users of communities. + */ + global static System.ResetPasswordResult resetPasswordWithEmailTemplate(Id userId, Boolean sendUserEmail, String emailTemplateName) { } + /** + * Changes the current user to the specified user. + */ + global static void runAs(SObject user, Object block) { } + /** + * Changes the current package version to the package version specified in the argument. + */ + global static void runAs(Package.Version version) { } + /** + * Use `schedule` with an Apex class that implements the Schedulable interface to schedule the class to run at the time specified by a Cron expression. + */ + global static String schedule(String jobName, String cronExp, Object schedulable) { } + /** + * Schedules a batch job to run once in the future after the specified the time interval, with the specified job name and scope size. Returns the scheduled job ID (CronTrigger ID). + */ + global static String scheduleBatch(Object batchable, String jobName, Integer minutesFromNow, Integer scopeSize) { } + /** + * Schedules a batch job to run once in the future after the specified time interval and with the specified job name. + */ + global static String scheduleBatch(Object batchable, String jobName, Integer minutesFromNow) { } + /** + * Sets the password for the specified user. + */ + global static void setPassword(Id userId, String password) { } + /** + * Submits the processed approvals. The current user is the submitter and the entry criteria is evaluated for all processes applicable to the current user. + */ + global static List submit(List ids, String commments, String nextApprover) { } + /** + * Returns the current date in the current user's time zone. + */ + global static Date today() { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Test.cls b/.sfdx/tools/246/StandardApexLibrary/System/Test.cls new file mode 100644 index 0000000..77910fa --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Test.cls @@ -0,0 +1,35 @@ +global class Test { + global Test() { } + global static void calculatePermissionSetGroup(List psgIds) { } + global static void calculatePermissionSetGroup(String psgId) { } + global static void clearApexPageMessages() { } + global Object clone() { } + global static Object createStub(System.Type parentType, System.StubProvider stubProvider) { } + global static void enableChangeDataCapture() { } + global static List enqueueBatchJobs(Integer n) { } + global static eventbus.TestBroker getEventBus() { } + global static List getFlexQueueOrder() { } + global static Id getStandardPricebookId() { } + global static Object invokeContinuationMethod(Object controller, System.Continuation continuation) { } + global static Component.apex.page invokePage(System.PageReference p) { } + global static Boolean isRunningTest() { } + global static List loadData(Schema.SObjectType sobjectType, String staticResourceName) { } + global static QuickAction.SendEmailQuickActionDefaults newSendEmailQuickActionDefaults(Id contextId, Id replyToId) { } + global static void setContinuationResponse(String label, System.HttpResponse response) { } + global static void setCreatedDate(Id id, Datetime dt) { } + global static void setCurrentPage(Object pageReference) { } + global static void setCurrentPageReference(Object pageReference) { } + global static void setFixedSearchResults(List searchResultsIds) { } + global static void setMock(System.Type interfaceType, Object mock) { } + global static void setReadOnlyApplicationMode(Boolean readOnlyApplicationMode) { } + global static void startTest() { } + global static void stopTest() { } + global static void testInstall(System.InstallHandler script, System.Version version, Boolean isPush, Boolean isRunAsInstallUser) { } + global static void testInstall(System.InstallHandler script, System.Version version, Boolean isPush) { } + global static void testInstall(System.InstallHandler script, System.Version version) { } + global static void testSandboxPostCopyScript(System.SandboxPostCopy script, Id organizationId, Id sandboxId, String sandboxName, Boolean isRunAsAutoProcUser) { } + global static void testSandboxPostCopyScript(System.SandboxPostCopy script, Id organizationId, Id sandboxId, String sandboxName) { } + global static void testUninstall(System.UninstallHandler script, Boolean isRunAsInstallUser) { } + global static void testUninstall(System.UninstallHandler script) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Time.cls b/.sfdx/tools/246/StandardApexLibrary/System/Time.cls new file mode 100644 index 0000000..fb817d5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Time.cls @@ -0,0 +1,4 @@ +global class Time { + global static Time newInstance(Integer hour, Integer minute, Integer second, Integer millisecond) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/TimeZone.cls b/.sfdx/tools/246/StandardApexLibrary/System/TimeZone.cls new file mode 100644 index 0000000..ded0b2b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/TimeZone.cls @@ -0,0 +1,9 @@ +global class TimeZone { + global Object clone() { } + global String getDisplayName() { } + global String getID() { } + global Integer getOffset(Datetime dt) { } + global static System.TimeZone getTimeZone(String id) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/TouchHandledException.cls b/.sfdx/tools/246/StandardApexLibrary/System/TouchHandledException.cls new file mode 100644 index 0000000..c77fd55 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/TouchHandledException.cls @@ -0,0 +1,12 @@ +global class TouchHandledException extends Exception { + global TouchHandledException(String param0) { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/TrailblazerIdentity.cls b/.sfdx/tools/246/StandardApexLibrary/System/TrailblazerIdentity.cls new file mode 100644 index 0000000..3674bc7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/TrailblazerIdentity.cls @@ -0,0 +1,8 @@ +global class TrailblazerIdentity { + global TrailblazerIdentity() { } + global Object clone() { } + global static String generateUserEmailVerificationToken(String orgId, String userId, String email) { } + global static List getUserOrgInfo(List emailList) { } + global static void splunkLog(String source, String message) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/TriggerOperation.cls b/.sfdx/tools/246/StandardApexLibrary/System/TriggerOperation.cls new file mode 100644 index 0000000..dfaef6a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/TriggerOperation.cls @@ -0,0 +1,9 @@ +global enum TriggerOperation { +AFTER_DELETE, +AFTER_INSERT, +AFTER_UNDELETE, +AFTER_UPDATE, +BEFORE_DELETE, +BEFORE_INSERT, +BEFORE_UPDATE +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Type.cls b/.sfdx/tools/246/StandardApexLibrary/System/Type.cls new file mode 100644 index 0000000..f720c82 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Type.cls @@ -0,0 +1,12 @@ +global class Type { + global Object clone() { } + global Boolean equals(Object o) { } + global static System.Type forName(String namespace, String clsName) { } + global static System.Type forName(String clsName) { } + global String getName() { } + global Integer hashCode() { } + global Boolean isAssignableFrom(System.Type comparableType) { } + global Object newInstance() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/TypeException.cls b/.sfdx/tools/246/StandardApexLibrary/System/TypeException.cls new file mode 100644 index 0000000..b5c88fa --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/TypeException.cls @@ -0,0 +1,15 @@ +global class TypeException extends Exception { + global TypeException(String param0, Exception param1) { } + global TypeException(Exception param0) { } + global TypeException(String param0) { } + global TypeException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/UnexpectedException.cls b/.sfdx/tools/246/StandardApexLibrary/System/UnexpectedException.cls new file mode 100644 index 0000000..d8f2d19 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/UnexpectedException.cls @@ -0,0 +1,15 @@ +global class UnexpectedException extends Exception { + global UnexpectedException(String param0, Exception param1) { } + global UnexpectedException(Exception param0) { } + global UnexpectedException(String param0) { } + global UnexpectedException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/UnsupportedOperationException.cls b/.sfdx/tools/246/StandardApexLibrary/System/UnsupportedOperationException.cls new file mode 100644 index 0000000..a0a69e7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/UnsupportedOperationException.cls @@ -0,0 +1,9 @@ +global class UnsupportedOperationException extends Exception { + global UnsupportedOperationException(String param0, Exception param1) { } + global UnsupportedOperationException(Exception param0) { } + global UnsupportedOperationException(String param0) { } + global UnsupportedOperationException() { } + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Url.cls b/.sfdx/tools/246/StandardApexLibrary/System/Url.cls new file mode 100644 index 0000000..4c655be --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Url.cls @@ -0,0 +1,25 @@ +global class Url { + global Url(String protocol, String host, Integer port, String file) { } + global Url(String protocol, String host, String file) { } + global Url(System.Url context, String spec) { } + global Url(String spec) { } + global Object clone() { } + global String getAuthority() { } + global static System.Url getCurrentRequestUrl() { } + global Integer getDefaultPort() { } + global String getFile() { } + global static String getFileFieldURL(String objectId, String fieldName) { } + global String getHost() { } + global static System.Url getOrgDomainUrl() { } + global String getPath() { } + global Integer getPort() { } + global String getProtocol() { } + global String getQuery() { } + global String getRef() { } + global static System.Url getSalesforceBaseUrl() { } + global String getUserInfo() { } + global Boolean sameFile(System.Url other) { } + global String toExternalForm() { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/UserInfo.cls b/.sfdx/tools/246/StandardApexLibrary/System/UserInfo.cls new file mode 100644 index 0000000..00f7e86 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/UserInfo.cls @@ -0,0 +1,27 @@ +global class UserInfo { + global UserInfo() { } + global Object clone() { } + global static String getDefaultCurrency() { } + global static String getFirstName() { } + global static String getLanguage() { } + global static String getLastName() { } + global static String getLocale() { } + global static String getName() { } + global static String getOrganizationId() { } + global static String getOrganizationName() { } + global static String getProfileId() { } + global static String getSessionId() { } + global static System.TimeZone getTimeZone() { } + global static String getUiTheme() { } + global static String getUiThemeDisplayed() { } + global static String getUserEmail() { } + global static String getUserId() { } + global static String getUserName() { } + global static String getUserRoleId() { } + global static String getUserType() { } + global static Boolean hasPackageLicense(Id packageId) { } + global static Boolean isCurrentUserLicensed(String namespacePrefix) { } + global static Boolean isCurrentUserLicensedForPackage(Id packageId) { } + global static Boolean isMultiCurrencyOrganization() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/UserManagement.cls b/.sfdx/tools/246/StandardApexLibrary/System/UserManagement.cls new file mode 100644 index 0000000..a57ebc6 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/UserManagement.cls @@ -0,0 +1,20 @@ +global class UserManagement { + global UserManagement() { } + global Object clone() { } + global static void deregisterVerificationMethod(Id userId, Auth.VerificationMethod method) { } + global static String formatPhoneNumber(String countryCode, String phoneNumber) { } + global static String initPasswordlessLogin(Id userId, Auth.VerificationMethod method) { } + global static String initRegisterVerificationMethod(Auth.VerificationMethod method) { } + global static String initSelfRegistration(Auth.VerificationMethod method, User u) { } + global static String initVerificationMethod(Auth.VerificationMethod method, String actionName, Map extras) { } + global static String initVerificationMethod(Auth.VerificationMethod method) { } + global static void obfuscateUser(Id userId, String username) { } + global static void obfuscateUser(Id userId) { } + global static System.PageReference registerVerificationMethod(Auth.VerificationMethod method, String startUrl) { } + global static Boolean sendAsyncEmailConfirmation(String userId, String emailTemplateId, String networkId, String startUrl) { } + global static Auth.VerificationResult verifyPasswordlessLogin(Id userId, Auth.VerificationMethod method, String identifier, String code, String startUrl) { } + global static String verifyRegisterVerificationMethod(String code, Auth.VerificationMethod method) { } + global static Auth.VerificationResult verifySelfRegistration(Auth.VerificationMethod method, String identifier, String code, String startUrl) { } + global static Auth.VerificationResult verifyVerificationMethod(String identifier, String code, Auth.VerificationMethod method) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/Version.cls b/.sfdx/tools/246/StandardApexLibrary/System/Version.cls new file mode 100644 index 0000000..4a256d5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/Version.cls @@ -0,0 +1,9 @@ +global class Version { + global Version(Integer major, Integer minor, Integer patch) { } + global Version(Integer major, Integer minor) { } + global Integer compareTo(System.Version other) { } + global Integer major() { } + global Integer minor() { } + global Integer patch() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/VisualforceException.cls b/.sfdx/tools/246/StandardApexLibrary/System/VisualforceException.cls new file mode 100644 index 0000000..47e8394 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/VisualforceException.cls @@ -0,0 +1,15 @@ +global class VisualforceException extends Exception { + global VisualforceException(String param0, Exception param1) { } + global VisualforceException(Exception param0) { } + global VisualforceException(String param0) { } + global VisualforceException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/WaveTemplateException.cls b/.sfdx/tools/246/StandardApexLibrary/System/WaveTemplateException.cls new file mode 100644 index 0000000..e6a0c3b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/WaveTemplateException.cls @@ -0,0 +1,15 @@ +global class WaveTemplateException extends Exception { + global WaveTemplateException(String param0, Exception param1) { } + global WaveTemplateException(Exception param0) { } + global WaveTemplateException(String param0) { } + global WaveTemplateException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/WebServiceCallout.cls b/.sfdx/tools/246/StandardApexLibrary/System/WebServiceCallout.cls new file mode 100644 index 0000000..cbae6b8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/WebServiceCallout.cls @@ -0,0 +1,6 @@ +global class Webservicecallout { + global static Object beginInvoke(Object stub, Object request, Object returnType, Object continuation, List info) { } + global static Object endInvoke(Object future) { } + global static void invoke(Object stub, Object request, Map response, List info) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/WebServiceCalloutFuture.cls b/.sfdx/tools/246/StandardApexLibrary/System/WebServiceCalloutFuture.cls new file mode 100644 index 0000000..f6c11a7 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/WebServiceCalloutFuture.cls @@ -0,0 +1,5 @@ +global class WebServiceCalloutFuture { + global WebServiceCalloutFuture() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/WebServiceMock.cls b/.sfdx/tools/246/StandardApexLibrary/System/WebServiceMock.cls new file mode 100644 index 0000000..2c692d5 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/WebServiceMock.cls @@ -0,0 +1,4 @@ +global interface WebServiceMock { + void doInvoke(Object param0, Object param1, Map param2, String param3, String param4, String param5, String param6, String param7, String param8); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/WebStoreContext.cls b/.sfdx/tools/246/StandardApexLibrary/System/WebStoreContext.cls new file mode 100644 index 0000000..a82e19a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/WebStoreContext.cls @@ -0,0 +1,6 @@ +global class WebStoreContext { + global WebStoreContext() { } + global Object clone() { } + global static Map getCommerceContext() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/XmlException.cls b/.sfdx/tools/246/StandardApexLibrary/System/XmlException.cls new file mode 100644 index 0000000..1b689e1 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/XmlException.cls @@ -0,0 +1,15 @@ +global class XmlException extends Exception { + global XmlException(String param0, Exception param1) { } + global XmlException(Exception param0) { } + global XmlException(String param0) { } + global XmlException() { } + global Exception getCause() { } + global Map> getInaccessibleFields() { } + global Integer getLineNumber() { } + global String getMessage() { } + global String getStackTraceString() { } + global String getTypeName() { } + global void initCause(Exception cause) { } + global void setMessage(String message) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/System/XmlStreamReader.cls b/.sfdx/tools/246/StandardApexLibrary/System/XmlStreamReader.cls new file mode 100644 index 0000000..41cc05f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/XmlStreamReader.cls @@ -0,0 +1,36 @@ +global class XmlStreamReader { + global XmlStreamReader(String xml) { } + global Integer getAttributeCount() { } + global String getAttributeLocalName(Integer index) { } + global String getAttributeNamespace(Integer index) { } + global String getAttributePrefix(Integer index) { } + global String getAttributeType(Integer index) { } + global String getAttributeValue(String namespaceURI, String localName) { } + global String getAttributeValueAt(Integer index) { } + global System.XmlTag getEventType() { } + global String getLocalName() { } + global String getLocation() { } + global String getNamespace() { } + global Integer getNamespaceCount() { } + global String getNamespacePrefix(Integer index) { } + global String getNamespaceURI(String prefix) { } + global String getNamespaceURIAt(Integer index) { } + global String getPIData() { } + global String getPITarget() { } + global String getPrefix() { } + global String getText() { } + global String getVersion() { } + global Boolean hasName() { } + global Boolean hasNext() { } + global Boolean hasText() { } + global Boolean isCharacters() { } + global Boolean isEndElement() { } + global Boolean isStartElement() { } + global Boolean isWhitespace() { } + global Integer next() { } + global Integer nextTag() { } + global void setCoalescing(Boolean flag) { } + global void setNamespaceAware(Boolean flag) { } + global String toString() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/XmlStreamWriter.cls b/.sfdx/tools/246/StandardApexLibrary/System/XmlStreamWriter.cls new file mode 100644 index 0000000..e457f33 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/XmlStreamWriter.cls @@ -0,0 +1,19 @@ +global class XmlStreamWriter { + global XmlStreamWriter() { } + global void close() { } + global String getXmlString() { } + global void setDefaultNamespace(String uri) { } + global void writeAttribute(String prefix, String namespaceURI, String localName, String value) { } + global void writeCData(String data) { } + global void writeCharacters(String text) { } + global void writeComment(String data) { } + global void writeDefaultNamespace(String namesapceURI) { } + global void writeEmptyElement(String prefix, String localName, String namesapceURI) { } + global void writeEndDocument() { } + global void writeEndElement() { } + global void writeNamespace(String prefix, String namesapceURI) { } + global void writeProcessingInstruction(String target, String data) { } + global void writeStartDocument(String encoding, String version) { } + global void writeStartElement(String prefix, String localName, String namesapceURI) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/XmlTag.cls b/.sfdx/tools/246/StandardApexLibrary/System/XmlTag.cls new file mode 100644 index 0000000..8c2f061 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/XmlTag.cls @@ -0,0 +1,17 @@ +global enum XmlTag { +ATTRIBUTE, +CDATA, +CHARACTERS, +COMMENT, +DTD, +END_DOCUMENT, +END_ELEMENT, +ENTITY_DECLARATION, +ENTITY_REFERENCE, +NAMESPACE, +NOTATION_DECLARATION, +PROCESSING_INSTRUCTION, +SPACE, +START_DOCUMENT, +START_ELEMENT +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/System/YubiAuthForAloha.cls b/.sfdx/tools/246/StandardApexLibrary/System/YubiAuthForAloha.cls new file mode 100644 index 0000000..ff4d592 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/System/YubiAuthForAloha.cls @@ -0,0 +1,6 @@ +global class YubiAuthForAloha { + global YubiAuthForAloha() { } + global Object clone() { } + global static Boolean validateYubiKeyLogin(String username, String password) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/TerritoryMgmt/OpportunityTerritory2AssignmentFilter.cls b/.sfdx/tools/246/StandardApexLibrary/TerritoryMgmt/OpportunityTerritory2AssignmentFilter.cls new file mode 100644 index 0000000..c30eb1a --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/TerritoryMgmt/OpportunityTerritory2AssignmentFilter.cls @@ -0,0 +1,4 @@ +global interface OpportunityTerritory2AssignmentFilter { + Map getOpportunityTerritory2Assignments(List param0); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/TxnSecurity/Event.cls b/.sfdx/tools/246/StandardApexLibrary/TxnSecurity/Event.cls new file mode 100644 index 0000000..1321d0d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/TxnSecurity/Event.cls @@ -0,0 +1,13 @@ +global class Event { + global String action; + global Map data; + global String entityId; + global String entityName; + global String organizationId; + global String resourceType; + global Datetime timeStamp; + global String userId; + global Event(String organizationId, String userId, String entityName, String action, String resourceType, String entityId, Datetime timeStamp, Map data) { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/TxnSecurity/EventCondition.cls b/.sfdx/tools/246/StandardApexLibrary/TxnSecurity/EventCondition.cls new file mode 100644 index 0000000..a2ce6ef --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/TxnSecurity/EventCondition.cls @@ -0,0 +1,4 @@ +global interface EventCondition { + Boolean evaluate(SObject param0); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/TxnSecurity/PolicyCondition.cls b/.sfdx/tools/246/StandardApexLibrary/TxnSecurity/PolicyCondition.cls new file mode 100644 index 0000000..6a8233c --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/TxnSecurity/PolicyCondition.cls @@ -0,0 +1,4 @@ +global interface PolicyCondition { + Boolean evaluate(TxnSecurity.Event param0); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/CollectingBatchable.cls b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/CollectingBatchable.cls new file mode 100644 index 0000000..9b06ef3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/CollectingBatchable.cls @@ -0,0 +1,22 @@ +global class CollectingBatchable { + global String nextReconOffset; + global String reconOffset; + global String status; + global CollectingBatchable(String reconOffset, String uprId, String connectedAppId) { } + global Object clone() { } + global void execute(Database.BatchableContext BC, List scope) { } + global void finish(Database.BatchableContext BC) { } + global Map flowInputPreprocessing(Map myMap) { } + global void flowPostProcessing(UserProvisioning.ProvisioningProcessHandlerOutput provOutput, SObject thisUPR) { } + global String getEventPrefix() { } + global String getFlowName() { } + global String getFlowNamespace() { } + global List getPerBatchUPL() { } + global List getPerBatchUPR() { } + global Map getUprToNewUplMap() { } + global Boolean hasFlow() { } + global Boolean hasFlowOrApex() { } + global void postBatchProcessing() { } + global Database.QueryLocator start(Database.BatchableContext BC) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/CommittingBatchable.cls b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/CommittingBatchable.cls new file mode 100644 index 0000000..0894444 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/CommittingBatchable.cls @@ -0,0 +1,8 @@ +global class CommittingBatchable { + global CommittingBatchable(String uprId) { } + global Object clone() { } + global void execute(Database.BatchableContext BC, List scope) { } + global void finish(Database.BatchableContext BC) { } + global Database.QueryLocator start(Database.BatchableContext BC) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/ConnectorTestUtil.cls b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/ConnectorTestUtil.cls new file mode 100644 index 0000000..66677d8 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/ConnectorTestUtil.cls @@ -0,0 +1,6 @@ +global class ConnectorTestUtil { + global ConnectorTestUtil() { } + global Object clone() { } + global static ConnectedApplication createConnectedApp(String connectedAppName) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/DeletingBatchable.cls b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/DeletingBatchable.cls new file mode 100644 index 0000000..0b0cf67 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/DeletingBatchable.cls @@ -0,0 +1,8 @@ +global class DeletingBatchable { + global DeletingBatchable(String uprId) { } + global Object clone() { } + global void execute(Database.BatchableContext BC, List scope) { } + global void finish(Database.BatchableContext BC) { } + global Database.QueryLocator start(Database.BatchableContext BC) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/DummyConnectorApexHandler.cls b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/DummyConnectorApexHandler.cls new file mode 100644 index 0000000..52b2176 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/DummyConnectorApexHandler.cls @@ -0,0 +1,6 @@ +global class DummyConnectorApexHandler { + global DummyConnectorApexHandler() { } + global Object clone() { } + global UserProvisioning.ProvisioningProcessHandlerOutput invoke(UserProvisioning.ProvisioningProcessHandlerInput input) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/FlowProvisionBase.cls b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/FlowProvisionBase.cls new file mode 100644 index 0000000..2e634c9 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/FlowProvisionBase.cls @@ -0,0 +1,9 @@ +global class FlowProvisionBase { + global FlowProvisionBase(String uprId) { } + global Object clone() { } + global String getFlowName() { } + global String getFlowNamespace() { } + global Boolean hasFlow() { } + global Boolean hasFlowOrApex() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/LinkingBatchable.cls b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/LinkingBatchable.cls new file mode 100644 index 0000000..8a2ad96 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/LinkingBatchable.cls @@ -0,0 +1,12 @@ +global class LinkingBatchable { + global LinkingBatchable(String uprId) { } + global Object clone() { } + global void execute(Database.BatchableContext BC, List scope) { } + global void finish(Database.BatchableContext BC) { } + global String getFlowName() { } + global String getFlowNamespace() { } + global Boolean hasFlow() { } + global Boolean hasFlowOrApex() { } + global Database.QueryLocator start(Database.BatchableContext BC) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/PluginBatchable.cls b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/PluginBatchable.cls new file mode 100644 index 0000000..798285f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/PluginBatchable.cls @@ -0,0 +1,18 @@ +global class PluginBatchable { + global PluginBatchable(List newRows) { } + global Object clone() { } + global void execute(Database.BatchableContext BC, List scope) { } + global Map flowInputPreprocessing(Map param0) { } + global void flowPostProcessing(UserProvisioning.ProvisioningProcessHandlerOutput param0, SObject param1) { } + global String getEventPrefix() { } + global String getFlowName() { } + global String getFlowNamespace() { } + global List getPerBatchUPL() { } + global List getPerBatchUPR() { } + global Map getUprToNewUplMap() { } + global Boolean hasFlow() { } + global Boolean hasFlowOrApex() { } + global void postBatchProcessing() { } + global Database.QueryLocator start(Database.BatchableContext BC) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/ProvisioningBatchable.cls b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/ProvisioningBatchable.cls new file mode 100644 index 0000000..572b470 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/ProvisioningBatchable.cls @@ -0,0 +1,19 @@ +global class ProvisioningBatchable { + global ProvisioningBatchable(List newRows) { } + global Object clone() { } + global void execute(Database.BatchableContext BC, List scope) { } + global void finish(Database.BatchableContext BC) { } + global Map flowInputPreprocessing(Map myMap) { } + global void flowPostProcessing(UserProvisioning.ProvisioningProcessHandlerOutput provOutput, SObject thisUPR) { } + global String getEventPrefix() { } + global String getFlowName() { } + global String getFlowNamespace() { } + global List getPerBatchUPL() { } + global List getPerBatchUPR() { } + global Map getUprToNewUplMap() { } + global Boolean hasFlow() { } + global Boolean hasFlowOrApex() { } + global void postBatchProcessing() { } + global Database.QueryLocator start(Database.BatchableContext BC) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/ProvisioningProcessHandlerInput.cls b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/ProvisioningProcessHandlerInput.cls new file mode 100644 index 0000000..29b1240 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/ProvisioningProcessHandlerInput.cls @@ -0,0 +1,20 @@ +global class ProvisioningProcessHandlerInput { + global String namedCredDevName; + global String reconFilter; + global String reconOffset; + global String userId; + global String userProvisioningRequestId; + global ProvisioningProcessHandlerInput(String userProvisioningRequestId, String userId, String namedCredDevName, String reconFilter, String reconOffset) { } + global Object clone() { } + global String getNamedCredDevName() { } + global String getReconFilter() { } + global String getReconOffset() { } + global String getUserId() { } + global String getUserProvisioningRequestId() { } + global void setNamedCredDevName(String namedCredDevName) { } + global void setReconFilter(String reconFilter) { } + global void setReconOffset(String reconOffset) { } + global void setUserId(String userId) { } + global void setUserProvisioningRequestId(String userProvisioningRequestId) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/ProvisioningProcessHandlerOutput.cls b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/ProvisioningProcessHandlerOutput.cls new file mode 100644 index 0000000..36e722b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/ProvisioningProcessHandlerOutput.cls @@ -0,0 +1,36 @@ +global class ProvisioningProcessHandlerOutput { + global String UPAStatus; + global String details; + global String externalEmail; + global String externalFirstName; + global String externalLastName; + global String externalUserId; + global String externalUsername; + global String nextReconOffset; + global String reconState; + global String status; + global ProvisioningProcessHandlerOutput(String status, String details, String externalUserId, String externalUsername, String externalEmail, String externalFirstName, String externalLastName, String UPAStatus, String nextReconOffset) { } + global ProvisioningProcessHandlerOutput() { } + global Object clone() { } + global String getDetails() { } + global String getExternalEmail() { } + global String getExternalFirstName() { } + global String getExternalLastName() { } + global String getExternalUserId() { } + global String getExternalUsername() { } + global String getNextReconOffset() { } + global String getReconState() { } + global String getStatus() { } + global String getUPAStatus() { } + global void setDetails(String details) { } + global void setExternalEmail(String externalEmail) { } + global void setExternalFirstName(String externalFirstName) { } + global void setExternalLastName(String externalLastName) { } + global void setExternalUserId(String externalUserId) { } + global void setExternalUsername(String externalUsername) { } + global void setNextReconOffset(String nextReconOffset) { } + global void setReconState(String reconState) { } + global void setStatus(String status) { } + global void setUPAStatus(String UPAStatus) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/RequestingBatchable.cls b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/RequestingBatchable.cls new file mode 100644 index 0000000..39532f3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/RequestingBatchable.cls @@ -0,0 +1,8 @@ +global class RequestingBatchable { + global RequestingBatchable(List newRows) { } + global Object clone() { } + global void execute(Database.BatchableContext BC, List scope) { } + global void finish(Database.BatchableContext BC) { } + global Database.QueryLocator start(Database.BatchableContext BC) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/UPASCleaningBatchable.cls b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/UPASCleaningBatchable.cls new file mode 100644 index 0000000..5397368 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/UPASCleaningBatchable.cls @@ -0,0 +1,8 @@ +global class UPASCleaningBatchable { + global UPASCleaningBatchable(String uprId) { } + global Object clone() { } + global void execute(Database.BatchableContext BC, List scope) { } + global void finish(Database.BatchableContext BC) { } + global Database.QueryLocator start(Database.BatchableContext BC) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/UserProvisioningLog.cls b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/UserProvisioningLog.cls new file mode 100644 index 0000000..fe1bbda --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/UserProvisioningLog.cls @@ -0,0 +1,8 @@ +global class UserProvisioningLog { + global UserProvisioningLog() { } + global Object clone() { } + global static void log(String userProvisioningRequestId, String externalUserId, String externalUserName, String userId, String details) { } + global static void log(String userProvisioningRequestId, String status, String details) { } + global static void log(String userProvisioningRequestId, String details) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/UserProvisioningPlugin.cls b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/UserProvisioningPlugin.cls new file mode 100644 index 0000000..ccb943f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/UserProvisioningPlugin.cls @@ -0,0 +1,9 @@ +global class UserProvisioningPlugin { + global UserProvisioningPlugin() { } + global Process.PluginDescribeResult buildDescribeCall() { } + global Object clone() { } + global Process.PluginDescribeResult describe() { } + global String getPluginClassName() { } + global Process.PluginResult invoke(Process.PluginRequest param0) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/UserProvisioningProcessHandler.cls b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/UserProvisioningProcessHandler.cls new file mode 100644 index 0000000..2bfe64d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/UserProvisioning/UserProvisioningProcessHandler.cls @@ -0,0 +1,6 @@ +global class UserProvisioningProcessHandler { + global UserProvisioningProcessHandler() { } + global Object clone() { } + global UserProvisioning.ProvisioningProcessHandlerOutput invoke(UserProvisioning.ProvisioningProcessHandlerInput input) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/VisualEditor/DataRow.cls b/.sfdx/tools/246/StandardApexLibrary/VisualEditor/DataRow.cls new file mode 100644 index 0000000..0a8110d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/VisualEditor/DataRow.cls @@ -0,0 +1,10 @@ +global class DataRow { + global DataRow(String label, Object value, Boolean selected) { } + global DataRow(String label, Object value) { } + global Object clone() { } + global Integer compareTo(VisualEditor.DataRow o) { } + global String getLabel() { } + global Object getValue() { } + global Boolean isSelected() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/VisualEditor/DesignTimePageContext.cls b/.sfdx/tools/246/StandardApexLibrary/VisualEditor/DesignTimePageContext.cls new file mode 100644 index 0000000..514c027 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/VisualEditor/DesignTimePageContext.cls @@ -0,0 +1,7 @@ +global class DesignTimePageContext { + global String entityName; + global String pageType; + global DesignTimePageContext() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/VisualEditor/DynamicPickList.cls b/.sfdx/tools/246/StandardApexLibrary/VisualEditor/DynamicPickList.cls new file mode 100644 index 0000000..c85d71f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/VisualEditor/DynamicPickList.cls @@ -0,0 +1,9 @@ +global class DynamicPickList { + global DynamicPickList() { } + global Object clone() { } + global VisualEditor.DataRow getDefaultValue() { } + global String getLabel(Object attributeValue) { } + global VisualEditor.DynamicPickListRows getValues() { } + global Boolean isValid(Object attributeValue) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/VisualEditor/DynamicPickListRows.cls b/.sfdx/tools/246/StandardApexLibrary/VisualEditor/DynamicPickListRows.cls new file mode 100644 index 0000000..82049cb --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/VisualEditor/DynamicPickListRows.cls @@ -0,0 +1,15 @@ +global class DynamicPickListRows { + global DynamicPickListRows(List rows, Boolean containsAllRows) { } + global DynamicPickListRows(List rows) { } + global DynamicPickListRows() { } + global void addAllRows(List rows) { } + global void addRow(VisualEditor.DataRow row) { } + global Object clone() { } + global Boolean containsAllRows() { } + global VisualEditor.DataRow get(Integer i) { } + global List getDataRows() { } + global void setContainsAllRows(Boolean containsAllRows) { } + global Integer size() { } + global void sort() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Wave/Dags.cls b/.sfdx/tools/246/StandardApexLibrary/Wave/Dags.cls new file mode 100644 index 0000000..91382d3 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Wave/Dags.cls @@ -0,0 +1,7 @@ +global class Dags { + global Dags() { } + global Object clone() { } + global static void deleteDag(String id) { } + global static Map getDags(Wave.DagsSearchOptions options) { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Wave/DagsSearchOptions.cls b/.sfdx/tools/246/StandardApexLibrary/Wave/DagsSearchOptions.cls new file mode 100644 index 0000000..df01211 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Wave/DagsSearchOptions.cls @@ -0,0 +1,14 @@ +global class DagsSearchOptions { + global String filterGroup; + global String lastModifiedAfter; + global String lastModifiedBefore; + global String orderBy; + global String page; + global Integer pageSize; + global String q; + global String sortParam; + global List status; + global DagsSearchOptions() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Wave/InvalidParameterException.cls b/.sfdx/tools/246/StandardApexLibrary/Wave/InvalidParameterException.cls new file mode 100644 index 0000000..5d92451 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Wave/InvalidParameterException.cls @@ -0,0 +1,8 @@ +global class InvalidParameterException extends Exception { + global InvalidParameterException(String param0, Exception param1) { } + global InvalidParameterException(Exception param0) { } + global InvalidParameterException() { } + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Wave/Lenses.cls b/.sfdx/tools/246/StandardApexLibrary/Wave/Lenses.cls new file mode 100644 index 0000000..aae4adc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Wave/Lenses.cls @@ -0,0 +1,9 @@ +global class Lenses { + global Lenses() { } + global Object clone() { } + global static Map getLens(String lensIdOrApiName, String filterGroup) { } + global static Map getLens(String lensIdOrApiName) { } + global static Map getLenses(Wave.LensesSearchOptions options) { } + global static Map getLenses() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Wave/LensesSearchOptions.cls b/.sfdx/tools/246/StandardApexLibrary/Wave/LensesSearchOptions.cls new file mode 100644 index 0000000..2d4f93d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Wave/LensesSearchOptions.cls @@ -0,0 +1,12 @@ +global class LensesSearchOptions { + global String filterGroup; + global String folderId; + global String page; + global Integer pageSize; + global String q; + global String scope; + global String sortParam; + global LensesSearchOptions() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Wave/NodeType.cls b/.sfdx/tools/246/StandardApexLibrary/Wave/NodeType.cls new file mode 100644 index 0000000..8bd1efa --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Wave/NodeType.cls @@ -0,0 +1,3 @@ +global enum NodeType { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Wave/ProjectionNode.cls b/.sfdx/tools/246/StandardApexLibrary/Wave/ProjectionNode.cls new file mode 100644 index 0000000..30d6f59 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Wave/ProjectionNode.cls @@ -0,0 +1,12 @@ +global class ProjectionNode { + global Wave.ProjectionNode alias(String name) { } + global Wave.ProjectionNode avg() { } + global String build() { } + global Object clone() { } + global Wave.ProjectionNode count() { } + global Wave.ProjectionNode max() { } + global Wave.ProjectionNode min() { } + global Wave.ProjectionNode sum() { } + global Wave.ProjectionNode unique() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Wave/ProjectionType.cls b/.sfdx/tools/246/StandardApexLibrary/Wave/ProjectionType.cls new file mode 100644 index 0000000..3e11b9f --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Wave/ProjectionType.cls @@ -0,0 +1,3 @@ +global enum ProjectionType { + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Wave/QueryBuilder.cls b/.sfdx/tools/246/StandardApexLibrary/Wave/QueryBuilder.cls new file mode 100644 index 0000000..3c92c02 --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Wave/QueryBuilder.cls @@ -0,0 +1,11 @@ +global class QueryBuilder { + global QueryBuilder() { } + global Object clone() { } + global static Wave.QueryNode cogroup(List cogroupNodes, List> groups) { } + global static Wave.ProjectionNode count() { } + global static Wave.ProjectionNode get(String projection) { } + global static Wave.QueryNode load(String datasetId, String datasetVersionId) { } + global static Wave.QueryNode loadByDeveloperName(String fullyQualifiedName) { } + global static Wave.QueryNode union(List unionNodes) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/Wave/QueryBuilderValidationUtil.cls b/.sfdx/tools/246/StandardApexLibrary/Wave/QueryBuilderValidationUtil.cls new file mode 100644 index 0000000..9ca5d4e --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Wave/QueryBuilderValidationUtil.cls @@ -0,0 +1,5 @@ +global class QueryBuilderValidationUtil { + global QueryBuilderValidationUtil() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Wave/QueryNode.cls b/.sfdx/tools/246/StandardApexLibrary/Wave/QueryNode.cls new file mode 100644 index 0000000..21c7fae --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Wave/QueryNode.cls @@ -0,0 +1,13 @@ +global class QueryNode { + global String build(String streamName) { } + global Wave.QueryNode cap(Integer cap) { } + global Object clone() { } + global ConnectApi.LiteralJson execute(String streamName) { } + global Wave.QueryNode filter(List filterConditions) { } + global Wave.QueryNode filter(String filterCondition) { } + global Wave.QueryNode foreach(List projections) { } + global Wave.QueryNode group(List groups) { } + global Wave.QueryNode group() { } + global Wave.QueryNode order(List> orders) { } + +} diff --git a/.sfdx/tools/246/StandardApexLibrary/Wave/Templates.cls b/.sfdx/tools/246/StandardApexLibrary/Wave/Templates.cls new file mode 100644 index 0000000..40dccdc --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Wave/Templates.cls @@ -0,0 +1,13 @@ +global class Templates { + global Templates() { } + global Object clone() { } + global static Map getSObject(String apiName) { } + global static List> getSObjects() { } + global static Map getTemplate(String templateIdOrApiName, String filterGroup, String options) { } + global static Map getTemplate(String templateIdOrApiName) { } + global static Map getTemplateConfig(String templateIdOrApiName, String filterGroup, Boolean disableApex, String options) { } + global static Map getTemplateConfig(String templateIdOrApiName) { } + global static Map getTemplates(Wave.TemplatesSearchOptions options) { } + global static Map getTemplates() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Wave/TemplatesSearchOptions.cls b/.sfdx/tools/246/StandardApexLibrary/Wave/TemplatesSearchOptions.cls new file mode 100644 index 0000000..ff17a0b --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Wave/TemplatesSearchOptions.cls @@ -0,0 +1,8 @@ +global class TemplatesSearchOptions { + global String filterGroup; + global String options; + global String type; + global TemplatesSearchOptions() { } + global Object clone() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Wave/TrendedDatasetProcessor.cls b/.sfdx/tools/246/StandardApexLibrary/Wave/TrendedDatasetProcessor.cls new file mode 100644 index 0000000..3719f9d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Wave/TrendedDatasetProcessor.cls @@ -0,0 +1,6 @@ +global interface TrendedDatasetProcessor { + String getDescription(); + String getLabel(); + void processTrendedDataset(Id param0, Id param1); + +} \ No newline at end of file diff --git a/.sfdx/tools/246/StandardApexLibrary/Wave/WaveQueryException.cls b/.sfdx/tools/246/StandardApexLibrary/Wave/WaveQueryException.cls new file mode 100644 index 0000000..c23ff3d --- /dev/null +++ b/.sfdx/tools/246/StandardApexLibrary/Wave/WaveQueryException.cls @@ -0,0 +1,8 @@ +global class WaveQueryException extends Exception { + global WaveQueryException(String param0, Exception param1) { } + global WaveQueryException(Exception param0) { } + global WaveQueryException() { } + global Object clone() { } + global String getTypeName() { } + +} \ No newline at end of file diff --git a/.sfdx/tools/246/apex.db b/.sfdx/tools/246/apex.db new file mode 100644 index 0000000..e7751fd Binary files /dev/null and b/.sfdx/tools/246/apex.db differ diff --git a/Makefile b/Makefile index f9ae2ab..046a7a9 100644 --- a/Makefile +++ b/Makefile @@ -3,22 +3,26 @@ # ::: :::::::: # # Makefile :+: :+: :+: # # +:+ +:+ +:+ # -# By: tfregni +#+ +:+ +#+ # +# By: tvasilev +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2023/01/30 20:41:46 by tfregni #+# #+# # -# Updated: 2023/06/03 20:57:10 by tfregni ### ########.fr # +# Updated: 2023/09/04 17:01:17 by tvasilev ### ########.fr # # # # **************************************************************************** # -SRCS = main.c parse.c populate_element.c populate_solid.c parse_util.c \ - libx.c render.c vector_calcs.c event_handler.c +SRCS = $(addprefix $(SRCS_DIR)/, main.c parse.c populate_element.c populate_solid.c parse_util.c \ + libx.c render.c sphere.c plane.c vector_calcs.c event_handler.c \ + matrix_calcs.c camera.c shade.c vec3.c ray.c cylinder.c) UNAME_S := $(shell uname -s) -OBJS = ${SRCS:.c=.o} +OBJS = ${patsubst $(SRCS_DIR)/%.c,$(OBJS_DIR)/%.o,${SRCS}} +SRCS_DIR = srcs +OBJS_DIR = obj +INC_DIR = includes CC = cc CFLAGS = -O3 -Wall -Wextra -Werror -g NAME = minirt LINKS = -lm -Llibft -lft -INC = -Ilibft +INC = -Ilibft -I$(INC_DIR) RE_LIBFT = "$(wildcard ./libft/libft.a)" DSYM = *.dSYM RM = rm -rf @@ -56,8 +60,9 @@ ${NAME} : ${OBJS} @${CC} ${CFLAGS} ${OBJS} ${LINKS} -o ${NAME} @echo "done" -%.o:%.c - @${CC} ${CFLAGS} ${INC} -c $< -o $@ +$(OBJS_DIR)/%.o: $(SRCS_DIR)/%.c + @mkdir -p $(OBJS_DIR) + ${CC} ${CFLAGS} ${INC} -c $< -o $@ all : mlx @@ -77,9 +82,9 @@ ifneq ("$(wildcard ${NAME} ${MLX_PATH})", "") @${MAKE} clean -C ${MLX_PATH} @echo "done" endif -ifneq ("$(wildcard ${OBJS} $(DSYM))", "") +ifneq ("$(wildcard ${OBJS_DIR} $(DSYM))", "") @printf "Cleaning up miniRT objects..." - @${RM} ${OBJS} $(DSYM) + @${RM} ${OBJS_DIR} $(DSYM) @echo "done" endif diff --git a/gameplan.txt b/gameplan.txt new file mode 100644 index 0000000..3e5da2d --- /dev/null +++ b/gameplan.txt @@ -0,0 +1,3 @@ +///////////////// DOONE /////////////// Why camera rotation and distortion? +Shadows and shading on cylinders +Look at the parsing \ No newline at end of file diff --git a/includes/camera.h b/includes/camera.h new file mode 100644 index 0000000..54cab94 --- /dev/null +++ b/includes/camera.h @@ -0,0 +1,49 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* camera.h :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: tvasilev +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2023/06/15 12:39:08 by tfregni #+# #+# */ +/* Updated: 2023/08/31 17:45:18 by tvasilev ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#ifndef CAMERA_H +# define CAMERA_H +# include +# include +# include "vec3.h" +# include "matrix_math.h" + +# define WIDTH 1024 +# define HEIGHT 768 + +typedef struct s_camera +{ + t_point3 pos; + t_vec3 orientation; + t_point3 look_at; + uint8_t fov; + double aspect_ratio; + double viewport_height; + double viewport_width; + double half_hor; + double half_ver; + double focal_length; + t_point3 viewport_top_left; + t_vec3 horizontal; + t_vec3 vertical; + t_vec3 pxl_size_hor; + t_vec3 pxl_size_ver; + t_vec3 vert_up; + t_vec3 up; + t_vec3 right; + t_matrix m; +} t_camera; + +void cam_setup(t_camera *c); +t_point3 cam_look_at(t_vec3 forward, t_vec3 rot); + +#endif diff --git a/event_handler.h b/includes/event_handler.h similarity index 80% rename from event_handler.h rename to includes/event_handler.h index a1f8f9f..4f05a05 100644 --- a/event_handler.h +++ b/includes/event_handler.h @@ -6,7 +6,7 @@ /* By: tfregni +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/06/03 12:32:50 by tvasilev #+# #+# */ -/* Updated: 2023/06/05 11:09:09 by tfregni ### ########.fr */ +/* Updated: 2023/06/13 17:53:29 by tfregni ### ########.fr */ /* */ /* ************************************************************************** */ @@ -16,7 +16,8 @@ # include "minirt.h" // int close_window(t_img *data); -int key_handle(int keycode, t_scene *scene); -int mouse_handle(int button, int x, int y, t_scene *scene); +int key_handle(int keycode, t_scene *scene); +int mouse_handle(int button, int x, int y, t_scene *scene); +int track_delta(int button, int x, int y, t_scene *scene); #endif diff --git a/includes/hittable.h b/includes/hittable.h new file mode 100644 index 0000000..49e8830 --- /dev/null +++ b/includes/hittable.h @@ -0,0 +1,70 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* hittable.h :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: tfregni +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2023/06/15 17:26:52 by tfregni #+# #+# */ +/* Updated: 2023/08/29 11:52:56 by tfregni ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#ifndef HITTABLE_H +# define HITTABLE_H +# include +# include "vec3.h" +# include "ray.h" + +typedef struct s_scene t_scene; +typedef struct s_shape t_shape; +typedef struct s_sphere +{ + t_point_3d pos; + float diameter; +} t_sphere; + +typedef struct s_plane +{ + t_point_3d pos; + t_vector rotation; + int trgb; + int valid; +} t_plane; + +typedef struct s_cylinder +{ + t_point_3d center; + t_vector rotation; + float diameter; + float height; + int trgb; +} t_cylinder; + +typedef struct s_hit_record +{ + t_point3 p; + t_vec3 normal; + double t; + int trgb; + t_color color; +} t_hit_record; + +/* SPHERE */ +int intersect_sphere(t_scene *scene, t_ray ray, float *t, int i); +float sp_calc_discriminant(t_scene *scene, t_ray ray, \ + float *t, int i); +float sp_calc_hit_point(float discriminant, float a, float b); +bool sp_hit(t_shape *shape, t_ray r, t_hit_record *rec); +t_vec3 sp_normal(t_shape *sp, t_point3 hit); + +/* PLANE */ +int intersect_plane(t_scene *scene, t_ray ray, float *t, int i); +bool pl_hit(t_shape *shape, t_ray r, t_hit_record *rec); +t_vec3 pl_normal(t_shape *pl, t_point3 hit); + +/* CYLINDER */ +int intersect_cylinder(t_scene *scene, t_ray ray, float *t, int i); +bool cy_hit(t_shape *shape, t_ray r, t_hit_record *rec); + +#endif diff --git a/includes/matrix_math.h b/includes/matrix_math.h new file mode 100644 index 0000000..1b5c063 --- /dev/null +++ b/includes/matrix_math.h @@ -0,0 +1,38 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* matrix_math.h :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: tfregni +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2023/06/08 18:06:27 by tfregni #+# #+# */ +/* Updated: 2023/08/27 14:10:10 by tfregni ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#ifndef MATRIX_MATH_H +# define MATRIX_MATH_H +# include "vec3.h" +# include + +typedef float t_matrix_trans[4][4]; + +typedef struct s_matrix +{ + float matrix[4][4]; + size_t size; +} t_matrix; + +t_matrix mx_get_identity(void); +/* TRANSFORMATIONS */ +t_matrix mx_rotate_x(t_matrix mx, float x); +t_matrix mx_rotate_y(t_matrix mx, float y); +t_matrix mx_rotate_z(t_matrix mx, float z); +t_matrix mx_transl(t_matrix mx, t_point_3d p); +t_matrix mx_combine(t_matrix mx, t_vector orient); +t_point_3d transform(t_point_3d p, t_matrix_trans m); +/* OPERATIONS */ +t_matrix mx_cross(t_matrix a, t_matrix b); +t_point_3d mx_mult(t_matrix m, t_point_3d p); + +#endif diff --git a/minirt.h b/includes/minirt.h similarity index 65% rename from minirt.h rename to includes/minirt.h index 9256fa5..16b8340 100644 --- a/minirt.h +++ b/includes/minirt.h @@ -3,30 +3,44 @@ /* ::: :::::::: */ /* minirt.h :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: tfregni +#+ +:+ +#+ */ +/* By: tvasilev +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/05/23 16:43:46 by tfregni #+# #+# */ -/* Updated: 2023/06/06 01:04:07 by tfregni ### ########.fr */ +/* Updated: 2023/09/04 17:59:26 by tvasilev ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef MINIRT_H # define MINIRT_H -# include "libft.h" -# include "keys.h" # include # include # include # include +# include "libft.h" +# include "keys.h" +# include "matrix_math.h" +# include "camera.h" +# include "hittable.h" # define SPACE "\t\n\f\r\v " -# define MAX_SOLID 3 -# define HEIGHT 500 -# define WIDTH 500 -# define CANV_MIN_X -1 -# define CANV_MAX_X 1 -# define CANV_MIN_Y -1 -# define CAM_PACE 0.1 +# define MAX_SOLID 10 +# define CANV_MIN_X -1.0f +# define CANV_MAX_X 1.0f +# define CANV_MIN_Y -1.0f +# define CANV_DIST 1.0f +# define CAM_PACE 0.8 # define LIGHT_PACE 0.3 +# define ORIENT_PACE 0.4 +# define RAY_LEN 100000 +# define BOUNCES 2 +# define ZNEAR CANV_DIST +# define ZFAR RAY_LEN +# define EPSILON 1e-6 + +typedef struct s_ray t_ray; +typedef int (*t_hit_func)(t_scene *scene, t_ray ray, \ + float *t, int i); +typedef bool (*t_hit)(t_shape *shape, t_ray ray, t_hit_record *rec); +typedef t_vec3 (*t_normal)(t_shape *shape, t_point3 hit); typedef enum e_err { @@ -37,6 +51,7 @@ typedef enum e_err INVALID_FILE, INVALID_ELEMENT, INVALID_DUP, + MISS_UNIQUE, } t_err; enum e_unique_el @@ -46,11 +61,11 @@ enum e_unique_el LIGHT, }; -// typedef enum e_bool -// { -// FALSE, -// TRUE, -// } t_bool; +typedef enum e_bool +{ + FALSE, + TRUE, +} t_bool; typedef struct s_img { @@ -64,15 +79,6 @@ typedef struct s_img int endian; } t_img; -typedef struct s_point_3d -{ - double x; - double y; - double z; -} t_point_3d; - -typedef t_point_3d t_vector; - typedef struct s_pxl { int x; @@ -92,13 +98,6 @@ typedef struct s_ambient int trgb; } t_ambient; -typedef struct s_camera -{ - t_point_3d pos; - t_vector orientation; - uint8_t fov; -} t_camera; - typedef struct s_light { t_point_3d pos; @@ -106,44 +105,31 @@ typedef struct s_light int trgb; } t_light; -typedef struct s_sphere -{ - t_point_3d pos; - float diameter; - int trgb; -} t_sphere; - -typedef struct s_plane +typedef struct s_shape { - t_point_3d pos; + union { + t_sphere sp; + t_plane pl; + t_cylinder cy; + }; + char *type; t_vector rotation; + t_hit_func intersect; + t_hit hit; + t_normal normal; + t_matrix_trans transform; int trgb; -} t_plane; + t_color color; +} t_shape; -typedef struct s_cylinder -{ - t_point_3d center; - t_vector rotation; - float diameter; - float height; - int trgb; -} t_cylinder; - -/** - * Possible struct for the scene: - * one value for each unique element (A, C, L), - * an array for each solid. Plus a pointer - * to the image. -*/ typedef struct s_scene { t_img *img; t_ambient ambient; t_camera camera; t_light light; - t_sphere *sp; - t_plane *pl; - t_cylinder *cy; + t_shape *shape; + int shape_count; } t_scene; /* PARSE */ @@ -154,6 +140,8 @@ t_err validate_light(t_scene *scene, char **el); int validate_sphere(t_scene *scene, char **el); int validate_plane(t_scene *scene, char **el); int validate_cylinder(t_scene *scene, char **el); +void set_camera_canvas(t_camera *c); +void set_transform_mx(t_camera *c); /* PARSE UTILS */ int validate_3d_range(t_point_3d point, float min, float max); @@ -162,6 +150,7 @@ t_err extract_rgb(char *rgb, int *ret); /* GRAPHIC */ int create_trgb(int t, int r, int g, int b); +t_color convert_color(int trgb); int mlx_manage(t_scene *scene); void my_mlx_pixel_put_d(t_img *data, int x, int y, int color); t_err init_img(t_scene *scene); @@ -169,6 +158,12 @@ t_err init_img(t_scene *scene); /* RENDER */ t_err render_scene(t_scene *scene); void draw(t_scene *scene); +int intersect_element(t_scene *scene, t_ray ray, int *color, float *min_t); + +/* SHADE */ +float light_coeff(t_scene *scene, t_hit_record *hit); +float diffuse_reflection(t_scene *scene, t_vector n, t_vector p); +int cast_shadow(t_scene *scene, t_ray ray); /* ERROR HANDLING*/ t_err ft_error(char *msg, char *arg, int err_code, t_scene *scene); @@ -176,5 +171,9 @@ t_err ft_warning(char *msg, char *arg, int err_code); /* CLEANUP */ int free_img(t_img *data); +void free_scene(t_scene **scene); + +/* DEBUG */ +void print_4x4(t_matrix_trans m); #endif diff --git a/includes/ray.h b/includes/ray.h new file mode 100644 index 0000000..4cf91f1 --- /dev/null +++ b/includes/ray.h @@ -0,0 +1,28 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ray.h :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: tvasilev +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2023/06/15 12:12:45 by tfregni #+# #+# */ +/* Updated: 2023/08/31 16:21:19 by tvasilev ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#ifndef RAY_H +# define RAY_H + +# include "vec3.h" + +typedef struct s_ray +{ + t_point3 origin; + t_vec3 direction; +} t_ray; + +t_ray ray(t_point3 origin, t_vec3 direction); + +t_point3 ray_at(t_ray ray, double t); + +#endif diff --git a/includes/vec3.h b/includes/vec3.h new file mode 100644 index 0000000..0fbf7cd --- /dev/null +++ b/includes/vec3.h @@ -0,0 +1,51 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* vec3.h :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: tfregni +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2023/06/15 11:40:31 by tfregni #+# #+# */ +/* Updated: 2023/08/29 10:57:00 by tfregni ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#ifndef VEC3_H +# define VEC3_H + +typedef struct s_vec3 +{ + double x; + double y; + double z; +} t_vec3; + +typedef t_vec3 t_point3; +typedef t_vec3 t_point_3d; +typedef t_vec3 t_vector; + +typedef struct s_color +{ + double t; + double r; + double g; + double b; +} t_color; + +t_vec3 vec3(double x, double y, double z); +t_vec3 vec3_sum(t_vec3 a, t_vec3 b); +t_vec3 vec3_mult(t_vec3 a, double b); +t_vec3 vec3_cross(t_vec3 a, t_vec3 b); +double vec3_dot(t_vec3 a, t_vec3 b); +t_vec3 vec3_sub(t_vec3 a, t_vec3 b); +t_vec3 vec3_div(t_vec3 a, double b); +double vec3_len_squared(t_vec3 a); +double vec3_len(t_vec3 a); +t_vec3 vec3_unit(t_vec3 a); +t_vec3 vec3_inv(t_vec3 a); +void vec3_print(t_vec3 a); + +t_point3 point(double x, double y, double z); + +t_color color(double t, double r, double g, double b); +#endif diff --git a/vector_math.h b/includes/vector_math.h similarity index 91% rename from vector_math.h rename to includes/vector_math.h index 93f8f3b..80df014 100644 --- a/vector_math.h +++ b/includes/vector_math.h @@ -6,7 +6,7 @@ /* By: tfregni +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/06/02 12:49:11 by tvasilev #+# #+# */ -/* Updated: 2023/06/05 15:20:28 by tfregni ### ########.fr */ +/* Updated: 2023/06/14 11:04:26 by tfregni ### ########.fr */ /* */ /* ************************************************************************** */ @@ -18,6 +18,7 @@ t_vector vect_sum(t_vector a, t_vector b); t_vector vect_sub(t_vector a, t_vector b); float vect_dot(t_vector a, t_vector b); +t_vector vect_cross(t_vector u, t_vector v); t_vector vect_norm(t_vector v); float vect_mag(t_vector v); t_vector vect_mult(t_vector v, float a); diff --git a/libft b/libft index 88e34ae..d661922 160000 --- a/libft +++ b/libft @@ -1 +1 @@ -Subproject commit 88e34ae21a8ce24ee79f7863b2dd248c9bfd3d84 +Subproject commit d6619221e2f6b0c849d7df959e0f09bee6fb8ec1 diff --git a/linux/keys.h b/linux/keys.h index 1400d8c..abc6241 100644 --- a/linux/keys.h +++ b/linux/keys.h @@ -6,7 +6,7 @@ /* By: tfregni +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/02/19 12:22:28 by tfregni #+# #+# */ -/* Updated: 2023/06/06 11:44:33 by tfregni ### ########.fr */ +/* Updated: 2023/06/14 17:33:24 by tfregni ### ########.fr */ /* */ /* ************************************************************************** */ @@ -23,6 +23,8 @@ Keymap # define A 97 # define S 115 # define D 100 +# define Q 113 +# define E 101 # define W 119 # define C 99 # define R 114 diff --git a/main3.c b/main3.c deleted file mode 100644 index 7481201..0000000 --- a/main3.c +++ /dev/null @@ -1,172 +0,0 @@ -/* ************************************************************************** */ -/* */ -/* ::: :::::::: */ -/* main3.c :+: :+: :+: */ -/* +:+ +:+ +:+ */ -/* By: tfregni +#+ +:+ +#+ */ -/* +#+#+#+#+#+ +#+ */ -/* Created: 2023/06/03 12:57:44 by tvasilev #+# #+# */ -/* Updated: 2023/06/03 20:38:10 by tfregni ### ########.fr */ -/* */ -/* ************************************************************************** */ - -#include "vector_math.h" -#include "minirt.h" -#include "event_handler.h" -#include - -void print_coord(char *name, t_point point) -{ - printf("%s (%f, %f, %f)\n", name, point.x, point.y, point.z); -} - -void my_mlx_pixel_put_d(t_img *data, int x, int y, int color) -{ - char *dst; - - if (x >= WIDTH || x <= 0 || y >= HEIGHT || y <= 0) - return ; - dst = data->addr + (y * data->line_len + x * (data->bpp / 8)); - *(unsigned int *)dst = color; -} - -// n (plane normal vector) -// p0 (origin point of plane) -// l0 (vector origin) -// l (vector) -// t (vector distance) -int intersectPlane(const t_vector n, const t_vector p0, const t_vector l0, const t_vector l, float t) -{ - // assuming vectors are all normalized - t_vector p0l0; - float denom; - - denom = vect_dot(n, l); - if (denom > 1e-6) - { - p0l0 = vect_sub(p0, l0); - t = vect_dot(p0l0, n) / denom; - return (t >= 0); - } - return 0; -} - -int intersectDisk(const t_vector n, const t_vector p0, const float radius, const t_vector l0, const t_vector l) -{ - float t = 500; - if (intersectPlane(n, p0, l0, l, t)) { - t_vector p = vect_sum(l0, vect_mult(l, t)); - t_vector v = vect_sub(p, p0); - float d2 = vect_dot(v, v); - return (sqrt(d2) <= radius); - } - - return 0; -} - -int mlx_manage(t_img *data) -{ - //mouse hook - //key hook - mlx_key_hook(data->win_ptr, &key_handle, data); - //any other special hooks - mlx_hook(data->win_ptr, ON_DESTROY, 0, &close_window, data); - //put image - mlx_put_image_to_window(data->mlx_ptr, data->win_ptr, data->img, 0, 0); - //loop - mlx_loop(data->mlx_ptr); - //3x destroy - mlx_destroy_window(data->mlx_ptr, data->win_ptr); - mlx_destroy_image(data->mlx_ptr, data->img); - mlx_destroy_display(data->mlx_ptr); - //free mlx - free(data->mlx_ptr); - return (1); -} - -void shoot_rays(t_img *data, t_point cam, t_point p_top_l, t_point p_bot_r, t_vector n_plane, t_point c_plane) -{ - int x = p_top_l.x, y = p_top_l.y; - t_vector ray; - - (void)data; - while (y != p_bot_r.y) - { - x = p_top_l.x; - while (x != p_bot_r.x) - { - ray.x = x; - ray.y = y; - ray.z = 100; - //print_coord("ray ", ray); - ray = vect_sub(ray, cam); - ray = vect_norm(ray); - //print_coord("norm_ray ", ray); - //printf("%d", intersectDisk(n_plane, c_plane, 210, cam, ray)); - if (intersectDisk(n_plane, c_plane, 210, cam, ray)) - { - my_mlx_pixel_put_d(data, x + WIDTH/2, y + HEIGHT/2, 0xFF0000); - } - //printf("%d", intersectPlane(n_plane, c_plane, cam, ray, 0)); - x > p_bot_r.x ? x-- : x++; - } - printf("\n"); - y > p_bot_r.y ? y-- : y++; - } -} - -int main(void) -{ - t_img data; - void *mlx; - void *mlx_win; - - mlx = mlx_init(); - mlx_win = mlx_new_window(mlx, WIDTH, HEIGHT, "miniRT"); - - data.mlx_ptr = mlx; - data.win_ptr = mlx_win; - data.img = mlx_new_image(mlx, WIDTH, HEIGHT); - data.addr = mlx_get_data_addr(data.img, &data.bpp, &data.line_len, &data.endian); - - t_point cam; - t_point canvas_center; - t_point p_top_left; - t_point p_bot_right; - t_point plane_center; - t_point plane_normal; - - - plane_center.x = 0; - plane_center.y = 0; - plane_center.z = 300; - - plane_normal.x = 0; - plane_normal.y = 0; - plane_normal.z = 1; - - cam.x = 0; - cam.y = 0; - cam.z = 0; - - canvas_center.x = 0; - canvas_center.y = 0; - canvas_center.z = 100; - - p_top_left.x = canvas_center.x- WIDTH/2; - p_top_left.y = canvas_center.y + HEIGHT/2; - p_top_left.z = canvas_center.z; - - p_bot_right.x = canvas_center.x + WIDTH/2; - p_bot_right.y = canvas_center.y - HEIGHT/2; - p_bot_right.z = canvas_center.z; - - print_coord("cam", cam); - print_coord("canvas_center", canvas_center); - print_coord("top left point", p_top_left); - print_coord("bot right point", p_bot_right); - shoot_rays(&data, cam, p_top_left, p_bot_right, plane_normal, plane_center); - - mlx_manage(&data); - return (1); -} diff --git a/minirt b/minirt new file mode 100755 index 0000000..79277bf Binary files /dev/null and b/minirt differ diff --git a/minirt-changed.h b/minirt-changed.h deleted file mode 100644 index c5a7df9..0000000 --- a/minirt-changed.h +++ /dev/null @@ -1,104 +0,0 @@ -/* ************************************************************************** */ -/* */ -/* ::: :::::::: */ -/* minirt.h :+: :+: :+: */ -/* +:+ +:+ +:+ */ -/* By: tfregni +#+ +:+ +#+ */ -/* +#+#+#+#+#+ +#+ */ -/* Created: 2023/05/23 16:43:46 by tfregni #+# #+# */ -/* Updated: 2023/05/26 21:13:56 by tfregni ### ########.fr */ -/* */ -/* ************************************************************************** */ - -#ifndef MINIRT_H -# define MINIRT_H -# include "libft.h" -# include -# include -# include -# define SPACE "\t\n\f\r\v " - -typedef enum e_err -{ - ARG_REQUIRED = 1, - FILE_EXTENSION, - INVALID_FILE, - INVALID_ELEMENT, -} t_err; - -typedef struct s_img -{ - void *mlx_ptr; - void *win_ptr; - char *name; - void *img; - char *addr; - int bpp; - int line_len; - int endian; -} t_img; - -typedef struct s_point -{ - float x; - float y; - float z; -} t_point; - -typedef t_point t_vector; - -typedef struct s_ambient -{ - float lighting_ratio; - t_point trgb; -} t_ambient; - -typedef struct s_camera -{ - t_point pos;//I think view is a bit confusing - t_vector orientation; - uint8_t fov; -} t_camera; - -typedef struct s_light -{ - t_point pos;//Consistency would be good in my opinion - float brightness; - t_point trgb; -} t_light; - -typedef struct s_sphere -{ - t_point pos; - float diameter; - t_point trgb; -} t_sphere; - -typedef struct s_plane -{ - t_point pos; - t_vector rot;//I think that's menant by the subject by normalized vector for axis/it is weird that it's in range [-1,1] maybe its in radians and not degrees, which would still not make sense - int trgb; -} t_plane; - -typedef struct s_cylinder -{ - t_point pos; - t_vector axis; - float rot; - float diameter; - float height; - t_point trgb; -} t_cylinder; - - -/* PARSE */ -int parse_args(char *filename); - -/* GRAPHIC */ -int create_trgb(int t, int r, int g, int b); - -/* ERROR HANDLING*/ -t_err ft_error(char *msg, char *arg, int err_code); - -#endif diff --git a/obj/camera.o b/obj/camera.o new file mode 100644 index 0000000..e7475fa Binary files /dev/null and b/obj/camera.o differ diff --git a/obj/cylinder.o b/obj/cylinder.o new file mode 100644 index 0000000..c4ff1de Binary files /dev/null and b/obj/cylinder.o differ diff --git a/obj/event_handler.o b/obj/event_handler.o new file mode 100644 index 0000000..2e2f8b3 Binary files /dev/null and b/obj/event_handler.o differ diff --git a/obj/libx.o b/obj/libx.o new file mode 100644 index 0000000..43488e8 Binary files /dev/null and b/obj/libx.o differ diff --git a/obj/main.o b/obj/main.o new file mode 100644 index 0000000..dbcb5a1 Binary files /dev/null and b/obj/main.o differ diff --git a/obj/matrix_calcs.o b/obj/matrix_calcs.o new file mode 100644 index 0000000..3f56789 Binary files /dev/null and b/obj/matrix_calcs.o differ diff --git a/obj/parse.o b/obj/parse.o new file mode 100644 index 0000000..4c8d1d7 Binary files /dev/null and b/obj/parse.o differ diff --git a/obj/parse_util.o b/obj/parse_util.o new file mode 100644 index 0000000..2a1c0c9 Binary files /dev/null and b/obj/parse_util.o differ diff --git a/obj/plane.o b/obj/plane.o new file mode 100644 index 0000000..71a72d9 Binary files /dev/null and b/obj/plane.o differ diff --git a/obj/populate_element.o b/obj/populate_element.o new file mode 100644 index 0000000..6806dd7 Binary files /dev/null and b/obj/populate_element.o differ diff --git a/obj/populate_solid.o b/obj/populate_solid.o new file mode 100644 index 0000000..d9f7914 Binary files /dev/null and b/obj/populate_solid.o differ diff --git a/obj/ray.o b/obj/ray.o new file mode 100644 index 0000000..d928ea8 Binary files /dev/null and b/obj/ray.o differ diff --git a/obj/render.o b/obj/render.o new file mode 100644 index 0000000..7bb2cab Binary files /dev/null and b/obj/render.o differ diff --git a/obj/shade.o b/obj/shade.o new file mode 100644 index 0000000..a54d12d Binary files /dev/null and b/obj/shade.o differ diff --git a/obj/sphere.o b/obj/sphere.o new file mode 100644 index 0000000..0b061ae Binary files /dev/null and b/obj/sphere.o differ diff --git a/obj/vec3.o b/obj/vec3.o new file mode 100644 index 0000000..b982d0b Binary files /dev/null and b/obj/vec3.o differ diff --git a/obj/vector_calcs.o b/obj/vector_calcs.o new file mode 100644 index 0000000..a246d20 Binary files /dev/null and b/obj/vector_calcs.o differ diff --git a/render.c b/render.c deleted file mode 100644 index 0bacbca..0000000 --- a/render.c +++ /dev/null @@ -1,174 +0,0 @@ -/* ************************************************************************** */ -/* */ -/* ::: :::::::: */ -/* render.c :+: :+: :+: */ -/* +:+ +:+ +:+ */ -/* By: tfregni +#+ +:+ +#+ */ -/* +#+#+#+#+#+ +#+ */ -/* Created: 2023/06/03 20:41:01 by tfregni #+# #+# */ -/* Updated: 2023/06/05 23:55:33 by tfregni ### ########.fr */ -/* */ -/* ************************************************************************** */ - -#include "minirt.h" -#include "vector_math.h" - -/** - * Can check interception with just the discriminant of the quadratic formula - * b^2 - 4ac. If < 0 no intersection, 0 tan, > 0 2 intersections - * a_quad = (bx^2 + by^2) = camera.direction sum of squares - * b_quad = (2axbx + 2ayby) = (2 * camera.origin.x * camera.direction.x) - * c_quad = (ax^2 + bx^2 - r^2) = camera.origin^2 etc. -*/ -// int intersect_circle(t_sphere sp, t_pxl p) -// { - -// } - -float ft_max(float a, float b) -{ - if (a > b) - return (a); - return (b); -} - -float ft_min(float a, float b) -{ - if (a < b) - return (a); - return (b); -} - -t_point_2d to_canvas(t_pxl pxl) -{ - t_point_2d ret; - float range; - float ratio; - - range = CANV_MAX_X - CANV_MIN_X; - ratio = WIDTH / HEIGHT; - // printf("range: %f ratio: %f\n", range, ratio); - ret.x = range * pxl.x / WIDTH + CANV_MIN_X; - ret.y = range * ratio * pxl.y / HEIGHT + CANV_MIN_Y; - return (ret); -} - -int apply_ligthing_ratio(int trgb, float lighting_ratio) -{ - return (create_trgb(0, \ - lighting_ratio * ((trgb >> 16) & 0xFF), - lighting_ratio * ((trgb >> 8) & 0xFF), - lighting_ratio * (trgb & 0xFF))); -} - -float calc_hit_point(float discriminant, float a, float b) -{ - float t0; - float t1; - - t0 = (-b - sqrt(discriminant)) / (2.0f * a); - t1 = (-b + sqrt(discriminant)) / (2.0f * a); - return (ft_min(t0, t1)); -} - -/** - * It returns the discriminant. If it's >=0 it assigns to t the value of - * the closest hit point -*/ -float intersect_sphere(t_scene *scene, t_vector ray_direction, float *t) -{ - float a; - float b; - float c; - float discriminant; - - a = vect_dot(ray_direction, ray_direction); - b = 2.0f * vect_dot(scene->camera.pos, ray_direction); - c = vect_dot(scene->camera.pos, scene->camera.pos) - pow((scene->sp->diameter / 2), 2); - discriminant = b * b - (4.0f * a * c); - if (discriminant >= 0) - *t = calc_hit_point(discriminant, a, b); - return (discriminant); -} - -float light_coeff(t_scene *scene, float t, t_vector ray_direction) -{ - t_vector hit_pos; - t_vector normal; - float light; - - hit_pos = vect_sum(scene->camera.pos, vect_mult(ray_direction, t)); - normal = vect_norm(vect_sub(hit_pos, scene->sp[0].pos)); - light = ft_max(vect_dot(normal, vect_inverse((vect_norm(scene->light.pos)))), 0.0f); - return (light); -} - -/** - * @returns a color as int - * @math - * circle = (x^2 - a) + (y^2 - b) - r^2 = 0 (a and b are the coord) - * ray = a + bt (a: origin b: direction t: distance) - * Substitute ray into circle and solve for t - * (bx^2 + by^2 + bz^2)t^2 + (2(axbx + ayby + azbz))t - * + (ax^2 +ay^2 + az^2 - r^2) = 0 - * a : ray origin (scene->camera.pos) - * b : ray direction (scene->camera.orientation) - * r : radius (scene->sphere.diameter / 2) - * t : hit distance - * Quadratic formula: (-b +- sqrt(b^2 - 4ac))/2a - * Discriminant: b^2 - 4ac -*/ -int per_pixel(t_pxl p, t_scene *scene) -{ - t_point_2d coord; - t_vector ray_direction; - float discriminant; - float t; - - coord = to_canvas(p); - ray_direction = vect_norm((t_vector){coord.x, coord.y, -1.0f}); - discriminant = intersect_sphere(scene, ray_direction, &t); - if (discriminant >= 0) - { - return (apply_ligthing_ratio(scene->sp[0].trgb, light_coeff(scene, t, ray_direction))); - } - return (apply_ligthing_ratio(scene->ambient.trgb, \ - scene->ambient.lighting_ratio)); -} - -/** - * The trgb value of a pxl not intersecting a solid is each 8bit color - * multiplied by the lighting ratio -*/ -void draw(t_scene *scene) -{ - t_pxl p; - t_img *data; - - data = scene->img; - p.y = 0; - while (p.y < HEIGHT) - { - p.x = 0; - while (p.x < WIDTH) - { - my_mlx_pixel_put_d(scene->img, p.x, p.y, per_pixel(p, scene)); - p.x++; - } - p.y++; - } - // p.x = 250; - // t_point_2d point = to_canvas(p); - // printf("pxl x: %d y: %d canvas x: %f y: %f\n", p.x, p.y, point.x, point.y); - mlx_put_image_to_window(data->mlx_ptr, data->win_ptr, data->img, 0, 0); -} - -t_err render_scene(t_scene *scene) -{ - if (!init_img(scene)) - { - draw(scene); - mlx_manage(scene); - } - return (SUCCESS); -} diff --git a/scene.rt b/scene.rt deleted file mode 100644 index 16768bf..0000000 --- a/scene.rt +++ /dev/null @@ -1,45 +0,0 @@ -CA hdik fhdjkslfdh hjdkl h fddfj - - -C 1,1,1 0,0,0 185 -C -50.0,0,20 0,0,1 70 -C 30,23,0.567 -1.1,1,0.2 67 -C -50.0,0,20 0,0,1 70 njsk - -L -50.0,0,20 0.6 -1,0,1 -L -50.0,0,20 -L -50.0,0,20 0.6 0,0,1 -L -50.0,0,20 -0.6 0,0,1 -L -50.0,0,20 0.6 0,0,1 - - - -A 0.8 12,12,254 -A 1,2,3 12,12,256 -A -0.2 -1,245,112 -A 0.67 127,128,129 - -sp -1.4,245.34,112.1 12.6 1,1,1 -sp -1.4,245.34,112.1 0 1,1,1 -sp 12.6 -1.4,245.34,112.1 -1,1,1 -sp -1.4,245.34,112.1 12.6 1,1,1 - jk - - - -sP -Pl - - - - -pl -1.4,245.34,112.1 0.45,0.2,0.99 -245,245,250 -pl 245.34,112.1 -0.45,0.2,0.99 245,245,250 -pl -1.4,245.34,112.1 -0.45,0.2,0.99 265,245,250 -pl -1.4,245.34,112.1 -1.45,0.2,0.99 245,245,250 - -cy bndjk fdbjk - - - -A fdbhj 4t67 diff --git a/scenes/basic_shapes.rt b/scenes/basic_shapes.rt new file mode 100644 index 0000000..b5b65ff --- /dev/null +++ b/scenes/basic_shapes.rt @@ -0,0 +1,25 @@ +R 800 600 +A 0.5 255,255,255 + +## Optional +L 0,4,4 0.1 255,255,255 + +## Test 1 +# C 0,0,8 0,0,-1 100 +# sp 0,0,0 8 216,56,136 + +## Test 2 +# C 0,0,8 0,0,-1 100 +# pl 0,0,0 0,0,1 0,176,240 + +## Test 3 +# C 0,0,8 0,0,-1 100 +# sq 0,0,0 0,0,1 10 0,0,255 + +## Test 4 +C 0,0,50 0,0,-1 100 +cy 0,-4,-1 0,1,0 4 8 140,118,206 + +## Test 5 +# c -30,10,10 1,0,0 80 +# tr 0,20,0 0,0,0 0,10,20 255,255,0 \ No newline at end of file diff --git a/scenes/camera.rt b/scenes/camera.rt new file mode 100644 index 0000000..6cc559d --- /dev/null +++ b/scenes/camera.rt @@ -0,0 +1,29 @@ +A 0.3 255,255,255 +pl 0,-30,0 0,1,0 91,255,80 +L 6,20,-20 1 255,255,255 +#cy 0,0,0 0,1,0 2 10 56,189,224 + +# general overview +C 0,100,0 0.1,-1,0 90 + +# z front +#C 0,0,0 0,0,1 55 +sp 0,0,30 10 250,117,11 +# z back +#C 0,0,0 0,0,-1 55 +sp 0,0,-30 10 91,255,80 + +# x front +#C 0,0,0 1,0,0 55 +sp 30,0,0 10 255,85,85 +# x back +#C 0,0,0 -1,0,0 55 +sp -30,0,0 10 154,85,255 + +# y up +#C 0,0,0 0,1,0 55 +sp 0,30,0 10 41,154,229 +# y down +#C 0,0,0 0,-1,0 55 +sp 0,-30,0 10 144,237,252 + diff --git a/circle.rt b/scenes/circle.rt similarity index 50% rename from circle.rt rename to scenes/circle.rt index 4cdc64c..ff38720 100644 --- a/circle.rt +++ b/scenes/circle.rt @@ -1,4 +1,4 @@ -C 0,0,-10 0,0,0 30 +C 0.2,0.4,-10 0,0,0 90 A 0.8 127,127,127 -L 0,0,-6 0.6 +L 0,0,-10 0.6 sp 0,0,0 4 255,0,0 diff --git a/scenes/cylinders.rt b/scenes/cylinders.rt new file mode 100644 index 0000000..214d801 --- /dev/null +++ b/scenes/cylinders.rt @@ -0,0 +1,12 @@ +C 0,0,0 0,0,-1 55 +A 0.8 127,127,127 +L 0,5,-1 0.8 +# pl 0,-3,0 0,1,0 255,20,100 +# pl 0,0,1 -1,-0.1,0.1 0,255,0 +# sp 1,0,0 0.8 0,255,0 + +sp 3,2,-10 1 0,255,0 + cy 3,-4,-15 1,-0.2,0 10 10 10,0,255 + +# cy 0,0,-20 -0.2,0.3,1.0 2 1 10,100,100 + diff --git a/scenes/mult_circle.rt b/scenes/mult_circle.rt new file mode 100644 index 0000000..c4a2f13 --- /dev/null +++ b/scenes/mult_circle.rt @@ -0,0 +1,5 @@ +C 0,0,10 0,0,0 40 +A 0.8 127,127,127 +L 50,0,0 0.8 +sp -2,0,0 3 255,0,0 +sp 0.8,0,0 0.4 0,255,0 diff --git a/scenes/orient.rt b/scenes/orient.rt new file mode 100644 index 0000000..fd6d5db --- /dev/null +++ b/scenes/orient.rt @@ -0,0 +1,6 @@ +C 0,0,6 0,0,0 90 +A 0.8 127,127,127 +L -3,0,3 0.8 +sp 0,0,0 3 255,0,0 +#sp 0.8,0,0 0.4 0,255,0 +#sp 0,5,0 2 0,0,255 diff --git a/scenes/plane.rt b/scenes/plane.rt new file mode 100644 index 0000000..5feab2b --- /dev/null +++ b/scenes/plane.rt @@ -0,0 +1,8 @@ +C 1,0,3.1 0,0,0 55 +A 0.8 127,127,127 +L 1,-2,-1 0.8 +pl 0,10,10 -0.1,1,-0.1 255,20,100 +# pl 0,0,1 -1,-0.1,0.1 0,255,0 +sp 1,0,0 0.8 0,255,0 +# sp 0,0,0 0.8 0,255,0 + diff --git a/scenes/plane_new.rt b/scenes/plane_new.rt new file mode 100644 index 0000000..1996eb8 --- /dev/null +++ b/scenes/plane_new.rt @@ -0,0 +1,9 @@ +C 0,0,1 0,0,-1 60 +A 0.8 127,127,127 +L 0,3,0 0.8 +pl 0,-2,2 0,0.4,0 255,20,100 +# pl 0,0,1 -1,-0.1,0.1 0,255,0 +sp -3,-1,-3 0.8 0,255,0 +sp 0,0,-5 0.8 255,255,0 +# sp -30,0,-5 0.8 255,255,0 + diff --git a/scenes/rt_weekend.rt b/scenes/rt_weekend.rt new file mode 100644 index 0000000..a77e202 --- /dev/null +++ b/scenes/rt_weekend.rt @@ -0,0 +1,8 @@ +C 1,0,3.1 0,0,0 40 +A 0.8 127,127,127 +L 1,0,-1 0.8 +sp 1,0,2 0.01 255,255,255 +sp -1,0,-2 0.8 255,0,0 +sp 0,0,-2 0.8 0,255,0 +sp 2,0,-2 0.8 0,0,255 + diff --git a/scenes/scene.rt b/scenes/scene.rt new file mode 100644 index 0000000..18493fc --- /dev/null +++ b/scenes/scene.rt @@ -0,0 +1,45 @@ +CA hdik fhdjkslfdh hjdkl h fddfj + + +C 1,1,1 0,0,0 185 +C -50.0,0,20 0,0,1 70 +C 30,23,0.567 -1.1,1,0.2 67 +C -50.0,0,20 0,0,1 70 njsk + +L -50.0,0,20 0.6 -1,0,1 +L -50.0,0,20 +L -50.0,0,20 0.6 0,0,1 +L -50.0,0,20 -0.6 0,0,1 +L -50.0,0,20 0.6 0,0,1 + + + +# A 0.8 12,12,254 +# A 1,2,3 12,12,256 +# A -0.2 -1,245,112 +# A 0.67 127,128,129 + +# sp -1.4,245.34,112.1 12.6 1,1,1 +# sp -1.4,245.34,112.1 0 1,1,1 +# sp 12.6 -1.4,245.34,112.1 -1,1,1 +# sp -1.4,245.34,112.1 12.6 1,1,1 +# jk + + + +# sP +# Pl + + + + +# pl -1.4,245.34,112.1 0.45,0.2,0.99 -245,245,250 +# pl 245.34,112.1 -0.45,0.2,0.99 245,245,250 +# pl -1.4,245.34,112.1 -0.45,0.2,0.99 265,245,250 +# pl -1.4,245.34,112.1 -1.45,0.2,0.99 245,245,250 + +# cy bndjk fdbjk + + + +# A fdbhj 4t67 diff --git a/srcs/camera.c b/srcs/camera.c new file mode 100644 index 0000000..903f530 --- /dev/null +++ b/srcs/camera.c @@ -0,0 +1,48 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* camera.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: tvasilev +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2023/06/15 12:54:25 by tfregni #+# #+# */ +/* Updated: 2023/09/04 16:42:30 by tvasilev ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#include "camera.h" +#include "ray.h" +#include + +double radians(double grades) +{ + return (grades * M_PI / 180); +}; + +void cam_orientation(t_camera *c) +{ + c->look_at = vec3_unit(c->orientation); + c->right = vec3_unit(vec3_cross(c->vert_up, c->look_at)); + c->up = vec3_unit(vec3_cross(c->look_at, c->right)); +} + +void cam_setup(t_camera *c) +{ + cam_orientation(c); + c->aspect_ratio = WIDTH / (double)HEIGHT; + c->viewport_width = 2.0f * (tan(radians(c->fov) / 2.0f)); + c->viewport_height = c->viewport_width / c->aspect_ratio; + c->half_hor = c->viewport_width/2; + c->half_ver = c->viewport_height/2; + c->horizontal = vec3(c->viewport_width, 0, 0); + c->vertical = vec3(0, -c->viewport_height, 0); + c->orientation = vec3_unit(c->orientation); + c->viewport_top_left = ray_at(ray(c->pos, c->orientation), c->focal_length); + c->viewport_top_left = vec3_sub(c->viewport_top_left, vec3_mult(c->right, c->viewport_width/2)); + c->viewport_top_left = vec3_sum(c->viewport_top_left, vec3_mult(c->up, c->viewport_height/2)); + c->pxl_size_hor = vec3_div(c->horizontal, WIDTH); + c->pxl_size_ver = vec3_div(c->vertical, HEIGHT); + printf("Cam_pos: (%f, %f, %f)\n", c->pos.x, c->pos.y, c->pos.z); + printf("Cam_orient: (%f, %f, %f)\n", c->orientation.x, c->orientation.y, c->orientation.z); + printf("\n\n"); +} diff --git a/srcs/cylinder.c b/srcs/cylinder.c new file mode 100644 index 0000000..2cd187a --- /dev/null +++ b/srcs/cylinder.c @@ -0,0 +1,220 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* cylinder.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: tvasilev +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2023/08/01 16:18:37 by tvasilev #+# #+# */ +/* Updated: 2023/09/04 20:07:58 by tvasilev ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#include "minirt.h" +#include "vector_math.h" + +bool cy_hit_record(double t, t_shape *shape, t_hit_record *rec, t_ray ray, double m) +{ + if (t > 0.000001f && t < rec->t) + { + rec->t = t; + rec->p = ray_at(ray, t); + rec->normal = vect_norm(vect_sub( rec->p, vect_sub(shape->cy.center, vect_mult(shape->rotation, m)))); + rec->color = shape->color; + return (true); + } + return (false); +} + +bool cy_hit_cap_record(double t, t_shape *shape, t_hit_record *rec, t_ray ray) +{ + if (t > 0.000001f && t < rec->t) + { + rec->t = t; + rec->p = ray_at(ray, t); + //rec->normal = vect_norm(); + rec->color = shape->color; + return (true); + } + return (false); +} + +//make so it only takes the first t +bool cap(t_shape *shape, double t, t_ray ray, t_vector Ce, t_hit_record *rec) +{ + t_vector V; + t_vector p; + + p = ray_at(ray, t); + V = vect_sub(p, Ce); + if (vect_mag(V) <= shape->cy.diameter/2) + return (cy_hit_cap_record(t, shape, rec, ray)); + return (false); +} + + +bool hit_plane_top(t_shape *shape, t_ray r, t_hit_record *rec) +{ + t_vector p0 = vect_sum(shape->cy.center, vect_mult(shape->rotation, shape->cy.height)); + t_vector n = vect_inverse(vect_norm(shape->rotation)); + t_vector l0 = r.origin; + t_vector l = vect_norm(r.direction); + float denom = vect_dot(n, l); + if (denom > 1e-6) + { + t_vector p0l0 = vect_sub(p0, l0); + return (cap(shape, vect_dot(p0l0, n) / denom, r, p0, rec)); + } + return (false); +} + + +bool hit_plane_bot(t_shape *shape, t_ray r, t_hit_record *rec) +{ + t_vector p0 = shape->cy.center; + t_vector n = vect_norm(shape->rotation); + t_vector l0 = r.origin; + t_vector l = vect_norm(r.direction); + float denom = vect_dot(n, l); + if (denom > 1e-6) + { + t_vector p0l0 = vect_sub(p0, l0); + return (cap(shape, vect_dot(p0l0, n) / denom, r, p0, rec)); + } + return (false); +} + + + +//make so it only takes the first t +bool cap_inter(t_shape *shape, double t, t_ray ray, t_vector Ce, float *tt) +{ + t_vector V; + t_vector p; + + p = ray_at(ray, t); + V = vect_sub(p, Ce); + if (vect_mag(V) <= shape->cy.diameter/2) + { + *tt = t; + return (true); + } + return (false); +} + +bool hit_plane_top_inter(t_shape *shape, t_ray r, float *t) +{ + t_vector p0 = vect_sum(shape->cy.center, vect_mult(shape->rotation, shape->cy.height)); + t_vector n = vect_inverse(vect_norm(shape->rotation)); + t_vector l0 = r.origin; + t_vector l = vect_norm(r.direction); + float denom = vect_dot(n, l); + if (denom > 1e-6) + { + t_vector p0l0 = vect_sub(p0, l0); + return (cap_inter(shape, vect_dot(p0l0, n) / denom, r, p0, t)); + } + return (false); +} + + +bool hit_plane_bot_inter(t_shape *shape, t_ray r, float *t) +{ + t_vector p0 = shape->cy.center; + t_vector n = vect_norm(shape->rotation); + t_vector l0 = r.origin; + t_vector l = vect_norm(r.direction); + float denom = vect_dot(n, l); + if (denom > 1e-6) + { + t_vector p0l0 = vect_sub(p0, l0); + return (cap_inter(shape, vect_dot(p0l0, n) / denom, r, p0, t)); + } + return (false); +} + +//! not really needed I think +//* Edit * needed for the shadow casting +//! Caps dont cast shadows +int intersect_cylinder(t_scene *scene, t_ray r, float *t, int i) +{ + double a; + double b; + double c; + double discriminant; + double t1,t2, m1, m2; + t_hit_record rec; + t_vector olddir; + t_vector X; + + *t = 0; + // rec = NULL; + rec.t = RAY_LEN; + scene->shape[i].rotation = vect_norm(scene->shape[i].rotation); + // if (hit_plane_top_inter(&(scene->shape[i]), r, t) || hit_plane_bot_inter(&(scene->shape[i]), r, t)) + // ; + // //return (1); + olddir = r.direction; + r.direction = vect_cross(r.direction, scene->shape[i].rotation); + X = vect_sub(r.origin, scene->shape[i].cy.center); + a = vect_dot(r.direction, r.direction); + b = 2 * vect_dot(r.direction, vect_cross(X, scene->shape[i].rotation)); + c = vect_dot(vect_cross(X, scene->shape[i].rotation), vect_cross(X, scene->shape[i].rotation)) - ((scene->shape[i].cy.diameter / 2) * (scene->shape[i].cy.diameter / 2)); + //? maybe normalize the r direction first + discriminant = b * b - 4 * a * c; + t1 = (-b - sqrt(discriminant)) / (2.0 * a); + t2 = (-b + sqrt(discriminant)) / (2.0 * a); + m1 = vect_dot(olddir, scene->shape[i].rotation) * t1 + vect_dot(X, scene->shape[i].rotation); + m2 = vect_dot(olddir, scene->shape[i].rotation) * t2 + vect_dot(X, scene->shape[i].rotation); + + if (t1 > 0 && m1 >= 0 && m1 <= scene->shape[i].cy.height) + *t = t1; + else if (t2 > 0 && m2 >= 0 && m2 <= scene->shape[i].cy.height) + *t = t2; + return (discriminant); +} + +//first check if it hits a plane +//limit the plane with the top_cap function +bool cy_hit(t_shape *shape, t_ray r, t_hit_record *rec) +{ + double a; + double b; + double c; + double t1,t2,t, m1, m2, m; + double discriminant; + t_vector olddir; + t_vector X; + + t = m = 0; + shape->rotation = vect_norm(shape->rotation); + if (hit_plane_top(shape, r, rec) || hit_plane_bot(shape, r, rec)) + return (true); + olddir = r.direction; + r.direction = vect_cross(r.direction, shape->rotation); + X = vect_sub(r.origin, shape->cy.center); + a = vect_dot(r.direction, r.direction); + b = 2 * vect_dot(r.direction, vect_cross(X, shape->rotation)); + c = vect_dot(vect_cross(X, shape->rotation), vect_cross(X, shape->rotation)) - ((shape->cy.diameter / 2) * (shape->cy.diameter / 2)); + discriminant = b * b - 4 * a * c; + if (discriminant < 0) + return (false); + t1 = (-b - sqrt(discriminant)) / (2.0 * a); + t2 = (-b + sqrt(discriminant)) / (2.0 * a); + m1 = vect_dot(olddir, shape->rotation) * t1 + vect_dot(X, shape->rotation); + m2 = vect_dot(olddir, shape->rotation) * t2 + vect_dot(X, shape->rotation); + + if (t1 > 0 && m1 >= 0 && m1 <= shape->cy.height) + { + t = t1; + m = m1; + } + else if (t2 > 0 && m2 >= 0 && m2 <= shape->cy.height) + { + t = t2; + m = m2; + } + else + return (false); + return (cy_hit_record(t, shape, rec, r, m)); +} \ No newline at end of file diff --git a/event_handler.c b/srcs/event_handler.c similarity index 61% rename from event_handler.c rename to srcs/event_handler.c index 7615118..2e705d2 100644 --- a/event_handler.c +++ b/srcs/event_handler.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* event_handler.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: tfregni +#+ +:+ +#+ */ +/* By: tvasilev +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/06/03 12:29:38 by tvasilev #+# #+# */ -/* Updated: 2023/06/06 11:46:39 by tfregni ### ########.fr */ +/* Updated: 2023/09/04 17:58:37 by tvasilev ### ########.fr */ /* */ /* ************************************************************************** */ @@ -28,25 +28,29 @@ int key_handle(int keycode, t_scene *scene) if (keycode == ESC) free_img(data); else if (keycode == PLUS) - scene->ambient.lighting_ratio += 0.1; + scene->camera.pos.z += CAM_PACE; else if (keycode == MINUS) - scene->ambient.lighting_ratio -= 0.1; + scene->camera.pos.z -= CAM_PACE; else if (keycode == UP) scene->camera.pos.y += CAM_PACE; else if (keycode == DOWN) scene->camera.pos.y -= CAM_PACE; else if (keycode == LEFT) - scene->camera.pos.x += CAM_PACE; - else if (keycode == RIGHT) scene->camera.pos.x -= CAM_PACE; - else if (keycode == A) - scene->light.pos.x -= LIGHT_PACE; - else if (keycode == D) - scene->light.pos.x += LIGHT_PACE; + else if (keycode == RIGHT) + scene->camera.pos.x += CAM_PACE; + else if (keycode == Q) + scene->camera.orientation.z -= ORIENT_PACE; + else if (keycode == E) + scene->camera.orientation.z += ORIENT_PACE; else if (keycode == W) - scene->light.pos.y -= LIGHT_PACE; + scene->camera.orientation.y -= ORIENT_PACE; else if (keycode == S) - scene->light.pos.y += LIGHT_PACE; + scene->camera.orientation.y += ORIENT_PACE; + else if (keycode == A) + scene->camera.orientation.x += ORIENT_PACE; + else if (keycode == D) + scene->camera.orientation.x -= ORIENT_PACE; else ft_printf("KeyCode: %d\n", keycode); if (keycode != ESC) @@ -54,6 +58,26 @@ int key_handle(int keycode, t_scene *scene) return (0); } +int track_delta(int button, int x, int y, t_scene *scene) +{ + t_camera *c; + + (void) x; + (void) y; + (void) button; + c = &scene->camera; + // if (button == LEFT_BUTTON) + // { + // // H : 1 = d : x + // // printf("Dist: %f %f\n", (x - c->delta.x) / HEIGHT, (c->delta.y - y) / HEIGHT); + // c->orientation.x += (x - c->delta.x) / HEIGHT; + // c->orientation.y += (c->delta.y - y) / HEIGHT; + // c->delta = (t_point_2d){0, 0}; + // draw(scene); + // } + return (0); +} + int mouse_handle(int button, int x, int y, t_scene *scene) { t_img *data; @@ -62,9 +86,12 @@ int mouse_handle(int button, int x, int y, t_scene *scene) (void) y; data = scene->img; if (button == WHEEL_UP) - scene->camera.pos.z -= CAM_PACE; - else if (button == WHEEL_DOWN) - scene->camera.pos.z += CAM_PACE; - draw(scene); + scene->camera.fov -= 1; + if (button == WHEEL_DOWN) + scene->camera.fov += 1; + // if (button == LEFT_BUTTON) + // scene->camera.delta = (t_point_2d){x, y}; + if (button != LEFT_BUTTON) + draw(scene); return (0); } diff --git a/libx.c b/srcs/libx.c similarity index 91% rename from libx.c rename to srcs/libx.c index c72058b..80bf270 100644 --- a/libx.c +++ b/srcs/libx.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* libx.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: tfregni +#+ +:+ +#+ */ +/* By: tvasilev +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/05/26 08:25:02 by tfregni #+# #+# */ -/* Updated: 2023/06/05 11:10:15 by tfregni ### ########.fr */ +/* Updated: 2023/07/31 16:00:48 by tvasilev ### ########.fr */ /* */ /* ************************************************************************** */ @@ -36,6 +36,7 @@ int mlx_manage(t_scene *scene) data = scene->img; mlx_key_hook(data->win_ptr, &key_handle, scene); mlx_mouse_hook(data->win_ptr, &mouse_handle, scene); + mlx_hook(data->win_ptr, ON_MOUSEUP, (1L << 3), &track_delta, scene); mlx_hook(data->win_ptr, ON_DESTROY, 0, &free_img, data); // mlx_put_image_to_window(data->mlx_ptr, data->win_ptr, data->img, 0, 0); mlx_loop(data->mlx_ptr); diff --git a/main.c b/srcs/main.c similarity index 81% rename from main.c rename to srcs/main.c index a1c5587..216d1d1 100644 --- a/main.c +++ b/srcs/main.c @@ -6,7 +6,7 @@ /* By: tfregni +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/05/23 16:42:10 by tfregni #+# #+# */ -/* Updated: 2023/06/03 20:38:38 by tfregni ### ########.fr */ +/* Updated: 2023/08/27 15:58:30 by tfregni ### ########.fr */ /* */ /* ************************************************************************** */ @@ -14,12 +14,9 @@ void free_scene(t_scene **scene) { - free((*scene)->sp); - free((*scene)->pl); - free((*scene)->cy); - (*scene)->sp = NULL; - (*scene)->pl = NULL; - (*scene)->cy = NULL; + // free((*scene)->shape->type); + free((*scene)->shape); + (*scene)->shape = NULL; free(*scene); *scene = NULL; } @@ -64,11 +61,10 @@ t_err ft_error(char *msg, char *arg, int err_code, t_scene *scene) */ t_err init_scene(t_scene *scene) { - scene->sp = ft_calloc(sizeof(t_sphere), (MAX_SOLID + 1)); - scene->pl = ft_calloc(sizeof(t_plane), (MAX_SOLID + 1)); - scene->cy = ft_calloc(sizeof(t_cylinder), (MAX_SOLID + 1)); - if (!scene->sp || !scene->pl || !scene->cy) + scene->shape = ft_calloc(sizeof(t_shape), (MAX_SOLID + 1)); + if (!scene->shape) return (MEM_FAIL); + scene->shape_count = 0; return (SUCCESS); } @@ -76,10 +72,10 @@ int main(int ac, char **av) { t_scene *scene; - if (ac != 2) + if (ac != 2 || WIDTH <= 0 || HEIGHT <= 0) return (ft_putendl_fd("miniRT: bad arguments", 2), ARG_REQUIRED); scene = malloc(sizeof(t_scene)); - if (!scene || init_scene(scene)) + if (!scene || init_scene(scene) != SUCCESS) return (ft_putendl_fd("miniRT: memory fail", 2), MEM_FAIL); if (parse_args(scene, av[1])) { diff --git a/srcs/matrix_calcs.c b/srcs/matrix_calcs.c new file mode 100644 index 0000000..7b66a76 --- /dev/null +++ b/srcs/matrix_calcs.c @@ -0,0 +1,189 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* matrix_calcs.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: tfregni +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2023/06/08 18:05:50 by tfregni #+# #+# */ +/* Updated: 2023/06/14 10:45:24 by tfregni ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#include "minirt.h" +#include "matrix_math.h" + +/** + * @param p 3D point. Its 4th dimension is implicitly set to 1 + * @param m 4x4: matrix + * @returns a transformed 3D point +*/ +t_point_3d transform(t_point_3d p, t_matrix_trans m) +{ + t_point_3d ret; + float w; + + w = p.x * m[0][3] + p.y * m[1][3] + p.z * m[2][3] + m[3][3]; + ret.x = (p.x * m[0][0] + p.y * m[1][0] + p.z * m[2][0] + m[3][0]); + ret.y = (p.x * m[0][1] + p.y * m[1][1] + p.z * m[2][1] + m[3][1]); + ret.z = (p.x * m[0][2] + p.y * m[1][2] + p.z * m[2][2] + m[3][2]); + if (w != 1) + { + ret.x = ret.x / w; + ret.y = ret.y / w; + ret.z = ret.z / w; + } + return (ret); +} + +t_matrix create_matrix(const float mx[4][4], size_t size) +{ + t_matrix m; + + m.size = size; + ft_memmove(m.matrix, mx, sizeof(float) * 16); + return (m); +} + +t_matrix mx_get_identity(void) +{ + const float mx[4][4] = { + {1, 0, 0, 0}, + {0, 1, 0, 0}, + {0, 0, 1, 0}, + {0, 0, 0, 1} + }; + t_matrix m; + + m = create_matrix(mx, 16); + return (m); +} + +t_point_3d mx_mult(t_matrix m, t_point_3d p) +{ + t_point_3d ret; + float w; + + w = p.x * m.matrix[0][3] + p.y * m.matrix[1][3] + \ + p.z * m.matrix[2][3] + m.matrix[3][3]; + ret.x = (p.x * m.matrix[0][0] + p.y * m.matrix[1][0] + \ + p.z * m.matrix[2][0] + m.matrix[3][0]); + ret.y = (p.x * m.matrix[0][1] + p.y * m.matrix[1][1] + \ + p.z * m.matrix[2][1] + m.matrix[3][1]); + ret.z = (p.x * m.matrix[0][2] + p.y * m.matrix[1][2] + \ + p.z * m.matrix[2][2] + m.matrix[3][2]); + if (w != 1) + { + ret.x = ret.x / w; + ret.y = ret.y / w; + ret.z = ret.z / w; + } + return (ret); +} + +t_matrix mx_cross(t_matrix a, t_matrix b) +{ + float m[4][4]; + size_t row; + size_t col; + + ft_bzero(m, sizeof(float) * 16); + row = -1; + while (++row < 4) + { + col = -1; + while (++col < 4) + { + m[row][col] = a.matrix[row][0] * b.matrix[0][col] + + a.matrix[row][1] * b.matrix[1][col] + + a.matrix[row][2] * b.matrix[2][col] + + a.matrix[row][3] * b.matrix[3][col]; + } + } + return (create_matrix(m, 4)); +} + +/** + * Rx = [ 1 0 0 0 ; + 0 cos(α) sin(α) 0 ; + 0 -sin(α) cos(α) 0 ; + 0 0 0 1 ] +*/ +t_matrix mx_rotate_x(t_matrix mx, float x) +{ + const float mx_rx[4][4] = { + {1, 0, 0, 0}, + {0, cos(x * M_PI), sin(x * M_PI), 0}, + {0, -sin(x * M_PI), cos(x * M_PI), 0}, + {0, 0, 0, 1} + }; + t_matrix cross; + + cross = mx_cross(mx, create_matrix(mx_rx, 16)); + return (cross); +} + +/** +Ry = [ cos(β) 0 -sin(β) 0 ; + 0 1 0 0 ; + sin(β) 0 cos(β) 0 ; + 0 0 0 1 ] +*/ +t_matrix mx_rotate_y(t_matrix mx, float y) +{ + const float mx_ry[4][4] = { + {cos(y * M_PI), 0, -sin(y * M_PI), 0}, + {0, 1, 0, 0}, + {sin(y * M_PI), 0, cos(y * M_PI), 0}, + {0, 0, 0, 1} + }; + t_matrix cross; + + cross = mx_cross(mx, create_matrix(mx_ry, 16)); + return (cross); +} + +/** +Rz = [ cos(γ) sin(γ) 0 0 ; + -sin(γ) cos(γ) 0 0 ; + 0 0 1 0 ; + 0 0 0 1 ] +*/ +t_matrix mx_rotate_z(t_matrix mx, float z) +{ + const float mx_rz[4][4] = { + {cos(z * M_PI), sin(z * M_PI), 0, 0}, + {-sin(z * M_PI), cos(z * M_PI), 0, 0}, + {0, 0, 1, 0}, + {0, 0, 0, 1} + }; + t_matrix cross; + + cross = mx_cross(mx, create_matrix(mx_rz, 16)); + return (cross); +} + +t_matrix mx_transl(t_matrix mx, t_point_3d p) +{ + const float mx_tr[4][4] = { + {1, 0, 0, p.x}, + {0, 1, 0, p.y}, + {0, 0, 1, p.z}, + {0, 0, 0, 1} + }; + t_matrix cross; + + cross = mx_cross(mx, create_matrix(mx_tr, 16)); + return (cross); +} + +t_matrix mx_combine(t_matrix mx, t_vector orient) +{ + t_matrix comb; + + comb = mx; + comb = mx_rotate_x(comb, orient.x); + comb = mx_rotate_y(comb, orient.y); + comb = mx_rotate_z(comb, orient.z); + return (comb); +} diff --git a/parse.c b/srcs/parse.c similarity index 75% rename from parse.c rename to srcs/parse.c index f22a9d1..f77c1ab 100644 --- a/parse.c +++ b/srcs/parse.c @@ -6,7 +6,7 @@ /* By: tfregni +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/05/25 09:24:43 by tfregni #+# #+# */ -/* Updated: 2023/06/03 20:40:42 by tfregni ### ########.fr */ +/* Updated: 2023/06/12 19:05:48 by tfregni ### ########.fr */ /* */ /* ************************************************************************** */ @@ -26,13 +26,11 @@ // } /** - * I create a triple flag as int array to check that the unique + * I pass it a triple flag as int array to check that the unique * elements are not set multiple times. */ -t_err handle_unique(t_scene *scene, char **el) +t_err handle_unique(t_scene *scene, char **el, uint8_t *flag) { - static int flag[3] = {0}; - if (!ft_strcmp(el[0], "A")) { ft_printf("Ambient\n"); @@ -59,29 +57,38 @@ t_err handle_unique(t_scene *scene, char **el) } else ft_printf("Element not recognized\n"); - // print_flag(flag); return (SUCCESS); } /** - * In case of invalid solid should we exit or move on? + * In case of invalid solid we throw a warning + * and move on to the next line */ void handle_solid(t_scene *scene, char **el) { if (!ft_strcmp(el[0], "sp")) { if (!validate_sphere(scene, el)) - ft_printf("Sphere\n"); + { + printf("Sphere\n"); + scene->shape_count++; + } } else if (!ft_strcmp(el[0], "pl")) { if (!validate_plane(scene, el)) + { + scene->shape_count++; ft_printf("Plane\n"); + } } else if (!ft_strcmp(el[0], "cy")) { if (!validate_cylinder(scene, el)) + { + scene->shape_count++; ft_printf("Cylinder\n"); + } } else ft_printf("Solid not recognized\n"); @@ -91,40 +98,37 @@ void handle_solid(t_scene *scene, char **el) * Added support to comment # to make testing scenes easier * @returns 0 for success, > 0 for err_code */ -int parse_element(t_scene *scene, char *line) +int parse_element(t_scene *scene, char *line, uint8_t *flag) { char **el; - int ret; el = ft_split_by_sep(line, SPACE); if (!el) return (ft_warning("invalid element: ", el[0], \ INVALID_ELEMENT)); - ret = 0; - if (el[0] && el[0][0]) + if (el[0] && el[0][0] && el[0][0] != '#') { - if (el[0][0] == '#') - ret = 1; - else if (ft_isalpha(el[0][0]) && el[0][0] <= 'Z') - handle_unique(scene, el); + if (ft_isalpha(el[0][0]) && el[0][0] <= 'Z') + handle_unique(scene, el, flag); else if (ft_isalpha(el[0][0]) && el[0][0] >= 'a') handle_solid(scene, el); } ft_free_str_arr(el); - return (ret); + return (SUCCESS); } /** * @returns 0 for success, > 0 for err_code + * It will return an error if the scene doesn't have + * an Ambient or a Light or a Camera */ int parse_args(t_scene *scene, char *filename) { - int len; - int fd; - char *line; + int fd; + char *line; + static uint8_t flag[3] = {0}; - len = ft_strlen(filename); - if (ft_strncmp(".rt", &filename[len - 3], 4)) + if (ft_strncmp(".rt", &filename[ft_strlen(filename) - 3], 4)) return (ft_warning("invalid file ext", NULL, FILE_EXTENSION)); fd = open(filename, O_RDONLY); if (fd < 0) @@ -138,9 +142,12 @@ int parse_args(t_scene *scene, char *filename) break ; if (!ft_strcmp(line, "\n")) continue ; - parse_element(scene, line); + parse_element(scene, line, flag); } close(fd); - render_scene(scene); - return (0); + if (flag[0] && flag[1] && flag[2]) + { + return (render_scene(scene)); + } + return (ft_warning("cannot render", "missing element", MISS_UNIQUE)); } diff --git a/parse_util.c b/srcs/parse_util.c similarity index 100% rename from parse_util.c rename to srcs/parse_util.c diff --git a/srcs/plane.c b/srcs/plane.c new file mode 100644 index 0000000..c8ed3a5 --- /dev/null +++ b/srcs/plane.c @@ -0,0 +1,123 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* plane.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: tfregni +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2023/06/07 23:25:30 by tfregni #+# #+# */ +/* Updated: 2023/08/29 00:58:41 by tfregni ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#include "minirt.h" +#include "vector_math.h" +#include "vec3.h" + +/** + * ray: p = a + bt + * p: a point on the ray + * a: the origin (camera.pos) + * b: direction + * t: distance along the ray + * plane: (p - p0)·n = 0 + * p0: given point on the plane (pl.pos) + * p: an arbitrary point on the plane + * n: the normal vector + * The vector between p and p0 is the difference between them + * This vector lies on the plane and therefore it's perpendicular + * to the normal. The dot product of perpendicular vectors is 0. + * If I substitute the ray equation into the plane equation to + * look for a point that belongs to both + * (a + bt - p0)·n = 0 which solved for t is + * ((p0 - a) · n) / b · n +*/ +// int intersect_plane(t_scene *scene, t_ray ray, float *t, int i) +// { +// float denominator; +// float numerator; + +// denominator = vect_dot(ray.direction, vect_norm(scene->shape[i].pl.rotation)); +// if (denominator > 1e-6) +// { +// numerator = vect_dot(vect_sub(scene->shape[i].pl.pos, scene->camera.pos), vect_norm(scene->shape[i].pl.rotation)); +// *t = numerator / denominator; +// return (1); +// } +// return (0); +// } + +/*returns 0 or not depending if the ray hits the plane +!!! important !!! pass in normalized vectors*/ +int intersect_plane(t_scene *scene, t_ray ray, float *t, int i) +{ + const t_vector p0 = scene->shape[i].pl.pos; + const t_vector n = scene->shape[i].pl.rotation; + const t_vector l0 = ray.origin; + const t_vector l = ray.direction; + float denom; + + denom = vec3_dot(n, l); + if (denom > EPSILON) + { + // t_vector p0l0 = vect_sub(p0, l0); + *t = vect_dot(vect_sub(p0, l0), n) / denom; + return (*t >= 0); + } + return (0); +} + +/** + * @param valid: 1 if the normal is pointing towards the camera, -1 otherwise + * @returns the normal vector of the plane. It multiplies by the valid param + * so that the normal is negative if the camera is in the back of the plane +*/ +t_vec3 pl_normal(t_shape *pl, t_point3 hit) +{ + (void) hit; + return (vec3_mult(pl->rotation, pl->pl.valid)); +} + +bool pl_hit_record(double t, t_shape *shape, t_hit_record *rec, t_ray ray) +{ + if (t > EPSILON && t < rec->t) + { + rec->t = t; + rec->p = ray_at(ray, t); + rec->normal = pl_normal(shape, rec->p); + rec->color = shape->color; + return (true); + } + return (false); +} + +double ft_abs_double(double n) +{ + if (n < 0) + return (-n); + return (n); +} + +/** + * The absolute value of the denom allows to render alse the dark side + * of the plane. If the denom is negative we're in the back of the plane +*/ +bool pl_hit(t_shape *shape, t_ray r, t_hit_record *rec) +{ + const t_vector p0 = shape->pl.pos; + const t_vector n = vect_norm(shape->rotation); + const t_vector l0 = r.origin; + const t_vector l = vect_norm(r.direction); + const float denom = vect_dot(n, l); + + if (ft_abs_double(denom) > EPSILON) + { + if (denom > 0) + shape->pl.valid = 1; + else + shape->pl.valid = -1; + return (pl_hit_record(((vect_dot(vect_sub(p0, l0), n)) / denom), \ + shape, rec, r)); + } + return (false); +} diff --git a/populate_element.c b/srcs/populate_element.c similarity index 57% rename from populate_element.c rename to srcs/populate_element.c index 64a46a5..75892ed 100644 --- a/populate_element.c +++ b/srcs/populate_element.c @@ -6,11 +6,13 @@ /* By: tfregni +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/05/26 21:30:47 by tfregni #+# #+# */ -/* Updated: 2023/06/05 00:47:10 by tfregni ### ########.fr */ +/* Updated: 2023/08/29 13:39:09 by tfregni ### ########.fr */ /* */ /* ************************************************************************** */ #include "minirt.h" +#include "matrix_math.h" +#include "vector_math.h" /** * @returns 0 for success @@ -30,8 +32,44 @@ t_err validate_ambient(t_scene *scene, char **el) el[1], INVALID_ELEMENT)); } +// /** +// * if FOV == 180 the tan explodes +// */ +// void set_camera_canvas(t_camera *c) +// { +// float range_x; +// float range_y; +// float fov_rad; +// float ratio; + +// if (c->fov >= 180) +// c->fov = 179; +// if (c->fov < 0) +// c->fov = 0; +// ratio = (float)WIDTH / HEIGHT; +// fov_rad = c->fov * (M_PI / 180); +// range_x = 2 * tan(fov_rad / 2) * CANV_DIST; +// range_y = range_x / ratio; +// c->top_right = (t_point_2d){range_x / 2 + c->pos.x, range_y / 2 + c->pos.y}; +// c->bot_left = (t_point_2d){(range_x / 2) * -1 + \ +// c->pos.x, -(range_y / 2) + c->pos.y}; +// printf("rad: %f range_x: %f range_y: %f corners: b %f t %f l %f r %f\n", fov_rad, range_x, range_y, c->bot_left.y, c->top_right.y, c->top_right.x, c->bot_left.x); +// printf("pos: %f %f %f, fov: %d, orient %f %f %f\n", c->pos.x, c->pos.y, c->pos.z, c->fov, c->orientation.x, c->orientation.y, c->orientation.z); +// } + +// void set_transform_mx(t_camera *c) +// { +// c->transform = mx_get_identity(); +// // print_4x4(c->transform.matrix); +// // c->transform = mx_transl(c->transform, c->pos); +// c->transform = mx_combine(c->transform, c->orientation); +// c->vup = (t_vector){0, 1, 0}; +// t_point_3d look_at = mx_mult(c->transform, (t_point_3d)c->vup); +// printf("LookAt: %f %f %f\n", look_at.x, look_at.y, look_at.z); +// print_4x4(c->transform.matrix); +// } + /** - * Shall we set limits for the position? Maybe macroed in the header file * @returns 0 for success */ t_err validate_camera(t_scene *scene, char **el) @@ -41,13 +79,17 @@ t_err validate_camera(t_scene *scene, char **el) NULL, INVALID_ELEMENT)); if (extract_xyz(el[1], &scene->camera.pos) || extract_xyz(el[2], &scene->camera.orientation) - || !validate_3d_range((t_point_3d)scene->camera.orientation, -1.0, 1.0)) + || !validate_3d_range((t_point3)scene->camera.orientation, -1.0, 1.0)) return (ft_warning("invalid argument: ", el[2], \ INVALID_ELEMENT)); scene->camera.fov = ft_atoi(el[3]); if (scene->camera.fov < 0 || scene->camera.fov > 180) return (ft_warning("invalid argument: ", el[3], \ INVALID_ELEMENT)); + scene->camera.focal_length = ZNEAR; + scene->camera.look_at = vec3_unit(point(scene->camera.pos.x, scene->camera.pos.y, scene->camera.pos.z - scene->camera.focal_length)); + scene->camera.vert_up = vec3(0.0f, 1.0f, 0.0f); + cam_setup(&scene->camera); return (SUCCESS); } diff --git a/populate_solid.c b/srcs/populate_solid.c similarity index 56% rename from populate_solid.c rename to srcs/populate_solid.c index 7a2088c..686fa2c 100644 --- a/populate_solid.c +++ b/srcs/populate_solid.c @@ -6,7 +6,7 @@ /* By: tfregni +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/05/26 21:31:05 by tfregni #+# #+# */ -/* Updated: 2023/06/05 00:47:33 by tfregni ### ########.fr */ +/* Updated: 2023/08/27 18:39:49 by tfregni ### ########.fr */ /* */ /* ************************************************************************** */ @@ -14,22 +14,27 @@ int validate_sphere(t_scene *scene, char **el) { - t_sphere sp; - static int i = 0; + t_shape shape; + int i; - if (i == MAX_SOLID) + i = scene->shape_count; + if (i >= MAX_SOLID) return (ft_warning("not handling these many solids", \ NULL, INVALID_FILE)); if (ft_arrlen(el) != 4) return (ft_warning("Sphere expects 3 parameters", \ NULL, INVALID_ELEMENT)); if (ft_isfloat(el[2]) && ft_atof(el[2]) > 0 - && extract_xyz(el[1], &sp.pos) == SUCCESS - && extract_rgb(el[3], &sp.trgb) == SUCCESS) + && extract_xyz(el[1], &shape.sp.pos) == SUCCESS + && extract_rgb(el[3], &shape.trgb) == SUCCESS) { - sp.diameter = ft_atof(el[2]); - scene->sp[i] = sp; - i++; + shape.sp.diameter = ft_atof(el[2]); + shape.type = ft_strdup("sphere"); + shape.intersect = intersect_sphere; + shape.hit = sp_hit; + shape.normal = sp_normal; + shape.color = convert_color(shape.trgb); + scene->shape[i] = shape; return (SUCCESS); } return (ft_warning("sphere", "invalid argument", INVALID_ELEMENT)); @@ -37,52 +42,62 @@ int validate_sphere(t_scene *scene, char **el) int validate_plane(t_scene *scene, char **el) { - t_plane pl; - static int i = 0; + t_shape shape; + int i; - if (i == MAX_SOLID) + i = scene->shape_count; + if (i >= MAX_SOLID) return (ft_warning("not handling these many solids", \ NULL, INVALID_FILE)); if (ft_arrlen(el) != 4) return (ft_warning("Plane expects 3 parameters", \ NULL, INVALID_ELEMENT)); - if (extract_xyz(el[1], &pl.pos) - || extract_xyz(el[2], &pl.rotation) - || !validate_3d_range((t_point_3d)pl.rotation, -1.0, 1.0) - || extract_rgb(el[3], &pl.trgb)) + if (extract_xyz(el[1], &shape.pl.pos) + || extract_xyz(el[2], &shape.rotation) + || !validate_3d_range((t_point_3d)shape.rotation, -1.0, 1.0) + || extract_rgb(el[3], &shape.trgb)) return (ft_warning("invalid argument: ", el[2], \ INVALID_ELEMENT)); - scene->pl[i] = pl; - i++; + printf("SHAPE ROTATION: (%f, %f, %f)\n\n", shape.rotation.x, shape.rotation.y, shape.rotation.z); + shape.type = ft_strdup("plane"); + shape.intersect = intersect_plane; + shape.hit = pl_hit; + shape.normal = pl_normal; + shape.color = convert_color(shape.trgb); + scene->shape[i] = shape; return (SUCCESS); } int validate_cylinder(t_scene *scene, char **el) { - t_cylinder cy; - static int i = 0; + t_shape shape; + int i; - if (i == MAX_SOLID) + i = scene->shape_count; + if (i >= MAX_SOLID) return (ft_warning("not handling these many solids", \ NULL, INVALID_FILE)); if (ft_arrlen(el) != 6) return (ft_warning("Cylinder expects 5 parameters", \ NULL, INVALID_ELEMENT)); - if (extract_xyz(el[1], &cy.center) - || extract_xyz(el[2], &cy.rotation) - || !validate_3d_range(cy.rotation, -1.0, 1.0) - || extract_rgb(el[5], &cy.trgb)) + if (extract_xyz(el[1], &shape.cy.center) + || extract_xyz(el[2], &shape.rotation) + || !validate_3d_range(shape.rotation, -1.0, 1.0) + || extract_rgb(el[5], &shape.trgb)) return (ft_warning("invalid argument", el[2], \ INVALID_ELEMENT)); if (ft_isfloat(el[3]) && ft_isfloat(el[4])) { - cy.diameter = ft_atof(el[3]); - cy.height = ft_atof(el[4]); - if (cy.diameter <= 0 || cy.height <= 0) + shape.cy.diameter = ft_atof(el[3]); + shape.cy.height = ft_atof(el[4]); + if (shape.cy.diameter <= 0 || shape.cy.height <= 0) return (ft_warning("invalid argument", \ NULL, INVALID_ELEMENT)); } - scene->cy[i] = cy; - i++; + shape.type = ft_strdup("cylinder"); + shape.intersect = intersect_cylinder; + shape.hit = cy_hit; + shape.color = convert_color(shape.trgb); + scene->shape[i] = shape; return (SUCCESS); } diff --git a/srcs/ray.c b/srcs/ray.c new file mode 100644 index 0000000..603350c --- /dev/null +++ b/srcs/ray.c @@ -0,0 +1,36 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ray.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: tfregni +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2023/06/15 12:14:47 by tfregni #+# #+# */ +/* Updated: 2023/06/15 16:30:09 by tfregni ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#include "ray.h" + +t_ray ray(t_point3 origin, t_vec3 direction) +{ + t_ray result; + + result.origin = origin; + result.direction = direction; + return (result); +} + +/** + * @brief Calculate the point on the ray at distance t (hit point) + * @param ray The ray + * @param t The distance + * @return t_point3 The point on the ray at distance t +*/ +t_point3 ray_at(t_ray ray, double t) +{ + t_point3 result; + + result = vec3_sum(ray.origin, vec3_mult(ray.direction, t)); + return (result); +} diff --git a/srcs/render.c b/srcs/render.c new file mode 100644 index 0000000..45ac96d --- /dev/null +++ b/srcs/render.c @@ -0,0 +1,242 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* render.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: tvasilev +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2023/06/03 20:41:01 by tfregni #+# #+# */ +/* Updated: 2023/09/04 16:43:38 by tvasilev ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#include "minirt.h" +#include "ray.h" +#include "matrix_math.h" + +#ifdef DEBUG + +void print_4x4(t_matrix_trans m) +{ + for (int i = 0; i < 4; i++) + { + for (int j = 0; j < 4; j++) + printf("%f\t", m[i][j]); + printf("\n"); + } + printf("\n"); +} +#endif + +/** + * As in openGL, we state that the projection plane coinincides + * with the near clipping plane. + * https://www.scratchapixel.com/lessons/3d-basic-rendering + * /perspective-and-orthographic-projection-matrix + * /opengl-perspective-projection-matrix.html +*/ +t_point_3d world_to_cam(t_point_3d p, t_matrix_trans proj) +{ + return (transform(p, proj)); +} + +t_point_3d world_to_cam_new(t_point_3d p, t_matrix transform) +{ + return (mx_mult(transform, p)); +} + +int apply_lighting_ratio(int trgb, float lighting_ratio) +{ + return (create_trgb(0, \ + lighting_ratio * ((trgb >> 16) & 0xFF), + lighting_ratio * ((trgb >> 8) & 0xFF), + lighting_ratio * (trgb & 0xFF))); +} + +t_color apply_light_to_color(t_color c, double light) +{ + t_color ret; + + ret = color(0.0, c.r * light, c.g * light, c.b * light); + return (ret); +} + +/** + * @brief converts an int in trgb format to a color struct with double values + * in range [0, 1] + * @param trgb int in trgb format + * @return color struct +*/ +t_color convert_color(int trgb) +{ + t_color c; + + c.t = ((trgb >> 24) & 0xFF) / 255.999; + c.r = ((trgb >> 16) & 0xFF) / 255.999; + c.g = ((trgb >> 8) & 0xFF) / 255.999; + c.b = (trgb & 0xFF) / 255.999; + return (c); +} + +/** + * @brief converts a color struct with double values in range [0, 1] + * to an int in trgb format + * @param c color struct + * @return int in trgb format +*/ +int convert_trgb(t_color c) +{ + int t; + int r; + int g; + int b; + + t = (int)(c.t * 255.999); + r = (int)(c.r * 255.999); + g = (int)(c.g * 255.999); + b = (int)(c.b * 255.999); + return (t << 24 | r << 16 | g << 8 | b); +} + +/** + * @brief creates a ray from the camera to the canvas + * 1. Pixel to world + * 2. Transform through matrix + * 3. Get ray direction + * 4. Normalize ray direction +*/ + +t_ray create_cam_ray(t_camera *c, double int_x, double int_y) +{ + t_ray ray; + + ray.origin = c->pos; + t_vec3 pxl_x = vec3_mult(c->pxl_size_hor, int_x); + t_vec3 pxl_y = vec3_mult(c->pxl_size_ver, int_y); + t_vec3 pxl_pos = vec3_sum(c->viewport_top_left, vec3_mult(c->right, vec3_len(pxl_x))); + pxl_pos = vec3_sum(pxl_pos, vec3_mult(vec3_inv(c->up), vec3_len(pxl_y))); + ray.direction = vec3_sub(pxl_pos, ray.origin); + ray.direction = vec3_unit(ray.direction); + return (ray); +} + +/** + * Former intersect_element function + * @brief Checks if the ray hits any element in the scene + * In the scene->shape[i].hit(&scene->shape[i], ray, rec) call + * the ray is updated with hit distance, hit point, normal and color +*/ +bool hit_element(t_scene *scene, t_ray ray, t_hit_record *rec) +{ + bool hit_anything; + int i; + + hit_anything = false; + rec->t = RAY_LEN; + i = scene->shape_count - 1; + while (i >= 0) + { + if (scene->shape[i].hit(&scene->shape[i], ray, rec) && rec->t > EPSILON) + { + hit_anything = true; + } + i--; + } + return (hit_anything); +} + +/** + * @brief Creates a hit record that gets updated if the ray hits an element + * @returns the color of the hit element +*/ +t_color ray_color(t_scene *scene, t_ray r) +{ + double light; + t_hit_record rec; + + if (hit_element(scene, r, &rec)) + { + light = ft_fmin(light_coeff(scene, &rec), 1); + if (light < 0 || light > 1) + printf("Light out of bound %f\n", light); + return (apply_light_to_color(rec.color, light)); + } + return (convert_color(scene->ambient.trgb)); +} + +/** + * @returns a color as int + * @math: + * circle = (x^2 - a) + (y^2 - b) - r^2 = 0 (a and b are the coord) + * ray = a + bt (a: origin b: direction t: distance) + * a : ray origin (scene->camera.pos) + * b : ray direction (scene->camera.orientation) + * r : radius (scene->sphere.diameter / 2) + * t : hit distance + * Substitute ray into circle and solve for t + * (bx^2 + by^2 + bz^2)t^2 + (2(axbx + ayby + azbz))t + * + (ax^2 +ay^2 + az^2 - r^2) = 0 + * Quadratic formula: (-b +- sqrt(b^2 - 4ac))/2a + * Discriminant: b^2 - 4ac + * https://www.scratchapixel.com/lessons/3d-basic-rendering/ray-tracing-generating-camera-rays/generating-camera-rays.html +*/ +int per_pixel(t_pxl p, t_scene *scene) +{ + // double ndc_x; + // double ndc_y; + double screen_x; + double screen_y; + t_ray r; + t_color c; + + // Between 0 and 1 (NDC space) + // ndc_x = (double)p.x / (WIDTH - 1); + // ndc_y = (double)p.y / (HEIGHT - 1); + + // Between -1 and 1 (screen space) + screen_x = ((double)p.x + 0.5f) / WIDTH * 2.0f - 1.0f; + screen_y = 1.0f - ((double)p.y + 0.5f) / HEIGHT * 2.0f; + r = create_cam_ray(&scene->camera, p.x, p.y); + c = ray_color(scene, r); + return (convert_trgb(c)); +} + +/** + * The trgb value of a pxl not intersecting a solid is each 8bit color + * multiplied by the lighting ratio +*/ +void draw(t_scene *scene) +{ + t_pxl p; + t_img *data; + int c; + + data = scene->img; + cam_setup(&scene->camera); + p.y = 0; + while (p.y < HEIGHT) + { + // printf("Scanlines remaining: %d\n", HEIGHT - 1 - p.y); + p.x = 0; + while (p.x < WIDTH) + { + // c = convert_trgb(color(0, (double)p.x / (WIDTH - 1), (double)p.y / (HEIGHT - 1), 0.25)); + c = per_pixel(p, scene); + my_mlx_pixel_put_d(data, p.x, p.y, c); + p.x++; + } + p.y++; + } + mlx_put_image_to_window(data->mlx_ptr, data->win_ptr, data->img, 0, 0); +} + +t_err render_scene(t_scene *scene) +{ + if (!init_img(scene)) + { + draw(scene); + mlx_manage(scene); + return (SUCCESS); + } + return (ft_error("render", "couldn't init image", MEM_FAIL, scene)); +} diff --git a/srcs/shade.c b/srcs/shade.c new file mode 100644 index 0000000..6ad4493 --- /dev/null +++ b/srcs/shade.c @@ -0,0 +1,75 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* shade.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: tfregni +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2023/08/27 15:45:15 by tfregni #+# #+# */ +/* Updated: 2023/08/29 10:30:05 by tfregni ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#include "minirt.h" + +int cast_shadow(t_scene *scene, t_ray ray) +{ + int i; + float t; + + i = scene->shape_count - 1; + while (i >= 0) + { + if (scene->shape[i].intersect(scene, ray, &t, i) + && t > EPSILON && t < 1) + return (1); + i--; + } + return (0); +} + +/** + * @param n: normal vector + * @param p: hit point + * @returns a float expressing the light intensity on the point + * @brief if the light hits at an angle it's more diffused and + * less intense + * @param l: light ray (from the hit point to the light source) + * @param n_dot_l: angle between the light ray and the normal + * @param light: intensity of the light. If it's negative it's + * set to 0 +*/ +float diffuse_reflection(t_scene *scene, t_vector n, t_vector p) +{ + t_vector l; + float n_dot_l; + float light; + float len_l; + t_ray rebound; + + l = vec3_sub(scene->light.pos, p); + rebound = (t_ray){p, l}; + if (cast_shadow(scene, rebound)) + return (0.1f); + n_dot_l = vec3_dot(n, l); + len_l = vec3_len(l); + if (len_l < EPSILON) + return (1.0f); + light = ft_fmax((scene->light.brightness * n_dot_l / len_l) \ + + scene->ambient.lighting_ratio, 0.0f); + return (light); +} + +/** + * @param hit: hit record + * @brief: calculates the light intensity on the hit point +*/ +float light_coeff(t_scene *scene, t_hit_record *hit) +{ + t_vector hit_pos; + t_vector normal; + + hit_pos = hit->p; + normal = hit->normal; + return (diffuse_reflection(scene, normal, hit_pos)); +} diff --git a/srcs/sphere.c b/srcs/sphere.c new file mode 100644 index 0000000..46cb2de --- /dev/null +++ b/srcs/sphere.c @@ -0,0 +1,110 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* sphere.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: tfregni +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2023/06/07 14:22:05 by tfregni #+# #+# */ +/* Updated: 2023/08/29 11:52:34 by tfregni ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#include "minirt.h" +#include "vector_math.h" + +float sp_calc_hit_point(float discriminant, float a, float b) +{ + return ((-b - sqrt(discriminant)) / (2.0f * a)); +} + +/** + * It returns the discriminant. If it's >=0 it assigns to t the value of + * the closest hit point +*/ +float sp_calc_discriminant(t_scene *scene, t_ray ray, \ + float *t, int i) +{ + float a; + float b; + float c; + t_point_3d transl; + float discriminant; + + a = vect_dot(ray.direction, ray.direction); + transl = vect_sub(ray.origin, scene->shape[i].sp.pos); + b = 2.0f * vect_dot(transl, ray.direction); + c = vect_dot(transl, transl) - pow((scene->shape[i].sp.diameter / 2), 2); + discriminant = b * b - (4.0f * a * c); + if (discriminant >= 0) + *t = sp_calc_hit_point(discriminant, a, b); + return (discriminant); +} + +/** + * @returns 1 if the ray hits the sphere, 0 otherwise +*/ +int intersect_sphere(t_scene *scene, t_ray ray, float *t, int i) +{ + if (sp_calc_discriminant(scene, ray, t, i) < 0) + return (0); + return (1); +} + +/** + * @todo - could be calculated with (hit_point - center) / radius + * avoiding the sqrt + * @param hit: hit point + * @param center: center of the sphere + * @returns a normalized vector perpendicular to the surface of the sphere + * t_vec3 (*t_normal)(t_shape *shape, t_point3 hit); +*/ +t_vec3 sp_normal(t_shape *sp, t_point3 hit) +{ + t_vec3 normal; + t_point3 center; + + center = sp->sp.pos; + normal = vec3_unit(vec3_sub(hit, center)); + return (normal); +} + +/** + * @param t: hit distance + * @param rec: t_hit_record if there's a hit the value gets updated + * @returns true if there's a hit, false otherwise +*/ +bool sp_hit_record(double t, t_shape *shape, t_hit_record *rec, t_ray ray) +{ + if (t > EPSILON && t < rec->t) + { + rec->t = t; + rec->p = ray_at(ray, t); + rec->normal = sp_normal(shape, rec->p); + rec->color = shape->color; + return (true); + } + return (false); +} + +/** + * typedef bool (*t_hit)(t_shape *shape, t_ray ray, t_hit_record *rec); +*/ +bool sp_hit(t_shape *shape, t_ray r, t_hit_record *rec) +{ + t_vec3 oc; + double a; + double b; + double c; + double discriminant; + + oc = vec3_sub(r.origin, shape->sp.pos); + a = vec3_dot(r.direction, r.direction); + b = 2.0 * vec3_dot(oc, r.direction); + c = vec3_dot(oc, oc) - pow(shape->sp.diameter / 2, 2); + discriminant = b * b - 4 * a * c; + if (discriminant < 0) + return (false); + return (sp_hit_record((-b - sqrt(discriminant)) / (2.0 * a), shape, rec, r)); +} + diff --git a/srcs/vec3.c b/srcs/vec3.c new file mode 100644 index 0000000..1fc0473 --- /dev/null +++ b/srcs/vec3.c @@ -0,0 +1,120 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* vec3.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: tvasilev +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2023/06/15 11:42:25 by tfregni #+# #+# */ +/* Updated: 2023/08/31 17:48:15 by tvasilev ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#include "minirt.h" +#include "vec3.h" + +t_vec3 vec3(double x, double y, double z) +{ + t_vec3 result; + + result.x = x; + result.y = y; + result.z = z; + return (result); +} + +t_color color(double t, double r, double g, double b) +{ + t_color result; + + result.t = t; + result.r = r; + result.g = g; + result.b = b; + return (result); +} + +t_point3 point(double x, double y, double z) +{ + t_point3 result; + + result.x = x; + result.y = y; + result.z = z; + return (result); +} + +t_vec3 vec3_sum(t_vec3 a, t_vec3 b) +{ + t_vec3 result; + + result.x = a.x + b.x; + result.y = a.y + b.y; + result.z = a.z + b.z; + return (result); +} + +t_vec3 vec3_mult(t_vec3 a, double b) +{ + t_vec3 result; + + result.x = a.x * b; + result.y = a.y * b; + result.z = a.z * b; + return (result); +} + +t_vec3 vec3_cross(t_vec3 a, t_vec3 b) +{ + t_vec3 result; + + result.x = a.y * b.z - a.z * b.y; + result.y = a.z * b.x - a.x * b.z; + result.z = a.x * b.y - a.y * b.x; + return (result); +} + +double vec3_dot(t_vec3 a, t_vec3 b) +{ + return ((a.x * b.x) + (a.y * b.y) + (a.z * b.z)); +} + +t_vec3 vec3_sub(t_vec3 a, t_vec3 b) +{ + t_vec3 result; + + result.x = a.x - b.x; + result.y = a.y - b.y; + result.z = a.z - b.z; + return (result); +} + +t_vec3 vec3_div(t_vec3 a, double b) +{ + return (vec3_mult(a, 1 / b)); +} + +double vec3_len_squared(t_vec3 a) +{ + return (a.x * a.x + a.y * a.y + a.z * a.z); +} + +double vec3_len(t_vec3 a) +{ + return (sqrt(vec3_len_squared(a))); +} + +t_vec3 vec3_unit(t_vec3 a) +{ + return (vec3_div(a, vec3_len(a))); +} + +t_vec3 vec3_inv(t_vec3 a) +{ + return (vec3_mult(a, -1)); +} + +void vec3_print(t_vec3 a) +{ + printf("x: %f, y: %f, z: %f\n", a.x, a.y, a.z); +} diff --git a/vector_calcs.c b/srcs/vector_calcs.c similarity index 86% rename from vector_calcs.c rename to srcs/vector_calcs.c index a9e009d..13deb04 100644 --- a/vector_calcs.c +++ b/srcs/vector_calcs.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* vector_calcs.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: tfregni +#+ +:+ +#+ */ +/* By: tvasilev +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/06/02 12:48:28 by tvasilev #+# #+# */ -/* Updated: 2023/06/05 15:20:07 by tfregni ### ########.fr */ +/* Updated: 2023/08/07 16:19:48 by tvasilev ### ########.fr */ /* */ /* ************************************************************************** */ @@ -69,7 +69,17 @@ float vect_dot(t_vector a, t_vector b) return (result.x + result.y + result.z); } +t_vector vect_cross(t_vector u, t_vector v) +{ + return ((t_vector){ + u.y * v.z - u.z * v.y, + u.z * v.x - u.x * v.z, + u.x * v.y - u.y * v.x + }); +} + t_vector vect_inverse(t_vector a) { return ((t_vector){-a.x, -a.y, -a.z}); } +