@ds-sfdc/sfparty 1.7.2 → 1.7.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.sfdx/tools/250/StandardApexLibrary/Auth/AuthConfiguration.cls +32 -0
- package/.sfdx/tools/250/StandardApexLibrary/Auth/CustomOneTimePasswordDeliveryHandler.cls +4 -0
- package/.sfdx/tools/250/StandardApexLibrary/Auth/CustomOneTimePasswordDeliveryResult.cls +8 -0
- package/.sfdx/tools/250/StandardApexLibrary/Auth/ExternalClientAppOauthHandler.cls +8 -0
- package/.sfdx/tools/250/StandardApexLibrary/Auth/HttpCalloutMockUtil.cls +6 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceOrders/ConfigurationInputEnum.cls +5 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceOrders/ConfigurationOptionsInput.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceOrders/GraphRequest.cls +6 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceOrders/PlaceOrderExecutor.cls +7 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceOrders/PlaceOrderResult.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceOrders/PricingPreferenceEnum.cls +5 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceOrders/RecordResource.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceOrders/RecordWithReferenceRequest.cls +7 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceTax/AbstractTransactionResponse.cls +16 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceTax/AddressResponse.cls +6 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceTax/AddressesResponse.cls +9 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceTax/AmountDetailsResponse.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceTax/CalculateTaxRequest.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceTax/CalculateTaxResponse.cls +20 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceTax/CalculateTaxType.cls +4 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceTax/ErrorResponse.cls +5 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceTax/HeaderTaxAddressesRequest.cls +13 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceTax/ImpositionResponse.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceTax/JurisdictionResponse.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceTax/LineItemResponse.cls +15 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceTax/LineTaxAddressesRequest.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceTax/RequestType.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceTax/ResultCode.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceTax/RuleDetailsResponse.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceTax/TaxAddressRequest.cls +16 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceTax/TaxAddressesRequest.cls +13 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceTax/TaxApiException.cls +7 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceTax/TaxCustomerDetailsRequest.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceTax/TaxDetailsResponse.cls +18 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceTax/TaxEngineAdapter.cls +4 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceTax/TaxEngineContext.cls +8 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceTax/TaxLineItemRequest.cls +16 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceTax/TaxSellerDetailsRequest.cls +9 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceTax/TaxTransactionRequest.cls +19 -0
- package/.sfdx/tools/250/StandardApexLibrary/CommerceTax/TaxTransactionStatus.cls +4 -0
- package/.sfdx/tools/250/StandardApexLibrary/Compression/Helper.cls +5 -0
- package/.sfdx/tools/250/StandardApexLibrary/Compression/ZipEntry.cls +19 -0
- package/.sfdx/tools/250/StandardApexLibrary/Compression/ZipReader.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/Compression/ZipWriter.cls +15 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/AbstractCartItem.cls +22 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ActionLauncherIntentActionsMappingOutput.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ActionLauncherRecommendationsOutput.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/AgreementSpecificationInputRepresentation.cls +13 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/AgreementSpecificationOutputRepresentation.cls +16 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/AppFormContentDocumentResponse.cls +17 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/AppFormContractDocumentVersionResponse.cls +17 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/AppFormContractDocuments.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/AppFormProductContractDocuments.cls +13 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ApplicantInput.cls +26 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ApplicantResultRepresentation.cls +35 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ApplicantWrapperInput.cls +15 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ApplicantWrapperResultRepresentation.cls +17 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ApplicationFormAccountInput.cls +47 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ApplicationFormInput.cls +22 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ApplicationFormProductInput.cls +30 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ApplicationFormProductResultRepresentation.cls +37 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ApplicationFormProductWrapResultRepresentation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ApplicationFormResultRepresentation.cls +30 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ApplicationFormSellerItemInput.cls +35 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ApplicationFormSellerItemResultRepresentation.cls +42 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ArticleRecommendation.cls +19 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/AttachmentOutputRepresentation.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/AvailabilityStatusEnum.cls +4 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/BalanceStatePreviewOutputRepresentation.cls +19 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/BatchInvoiceSchedulerInputRequestDPE.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/BatchInvoiceSchedulerResultsDPE.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/BookMultiSlotResult.cls +13 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/BookSlotChainInput.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/BuildJsonOutputRepresentation.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/BusObjInputRepresentation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/BusObjRecommendationInputRepresentation.cls +25 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/BusObjSummaryOutputRepresentation.cls +15 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CalculatedInsightDefinitionTypeEnum.cls +6 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CalculatedInsightPublishScheduleInterval.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CancelAllAppointmentsInput.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CancelAllAppointmentsResult.cls +13 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CartInput.cls +16 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CartItem.cls +25 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CartItemInput.cls +15 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CartSummary.cls +40 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CartTaxType.cls +5 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CartToExchangeOrderOutputRepresentation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CdpDayOfWeekEnum.cls +9 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CdpDgMetadata.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CdpIdentityResolutionConfigurationType.cls +5 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CdpMlFoundationalModelMainVersionEnum.cls +20 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CdpMlLiveMetricTypeEnum.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CdpMlMetricAssetTypeEnum.cls +5 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CdpQuery.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CdpQueryDataGraphMetadata.cls +20 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CdpScheduleFrequencyTypeEnum.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CdpSegment.cls +17 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CdpSegmentContainerOutput.cls +14 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CdpSegmentInput.cls +24 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ChangeType.cls +9 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ClonePromotionConnect.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CmsWorkspaceOutputRepresentation.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CmsWorkspacesOutputRepresentation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CommerceCatalogManagement.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CommerceEinsteinConfiguration.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CommerceSearchIndexLog.cls +18 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CommerceSearchIndexStatus.cls +6 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CommsAgreementManagementAPI.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ComplianceControlEvaluation.cls +16 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ComplianceControlStatus.cls +4 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ComplianceProcedureBusinessContextGenericValue.cls +9 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ComplianceProcedureEvaluation.cls +16 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ComplianceProcedureEvaluationInfo.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ComplianceProcedureEvaluationRequest.cls +9 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ComplianceProcedureEvaluationResponse.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ComplianceProcedureStatus.cls +4 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CompositeCommerceProductInputRepresentation.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CompositeCommerceProductOutputRepresentation.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ConnectionSchemaTypeEnum.cls +4 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ConnectorDetailsConfig.cls +7 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ConnectorInputRepresentation.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ConnectorPatchDetailsConfig.cls +7 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ConnectorPatchInputRepresentation.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ConnectorTypesEnum.cls +24 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ContentDocumentListResponse.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ContentDocumentResponse.cls +18 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ContextRules.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ContractDocumentVersionResponse.cls +22 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ContractDocumentVersionsListResponse.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ConversationReasonChannelType.cls +7 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ConversationRuntimeProxyRequestType.cls +7 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CreateAppFormPartyFinancialAssetOutputRep.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CreateApplicationFormApplicantOutputRepresentation.cls +19 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CreateApplicationFormProductOutputRepresentation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CreateApplicationFormResult.cls +13 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CreditMemoApply.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CrmConnectionInputRepresentation.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CrmConnectionInputRepresentationValidator.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CustomerManagementInputRepresentation.cls +14 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/CustomerManagementOutputRepresentation.cls +15 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DaoObjectFieldTypeQueryEnum.cls +5 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DataConnectionStatusEnum.cls +5 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DataGraphField.cls +18 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DataGraphObjectTypeEnum.cls +19 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DataGraphSourceObjectStatus.cls +5 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DataGraphStatusEnum.cls +8 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DataKitBundleConnectorTypeEnum.cls +7 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DataKitComponentTypeEnum.cls +7 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DataKitStatusEnum.cls +6 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DataLakeObjectCategoryEnum.cls +5 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DataLakeObjectStatusEnum.cls +7 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DataModel.cls +13 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DataSpaceFilterTypeEnum.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DataStreamCategoryEnum.cls +5 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DataStreamFieldTypeEnum.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DataStreamInput.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DataStreamInputValidator.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DataStreamLastRunStatusEnum.cls +8 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DataStreamPatchInputRepresentation.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DataStreamPatchInputRepresentationValidator.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DataStreamRefreshModeEnum.cls +7 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DataStreamSourceField.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DataStreamStatusEnum.cls +6 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DayCapacity.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DayCapacityValidator.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DaywiseSlot.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DecisionTableOperator.cls +14 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DecisionTableOperatorString.cls +13 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DecisionTableTemplateCloneInput.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DecisionTableTemplateDefinitionOutput.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DecisionTableTemplateDefinitionOutputValidator.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DecisionTableType.cls +7 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DelimiterTypeEnum.cls +8 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DeploymentTargetType.cls +4 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DesignerCutomizationOutputRepresentation.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DigitalVerificationInputRequest.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DocumentGenerateRepresentationResponse.cls +13 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DocumentRepresentation.cls +13 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DonorDetails.cls +17 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DynamicElementsOutputRepresentation.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/DynamicElementsOutputRepresentationValidator.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/EffectiveAccountDetail.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/EinsteinDatastream.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/EinsteinLLMGenerationItemOutput.cls +14 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/EinsteinLlmFeedbackInput.cls +17 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/EinsteinLlmGenerationContentQualityOutput.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/EinsteinPromptTemplateGenerationsRepresentation.cls +15 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/EinsteinPromptTemplateMaskDataRepresentation.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/EinsteinRepliesAppType.cls +4 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ElectronicMediaGroupDeveloperName.cls +5 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/EmployeeProfiles.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/EntityStatusEnum.cls +8 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/EthocaAlertCallbackInputRepresentation.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/EthocaAlertCallbackOutputRepresentation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/EventTypesOutput.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/EvfSdk.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ExampleListInputRepresentation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ExplainabilityActionLogDetail.cls +22 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ExplainabilityLogDetail.cls +18 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ExternalCredentialParameterType.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ExtractionContextAttributeMappingRepresentation.cls +14 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ExtractionContextDefinitionRepresentation.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ExtractionContextMappingOutputRepresentation.cls +13 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ExtractionContextMappingRepresentation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ExtractionContextUseCaseMappingRepresentation.cls +14 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/FeatureValidationUseCaseEnum.cls +4 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/FeedbackEnum.cls +4 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/FilterOperatorEnum.cls +4 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/FixFormula.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/FormulaValidation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/GetApplicationFormResult.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/GetSlotChainsInputRequest.cls +16 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/GetSlotChainsOutput.cls +14 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/GroupAppointmentAccessTypeEnum.cls +5 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/IDigitalLendingConnectFamily.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/IServiceProcessConnectFamily.cls +7 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/IdisputeManagementConnectFamily.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/IndustriesCompliance.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/IndustriesRatingResponse.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/InvoiceBatchDraftToPostedResult.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/LightningScheduler.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/MaintenanceType.cls +7 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ManagedContent.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ManagedContentClonedVariants.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ManagedContentDocument.cls +29 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ManagedContentDocumentClone.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ManagedContentDocumentCloneInput.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ManagedContentDocumentCloneValidator.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ManagedContentDocumentInput.cls +16 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ManagedContentFailedVariants.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ManagedContentFileUpload.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ManagedContentPublishDiagnosticInput.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ManagedContentPublishInput.cls +13 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ManagedContentSpace.cls +20 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ManagedContentUnpublishInput.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/MarketingIntegration.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/Missions.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/MlErrorCodeMetricEnum.cls +9 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ModifyAppointmentInput.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/NamedCredentialParameter.cls +14 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/NamedCredentialParameterManagedByFeatureCapabilities.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/NamedCredentialParameterType.cls +8 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/NavigationMenu.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/NonOmniscriptComponentsOutputRepresentation.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/NonOmniscriptComponentsOutputRepresentationValidator.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OCIRecalculateLocationGroupInputRepresentation.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OCIUpdateReservationErrorOutputRepresentation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OCIUpdateReservationInputRepresentation.cls +15 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OCIUpdateReservationOutputRepresentation.cls +13 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OCIUpdateReservationSingleInputRepresentation.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OCIUpdateReservationSingleOutputRepresentation.cls +15 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OmniDesignerDRDetailRepresentation.cls +13 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OmniDesignerDRListRepresentation.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OmniDesignerDataraptorUpsertInputRepresentation.cls +15 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OmniDesignerDataraptorUpsertOutputRepresentation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OmniDesignerDecisionMatrixDetailRepresentation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OmniDesignerDecisionMatrixListRepresentation.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OmniDesignerDocusignDetailRepresentation.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OmniDesignerDocusignListRepresentation.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OmniDesignerEmailDocumentListRepresentation.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OmniDesignerEmailDocumentRepresentation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OmniDesignerEntitiesInfoDetailRepresentation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OmniDesignerEntityInfoDetailRepresentation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OmniDesignerEntityInfoRepresentation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OmniDesignerExpressionGrammarDetailRepresentation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OmniDesignerExpressionGrammarRepresentation.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OmniDesignerOmniProcessDetailRepresentation.cls +23 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OmniDesignerOmniProcessListOutputRepresentation.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OmniDesignerOmniProcessMoveElementRepresentation.cls +15 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OmniDesignerOmniProcessUpsertRepresentation.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OmniDesignerOmniscriptCloneElementOutputRepresentation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OmniDesignerOmniscriptDeleteElementOutputRepresentation.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OmniDesignerOmniscriptInsertElementOutputRepresentation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OmniDesignerOmniscriptMoveElementOutputRepresentation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OmniProcessElementDeleteRepresentation.cls +14 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OmniProcessInsertElementRepresentation.cls +18 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OmniProcessOutputRepresentation.cls +32 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OperatorEnum.cls +4 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/Orchestration.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OrchestrationInstanceStatus.cls +9 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OrchestrationStepType.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OrchestrationWorkItem.cls +20 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OrderAdjustmentGroupType.cls +4 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OrderItemTypeCode.cls +4 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OrderStatus.cls +4 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OrderSummaryCreation.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OrderSummaryRepresentation.cls +20 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OutreachInvocableActionOutputRepresentation.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/OutreachLatestEmailRepresentation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PartyFinancialAssetAdditionalOwnerInput.cls +17 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PartyFinancialAssetAdditionalOwnerResultRepresentation.cls +25 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PartyFinancialAssetInput.cls +32 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PartyFinancialAssetLien.cls +15 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PartyFinancialAssetLienResultRepresentation.cls +23 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PartyFinancialAssetResultRepresentation.cls +43 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PartyFinancialLiabilityInputRepresentation.cls +29 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PartyFinancialLiabilityResultRepresentation.cls +39 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PartyIdentityVerificationInput.cls +26 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PartyIdentityVerificationResultRepresentation.cls +34 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PartyProfileAddressInput.cls +25 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PartyProfileAddressResultRepresentation.cls +32 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PartyProfileInput.cls +55 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PartyProfileResultRepresentation.cls +62 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PartyProfileRiskInput.cls +17 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PartyProfileRiskResultRepresentation.cls +25 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/Payments.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PaymentsBilling.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PersonEmploymentInputRepresentation.cls +23 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PersonEmploymentResultRepresentation.cls +31 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/Personalization.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PersonalizationAttribute.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PersonalizationSchema.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PersonalizationSourceEnum.cls +5 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PlaceOrderErrorResponse.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PostAuthSPMStatusRepresentation.cls +5 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PostAuthorizationResponse.cls +16 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ProductMediaInputRepresentation.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ProductPricingInputRepresentation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PromotionInputRepresentation.cls +16 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PromotionRepresentation.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PromotionRewardType.cls +9 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PublishEventInput.cls +13 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/PublishEventOutput.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RADFieldFilterOutputRepresentation.cls +16 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RADJoinFieldOutputRepresentation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RADNodeFilterOutputRepresentation.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RADNodeObjectOutputRepresentation.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RADNodeOutputRepresentation.cls +14 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RADOutputRepresentation.cls +16 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RatingErrorResponse.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RecRepresentation.cls +27 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RecencyCriteria.cls +13 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RecordAggregationAllowedObjectOutputRepresentation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RecordAggregationAllowedObjectsOutputRepresentation.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RecordAggregationApplicableFieldOutputRepresentation.cls +13 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RecordAggregationAssociatedObjectInputRepresentation.cls +9 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RecordAggregationCreationOutputRepresentation.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RecordAggregationDefinitionOutputRepresentation.cls +14 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RecordAggregationDefinitionPartialUpdateInputRepresentation.cls +9 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RecordAggregationDefinitionPartialUpdateOutputRepresentation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RecordAggregationDefinitionResultOutputRepresentation.cls +9 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RecordAggregationEntityApplicableFieldsOutputRepresentation.cls +13 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RecordAggregationFilterRowInputRepresentation.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RecordAggregationJoinInputRepresentation.cls +9 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RecordAggregationNodeInputRepresentation.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RecordAggregationNodeInputRepresentationValidator.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RecordAggregationUpdationOutputRepresentation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RecordAlert.cls +15 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RecordRollupResultColumnOutputRepresentation.cls +14 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RecordRollupResultInputRepresentation.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RecordRollupResultOutputRepresentation.cls +15 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RecordRollupResultRowOutputRepresentation.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ReferralEventInput.cls +23 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RelatedPartyInputRepresentation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RelatedPromotionRecordsInputRepresentation.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RelationshipCardinality.cls +6 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RescheduleSlotChainInput.cls +15 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ResponseStatus.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ResponseSuggestion.cls +16 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ResultNodeOutputRepresentation.cls +13 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ResultOutputRepresentation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ResultRecordOutputRepresentation.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ResultRootNodeOutputRepresentation.cls +13 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RuleLibraryCreateUpdateOutputRepresentation.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RuleLibraryInputRepresentation.cls +13 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RuleLibraryReadOutputRepresentation.cls +16 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RuleLibraryStatusEnumRepresentation.cls +5 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RuleLibraryTagMappingsCreateUpdateOutput.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RuleLibraryTagMappingsInput.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RuleLibraryTagMappingsOverallInput.cls +9 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RuleLibraryTagMappingsReadOutput.cls +16 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RuleLibraryTagMappingsReadOutputList.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RuleLibraryVersionCreateUpdateOutput.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RuleLibraryVersionInput.cls +16 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RuleLibraryVersionListOutput.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RuleLibraryVersionOutput.cls +18 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RuleLibraryVersionOutputRepresentationList.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RuleLibraryVersionStatusEnumRepresentation.cls +5 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RulesetExecutionTypeEnumRepresentation.cls +4 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RulesetStatusEnumRepresentation.cls +6 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RulesetVersionCreateUpdateErrorDetail.cls +14 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RulesetVersionCreateUpdateOutput.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RulesetVersionInput.cls +17 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RulesetVersionListOutput.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/RulesetVersionOutput.cls +19 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/SegmentIntelligenceSetupConfigData.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/SegmentIntelligenceSetupConfigDataResponse.cls +20 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/SegmentIntelligenceSetupConfigsData.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/SegmentType.cls +8 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ServiceAppointmentInput.cls +29 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ServiceTerritoryCapacityInput.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ServiceTerritoryCapacityOutput.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ServiceTerritoryCapacityOutputValidator.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ServiceTerritoryCapacityWorkTypeListResult.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ServiceTerritoryCapacityWorkTypeListResultValidator.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ServiceTerritoryWorkTypeCapacity.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/ServiceTerritoryWorkTypeCapacityValidator.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/Sites.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/SlotChain.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/SlotChainEntry.cls +16 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/SlotChainValidationRequest.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/SlotSearchDatesCriteria.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/Slots.cls +26 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/StreamingAppConnectionInputRepresentation.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/StreamingAppConnectionInputRepresentationValidator.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/StreamingConnectOrDetailsInput.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/StreamingConnectOrDetailsInputValidator.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/StreamingConnectOrPatchInputRepresentation.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/StreamingConnectOrPatchInputRepresentationValidator.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/SubmitCartToExchangeOrderInputRepresentation.cls +15 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/TargetFieldReturnTypeEnum.cls +6 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/TaxTransactionType.cls +4 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/TransactionPaymentUpdateRequest.cls +18 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/UnifiedKnowledgeConnector.cls +30 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/UnifiedKnowledgeS3UploadCredentials.cls +14 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/UpdateCommitmentInputRepresentation.cls +21 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/UploadDocumentOutputRepresentation.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/UserOutputRepresentation.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/ConnectApi/Wave.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/DataSource/Column.cls +40 -0
- package/.sfdx/tools/250/StandardApexLibrary/DataSource/DataType.cls +16 -0
- package/.sfdx/tools/250/StandardApexLibrary/Database/Cursor.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/FormulaEval/FormulaBuilder.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/FormulaEval/FormulaGlobal.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/FormulaEval/FormulaInstance.cls +6 -0
- package/.sfdx/tools/250/StandardApexLibrary/Invocable/ConsentRequestInput.cls +6 -0
- package/.sfdx/tools/250/StandardApexLibrary/Invocable/ConsentStatusRecord.cls +11 -0
- package/.sfdx/tools/250/StandardApexLibrary/PlaceQuote/ConfigurationInputEnum.cls +5 -0
- package/.sfdx/tools/250/StandardApexLibrary/PlaceQuote/ConfigurationOptionsInput.cls +12 -0
- package/.sfdx/tools/250/StandardApexLibrary/PlaceQuote/GraphRequest.cls +6 -0
- package/.sfdx/tools/250/StandardApexLibrary/PlaceQuote/PlaceQuoteException.cls +7 -0
- package/.sfdx/tools/250/StandardApexLibrary/PlaceQuote/PlaceQuoteExecutor.cls +6 -0
- package/.sfdx/tools/250/StandardApexLibrary/PlaceQuote/PlaceQuoteRLMApexProcessor.cls +6 -0
- package/.sfdx/tools/250/StandardApexLibrary/PlaceQuote/PlaceQuoteResponse.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/PlaceQuote/PricingPreferenceEnum.cls +5 -0
- package/.sfdx/tools/250/StandardApexLibrary/PlaceQuote/RecordResource.cls +10 -0
- package/.sfdx/tools/250/StandardApexLibrary/PlaceQuote/RecordWithReferenceRequest.cls +7 -0
- package/.sfdx/tools/250/StandardApexLibrary/Schema/SoapType.cls +1304 -0
- package/.sfdx/tools/250/StandardApexLibrary/System/Database.cls +610 -0
- package/.sfdx/tools/250/StandardApexLibrary/System/FatalCursorException.cls +18 -0
- package/.sfdx/tools/250/StandardApexLibrary/System/Formula.cls +7 -0
- package/.sfdx/tools/250/StandardApexLibrary/System/Limits.cls +61 -0
- package/.sfdx/tools/250/StandardApexLibrary/System/OrgMonitorFramework.cls +6 -0
- package/.sfdx/tools/250/StandardApexLibrary/System/Quiddity.cls +33 -0
- package/.sfdx/tools/250/StandardApexLibrary/System/SoqlStubProvider.cls +6 -0
- package/.sfdx/tools/250/StandardApexLibrary/System/StatusCode.cls +558 -0
- package/.sfdx/tools/250/StandardApexLibrary/System/System.cls +80 -0
- package/.sfdx/tools/250/StandardApexLibrary/System/Test.cls +40 -0
- package/.sfdx/tools/250/StandardApexLibrary/System/TestAsyncHttp.cls +7 -0
- package/.sfdx/tools/250/StandardApexLibrary/System/TransientCursorException.cls +18 -0
- package/.sfdx/tools/250/StandardApexLibrary/Wave/IntelligentAppTab.cls +8 -0
- package/.sfdx/tools/250/StandardApexLibrary/Wave/QueryBuilder.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/Wave/QueryNode.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/sfdc_enablement/EnablementCustomTypesApexService.cls +5 -0
- package/.sfdx/tools/250/StandardApexLibrary/sfdc_enablement/EnblProgramTaskDefSubCategoryType.cls +9 -0
- package/.sfdx/tools/250/StandardApexLibrary/sfdc_enablement/LearningEvaluation.cls +9 -0
- package/.sfdx/tools/250/StandardApexLibrary/sfdc_enablement/LearningEvaluationResult.cls +9 -0
- package/.sfdx/tools/250/StandardApexLibrary/sfdc_enablement/LearningItemEvaluationHandler.cls +7 -0
- package/.sfdx/tools/250/StandardApexLibrary/sfdc_enablement/LearningItemProgressStatus.cls +3 -0
- package/.sfdx/tools/250/StandardApexLibrary/sfdc_enablement/LearningItemType.cls +9 -0
- package/.sfdx/tools/250/StandardApexLibrary/sfdc_enablement/LearningItemTypeHandler.cls +8 -0
- package/.sfdx/tools/250/apex.db +0 -0
- package/.vscode/settings.json +2 -1
- package/hardis-report/commands/2024-08-19T13-52-21-hardis-config-get.log +8 -0
- package/hardis-report/commands/2024-08-19T16-16-09-hardis-config-get.log +2 -0
- package/hardis-report/commands/2024-08-20T09-31-24-hardis-config-get.log +1 -0
- package/hardis-report/commands/2024-08-20T09-31-25-hardis-config-get.log +1 -0
- package/package.json +9 -9
- package/src/meta/PermissionSets.js +11 -1
- package/.sfdx/tools/248/StandardApexLibrary/Auth/AuthConfiguration.cls +0 -31
- package/.sfdx/tools/248/StandardApexLibrary/Compression/Helper.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/Compression/ZipEntry.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/Compression/ZipReader.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/Compression/ZipWriter.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/AbstractCartItem.cls +0 -21
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/ApplicantInput.cls +0 -27
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/ApplicantResultRepresentation.cls +0 -36
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/ApplicantWrapperInput.cls +0 -14
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/ApplicantWrapperResultRepresentation.cls +0 -16
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/ApplicationFormAccountInput.cls +0 -48
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/ApplicationFormInput.cls +0 -17
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/ApplicationFormProductInput.cls +0 -20
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/ApplicationFormProductResultRepresentation.cls +0 -28
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/ApplicationFormResultRepresentation.cls +0 -25
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/ArticleRecommendation.cls +0 -17
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/AskCRMDataInvocableActionInputRepresentation.cls +0 -8
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Askcrmdatainvocableactionoutputrepresentation.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Askcrmdatainvocableactionoutputrepresentationvalidator.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Batchinvoicefiltercriterialistinputrequest.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Batchinvoicefiltercriterialistinputrequestvalidator.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Bookslotchaininput.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Bookslotchaininputvalidator.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/BusObjInputRepresentation.cls +0 -11
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/BusObjRecommendationInputRepresentation.cls +0 -21
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/BusObjSummaryOutputRepresentation.cls +0 -14
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/CalculatedInsightDefinitionTypeEnum.cls +0 -5
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/CalculatedInsightPublishScheduleInterval.cls +0 -9
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/CartInput.cls +0 -15
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/CartItem.cls +0 -23
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/CartItemInput.cls +0 -14
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/CartSummary.cls +0 -37
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/CartTaxType.cls +0 -4
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/CdpDgMetadata.cls +0 -10
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/CdpIdentityResolutionConfigurationType.cls +0 -4
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/CdpMlFoundationalModelMainVersionEnum.cls +0 -12
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/CdpMlLiveMetricTypeEnum.cls +0 -7
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/CdpQuery.cls +0 -38
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/CdpQueryDataGraphMetadata.cls +0 -20
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/CdpSegment.cls +0 -15
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/CdpSegmentContainerOutput.cls +0 -13
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/CdpSegmentInput.cls +0 -21
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/CommerceEinsteinConfiguration.cls +0 -5
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/CommerceSearchIndexLog.cls +0 -17
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/CommerceSearchIndexStatus.cls +0 -5
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/ConversationReasonChannelType.cls +0 -5
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/ConversationRuntimeProxyRequestType.cls +0 -6
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/CreateApplicationFormApplicantOutputRepresentation.cls +0 -19
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/CreateApplicationFormResult.cls +0 -13
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/CreditMemoApply.cls +0 -6
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/CustomerManagementInputRepresentation.cls +0 -13
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/CustomerManagementOutputRepresentation.cls +0 -14
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/DataGraphField.cls +0 -14
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/DataGraphObjectTypeEnum.cls +0 -6
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/DataGraphStatus.cls +0 -7
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/DataKitBundleConnectorTypeEnum.cls +0 -6
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/DataKitComponentTypeEnum.cls +0 -4
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/DataModel.cls +0 -11
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/DataType.cls +0 -8
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Daywiseslot.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Daywiseslotvalidator.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/DecisionTableDefinitionOutput.cls +0 -25
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/DecisionTableOperator.cls +0 -12
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/DecisionTableOperatorString.cls +0 -11
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/DecisionTableOutput.cls +0 -13
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/DecisionTableType.cls +0 -6
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/DecisionTableUsageType.cls +0 -16
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/DelimiterTypeEnum.cls +0 -7
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/DigitalCertificateRepresentation.cls +0 -11
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/DonorDetails.cls +0 -20
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/EinsteinDatastream.cls +0 -11
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/EinsteinLLMGenerationItemOutput.cls +0 -13
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/EinsteinLlmFeedbackInput.cls +0 -15
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/EinsteinPromptTemplateGenerationsRepresentation.cls +0 -14
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/EmployeeProfiles.cls +0 -16
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Essentials.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/EthocaAlertCallbackRequestData.cls +0 -9
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/EthocaAlertCallbackResponseData.cls +0 -11
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/ExampleListInputRepresentation.cls +0 -10
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/ExplainabilityActionLogDetail.cls +0 -20
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/ExplainabilityLogDetail.cls +0 -16
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/ExternalCredentialParameterType.cls +0 -9
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/FeatureValidationUseCaseEnum.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/GetApplicationFormResult.cls +0 -12
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Getslotchainsinputrequest.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Getslotchainsinputrequestvalidator.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Getslotchainsoutput.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Getslotchainsoutputvalidator.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/IServiceProcessConnectFamily.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Idisputemanagementconnectfamily.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/InvoiceBatchDraftToPostedResult.cls +0 -13
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/JwsVerifierInput.cls +0 -11
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/JwsVerifierOutput.cls +0 -13
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/LightningScheduler.cls +0 -6
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/MaintenanceType.cls +0 -6
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/ManagedContent.cls +0 -34
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/ManagedContentDocument.cls +0 -28
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/ManagedContentDocumentInput.cls +0 -15
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/ManagedContentPublishInput.cls +0 -12
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/ManagedContentSpace.cls +0 -19
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/ManagedContentUnpublishInput.cls +0 -11
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/MarketingIntegration.cls +0 -7
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Missions.cls +0 -9
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/NamedCredentialParameter.cls +0 -13
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/NamedCredentialParameterType.cls +0 -5
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/NavigationMenu.cls +0 -6
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Orchestration.cls +0 -5
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/OrchestrationInstanceStatus.cls +0 -5
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/OrchestrationStepType.cls +0 -10
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/OrchestrationWorkItem.cls +0 -18
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/OrderSummaryCreation.cls +0 -5
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/OrderSummaryRepresentation.cls +0 -19
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/PartyFinancialLiabilityInputRepresentation.cls +0 -28
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/PartyFinancialLiabilityResultRepresentation.cls +0 -38
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/PartyIdentityVerificationInput.cls +0 -26
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/PartyIdentityVerificationResultRepresentation.cls +0 -34
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/PartyProfileAddressInput.cls +0 -25
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/PartyProfileAddressResultRepresentation.cls +0 -32
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/PartyProfileInput.cls +0 -55
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/PartyProfileResultRepresentation.cls +0 -62
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/PartyProfileRiskInput.cls +0 -17
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/PartyProfileRiskResultRepresentation.cls +0 -25
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Payments.cls +0 -11
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/PaymentsBilling.cls +0 -8
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/PersonEmploymentInputRepresentation.cls +0 -24
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/PersonEmploymentResultRepresentation.cls +0 -32
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Personalization.cls +0 -17
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/PostAuthorizationResponse.cls +0 -15
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/PromotionRewardType.cls +0 -8
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/RecRepresentation.cls +0 -26
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/RecencyCriteria.cls +0 -13
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Recordalert.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/ReferralEventInput.cls +0 -22
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/RelationshipCardinality.cls +0 -7
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Rescheduleslotchaininput.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Rescheduleslotchaininputvalidator.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/ResponseSuggestion.cls +0 -13
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/SegmentType.cls +0 -6
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/ServiceAppointmentInput.cls +0 -28
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Sites.cls +0 -5
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Slotchain.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Slotchainentry.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Slotchainentryvalidator.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Slotchainvalidationrequest.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Slotchainvalidationrequestvalidator.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Slotchainvalidator.cls +0 -3
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/StateInputRepresentation.cls +0 -9
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/StateOutputRepresentation.cls +0 -11
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/SubmitCartToExchangeOrderInputRepresentation.cls +0 -14
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/TargetActionOutputRepresentation.cls +0 -13
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/TransactionPaymentUpdateRequest.cls +0 -15
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/UnifiedKnowledgeConnector.cls +0 -17
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/UpdateCommitmentInputRepresentation.cls +0 -20
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/ValueType.cls +0 -4
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/ValueUnit.cls +0 -4
- package/.sfdx/tools/248/StandardApexLibrary/ConnectApi/Wave.cls +0 -9
- package/.sfdx/tools/248/StandardApexLibrary/DataSource/Column.cls +0 -34
- package/.sfdx/tools/248/StandardApexLibrary/DataSource/DataType.cls +0 -11
- package/.sfdx/tools/248/StandardApexLibrary/Database/Cursor.cls +0 -13
- package/.sfdx/tools/248/StandardApexLibrary/FormulaEval/FormulaBuilder.cls +0 -11
- package/.sfdx/tools/248/StandardApexLibrary/FormulaEval/FormulaGlobal.cls +0 -12
- package/.sfdx/tools/248/StandardApexLibrary/FormulaEval/FormulaInstance.cls +0 -5
- package/.sfdx/tools/248/StandardApexLibrary/Schema/SoapType.cls +0 -1306
- package/.sfdx/tools/248/StandardApexLibrary/System/Database.cls +0 -610
- package/.sfdx/tools/248/StandardApexLibrary/System/Formula.cls +0 -6
- package/.sfdx/tools/248/StandardApexLibrary/System/Limits.cls +0 -57
- package/.sfdx/tools/248/StandardApexLibrary/System/NonRetryableCursorException.cls +0 -18
- package/.sfdx/tools/248/StandardApexLibrary/System/Quiddity.cls +0 -32
- package/.sfdx/tools/248/StandardApexLibrary/System/RetryableCursorException.cls +0 -18
- package/.sfdx/tools/248/StandardApexLibrary/System/StatusCode.cls +0 -537
- package/.sfdx/tools/248/StandardApexLibrary/System/System.cls +0 -161
- package/.sfdx/tools/248/StandardApexLibrary/System/Test.cls +0 -36
- package/.sfdx/tools/248/StandardApexLibrary/Wave/QueryBuilder.cls +0 -11
- package/.sfdx/tools/248/StandardApexLibrary/Wave/QueryNode.cls +0 -13
- package/.sfdx/tools/248/apex.db +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ApexPages/Action.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ApexPages/Component.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ApexPages/ComponentIteration.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ApexPages/HammerProcessor.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ApexPages/IdeaStandardController.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ApexPages/IdeaStandardSetController.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ApexPages/KnowledgeArticleVersionStandardController.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ApexPages/Message.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ApexPages/PageReference.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ApexPages/SelectOption.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ApexPages/Severity.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ApexPages/StandardController.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ApexPages/StandardSetController.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/AppLauncher/AccountSettingsController.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/AppLauncher/AppLauncherHelper.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/AppLauncher/AppLauncherSetupReordererController.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/AppLauncher/AppMenu.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/AppLauncher/ChangePasswordController.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/AppLauncher/CommerceStoreController.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/AppLauncher/CommunityLogoController.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/AppLauncher/EmployeeLoginLinkController.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/AppLauncher/ForgotPasswordController.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/AppLauncher/IdentityHeaderController.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/AppLauncher/LoginFormController.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/AppLauncher/SelfRegisterController.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/AppLauncher/SocialLoginController.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Approval/LockResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Approval/ProcessRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Approval/ProcessResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Approval/ProcessSubmitRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Approval/ProcessWorkitemRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Approval/UnlockResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/AuthProviderCallbackState.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/AuthProviderPlugin.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/AuthProviderPluginClass.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/AuthProviderPluginException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/AuthProviderTokenResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/AuthToken.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/C2CToken.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/CommunitiesUtil.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/ConfigurableSelfRegHandler.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/ConfirmUserRegistrationHandler.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/ConnectedAppPlugin.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/ConnectedAppPluginException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/DiscoveryCustomErrorException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/HeadlessSelfRegistrationHandler.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/IntegratingAppType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/InvocationContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/JWS.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/JWT.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/JWTBearerTokenExchange.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/JWTUtil.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/JWTValidationException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/LightningLoginEligibility.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/LoginDiscoveryException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/LoginDiscoveryHandler.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/LoginDiscoveryMethod.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/MyDomainLoginDiscoveryHandler.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/OAuth2TokenExchangeType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/OAuthRefreshResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/Oauth2TokenExchangeHandler.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/OauthToken.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/OauthTokenType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/RegistrationHandler.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/SamlJitHandler.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/SessionLevel.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/SessionManagement.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/ThirdPartyAccountLinkInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/TokenValidationResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/UserData.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/UserOrgInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/VerificationException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/VerificationMethod.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/VerificationPolicy.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Auth/VerificationResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Cache/BulkApiKeysLimitExceededException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Cache/CacheBuilder.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Cache/CacheBuilderExecutionException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Cache/CacheException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Cache/ExecutionException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Cache/InvalidCacheBuilderException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Cache/InvalidParamException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Cache/ItemSizeLimitExceededException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Cache/Org.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Cache/OrgPartition.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Cache/Partition.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Cache/PlatformCacheDelegateWrapper.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Cache/PlatformCacheInvalidOperationException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Cache/ScanResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Cache/SecondaryKeyApi.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Cache/Session.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Cache/SessionPartition.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Cache/UnsupportedOperationException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Cache/Visibility.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Canvas/ApplicationContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Canvas/CanvasLifecycleHandler.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Canvas/CanvasRenderException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Canvas/ContextTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Canvas/EnvironmentContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Canvas/RenderContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Canvas/Test.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ChatterAnswers/AccountCreator.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ChatterAnswers/ChatterServiceRegisterController.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ChatterAnswers/SCCChangePasswordController.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ChatterAnswers/SCCForgotPasswordConfirmController.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ChatterAnswers/SCCForgotPasswordController.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/AbstractResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/AbstractTransactionResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/AddressRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/AlternativePaymentMethodRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/AlternativePaymentMethodResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/AuditParamsRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/AuthApiPaymentMethodRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/AuthorizationRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/AuthorizationResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/AuthorizationReversalRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/AuthorizationReversalResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/BaseApiPaymentMethodRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/BaseNotification.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/BasePaymentMethodRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/BaseRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/CaptureNotification.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/CaptureRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/CaptureResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/CardCategory.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/CardPaymentMethodRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/CardPaymentMethodResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/CardType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/ClientRequestContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/ClientResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/ClientSidePaymentAdapter.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/CustomMetadataTypeInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/GatewayErrorResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/GatewayNotificationResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/NotificationClient.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/NotificationSaveResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/NotificationStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/PaymentGatewayAdapter.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/PaymentGatewayAsyncAdapter.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/PaymentGatewayContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/PaymentGatewayNotificationContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/PaymentGatewayNotificationRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/PaymentMethodDetailsResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/PaymentMethodRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/PaymentMethodTokenizationRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/PaymentMethodTokenizationResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/PaymentsApiException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/PaymentsHttp.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/PostAuthApiPaymentMethodRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/PostAuthorizationRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/PostAuthorizationResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/ProductItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/ReferencedRefundNotification.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/ReferencedRefundRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/ReferencedRefundResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/RefundRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/RequestType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/SaleApiPaymentMethodRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/SaleRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/SaleResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/SalesforceResultCode.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/CommercePayments/SalesforceResultCodeInfo.cls +0 -0
- /package/.sfdx/tools/{248/StandardApexLibrary/ConnectApi → 250/StandardApexLibrary/CommerceTax}/TaxTransactionType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Compression/Level.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Compression/Method.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Compression/ZipException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AIFieldRecommendation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AIFieldRecommendationCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AIFieldRecommendationValue.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractContentHubItemType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractCreateServiceAppointmentInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractDirectoryEntrySummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractExtensionInformation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractGatewayCommonResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractGatewayResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractManagedContentDeliveryDocument.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractManagedContentReference.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractMessageBody.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractNBAAction.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractNBATarget.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractProductAttributeSetSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractProductSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractRecommendation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractRecommendationExplanation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractRecordField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractRecordView.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractRepositoryFile.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractRepositoryFolder.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractRepositoryItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractSearchSuggestion.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryAIModelMetrics.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryAIModelSource.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryAggregatePredictionRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryAssetReference.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryFieldMappingSource.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryManyToOneTransformation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryModelField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryModelRuntime.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryModelRuntimeInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryOneToOneTransformation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryPredictConditionRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryPredictInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryPredictRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryPredictionProperty.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryProjectedPrediction.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryProjectedPredictionsIntervalSetting.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryProjectedPredictionsIntervalSettingInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryTransformation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryTransformationFilter.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryTransformationOverride.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractSmartDataDiscoveryTransformationOverrideInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AbstractUserMissionActivity.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Abstractcommerceproductsearchresults.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ActionCadenceDetail.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ActionCadenceErrorDetail.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ActionCadenceRecordError.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ActionCadenceRule.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ActionCadenceRuleCondition.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ActionCadenceStep.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ActionCadenceStepVariant.cls +0 -0
- /package/.sfdx/tools/{248/StandardApexLibrary/ConnectApi/Actioncadencev2upsert.cls → 250/StandardApexLibrary/ConnectApi/ActionCadenceV2Upsert.cls} +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ActionCadenceV2UpsertRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ActionCadenceV2UpsertResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ActionInfoInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ActionInfoOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ActionLinkDefinition.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ActionLinkDefinitionInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ActionLinkDiagnosticInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ActionLinkExecutionsAllowed.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ActionLinkGroupDefinition.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ActionLinkGroupDefinitionInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ActionLinkTemplateBindingInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ActionLinkType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ActionLinks.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ActivitySharingInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ActivitySharingResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ActivitySharingType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Actor.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ActorWithId.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AddItemAdjustmentOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AddItemOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AddItemTaxOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AddOrderItemSummaryOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AddOrderToCartInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AdditionalTransactionJournalAttributeOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Address.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AddressDetails.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AddressRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AddressResultRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AdjustItemInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AdjustOrderItemSummaryInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AdjustOrderSummaryOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AdjustmentAmountScope.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AdjustmentType.cls +0 -0
- /package/.sfdx/tools/{248/StandardApexLibrary/ConnectApi/Advancedtherapymanagement.cls → 250/StandardApexLibrary/ConnectApi/AdvancedTherapyManagement.cls} +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AiAcceleratorConnectFamily.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Alternative.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AlternativeInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AlternativePaymentMethod.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AlternativePaymentMethodOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AnalysisFieldDataPropertyEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AnalyticsLicenseAttributes.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AnalyticsLicenseType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Announcement.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AnnouncementInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AnnouncementPage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Announcements.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ApexClassInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ApexClassOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ApiErrorCodeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ApplicationFormAccountAddress.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ApplicationSettings.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ApplicationSettingsCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Applicationformfamily.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ApplicationsRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ApplyCreditResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ApplyCreditResults.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AppointedRepresentativeOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AppointmentSlotResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AppointmentSlotStatusResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ApprovalAttachment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ApprovalCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ApprovalIntent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ApprovalPostTemplateField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ArticleItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ArticleRecommendationCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ArticleRecommendationsChannelType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ArticleRecommendationsRuntimeMetric.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ArticleRecommendationsRuntimeMetrics.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ArticleSmartAnswer.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ArticleSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ArticleTopicAssignmentJobInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ArticleTopicJobType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AssessmentSearchDerivedStatusEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AssetMgmt.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AssetMgmtARCActionType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AssetMgmtAmendmentType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AssetMgmtCancellationType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AssetMgmtInitiateAmendQtyInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AssetMgmtInitiateCancellationInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AssetMgmtInitiateRenewalInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AssetMgmtReturnPolicyType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AssetRevertHistoryInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AssignedResourcesInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AssociateRecordsWithRecipientInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AssociatedActionsCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AssociatedActionsCapabilityInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AsyncOperationStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AsyncOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AttributeCreationStrategyEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AttributeRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Audience.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AudienceCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AudienceCriteria.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AudienceCriteriaDetail.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AudienceCriteriaInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AudienceCriteriaOperator.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AudienceCriteriaType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AudienceCriterionDetail.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AudienceCriterionInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AudienceCriterionValueInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AudienceInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AudienceTarget.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AudienceTargetAssignment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AuditParamsRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AuthApiPaymentMethodRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AuthReversalGatewayResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AuthorizationGatewayResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AuthorizationRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AuthorizationResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AuthorizationReversalRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AuthorizationReversalResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AvailableLocationOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/AverageDistanceResultOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BannerCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BannerPhoto.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BannerPhotoInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BannerStyle.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BaseApiPaymentMethodRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BaseAsyncOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BaseEndpointExtension.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BaseInvoiceOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BaseManagedSocialAccount.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BaseOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BasePaymentMethodRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BaseRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BasicTemplateAttachment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BatchCriteriaFieldsForInvoiceRunEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BatchCriteriaObjectsForInvoiceRunEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BatchCriteriaOperationEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BatchFilterCriteriaInputRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BatchInput.cls +0 -0
- /package/.sfdx/tools/{248/StandardApexLibrary/ConnectApi/Batchinvoiceapplication.cls → 250/StandardApexLibrary/ConnectApi/BatchInvoiceApplication.cls} +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BatchInvoiceFilterCriteriaInputRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BatchInvoiceSchedulerInputRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BatchInvoiceSchedulerResults.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BatchInvoiceStatusEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BatchResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BatchSchedulerStatusEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BenefitDisbursementsInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BenefitDisbursementsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BenefitScheduleParticipantsInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BenefitScheduleParticipantsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BenefitSessionParticipantsInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BenefitSessionParticipantsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BenefitSessions.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Billing.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BillingAddressRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BillingBatchSchedulerResults.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BillingFrequency.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BillingMethodEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BillingScheduleOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BillingScheduleRecoveryInputRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BillingScheduleRecoveryResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BillingScheduleRecoveryResults.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BillingScheduleStatusEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BillingStatusEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BillingTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BinaryInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BlankRecordField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BlockchainConfig.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BlockchainConfigObject.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BookAppointmentResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BookAppointmentsInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BookSlotChainResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BookingStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BookmarkSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BookmarksCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BookmarksCapabilityInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BotInfoRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BotLLMPromptTemplateType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BotLLMProviderType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BotRuntimeApi.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BotRuntimeApiInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BotVersionActivation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BotVersionActivationInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BotVersionActivationInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BotVersionActivationStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BrandExtractionResultOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BrandExtractionResultOutputRepresentationLogo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BrandExtractorQueryInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BrandingSetInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BrandingSetOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BroadcastResponseAction.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BuildVerificationContextInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BulkReassignmentListResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BulkReassignmentOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BulkReassignmentResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BundleCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BundleType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BusObjAssociationsInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BusObjAssociationsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BusObjInsightsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BusObjOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BusObjRecommendationsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BusinessObjectivesInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BusinessObjectivesOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BusinessObjectivesSummaryOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BuyerPaymentMethodSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BuyerProductSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BuyerProfileDetail.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/BuyerProfileInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CalculateProjectedRebateAmountOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CalculateTaxRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CalculateTaxResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CalculateTaxTypeRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CallCollaborationCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CalloutStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CampaignDetails.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CancelAppointmentResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CancelAppointmentsInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CancelSlotChainInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CancelSlotChainOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CandidateAnswersStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CanvasAttachmentInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CanvasCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CanvasCapabilityInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CanvasTemplateAttachment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CapacityRequestInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CapacityResponseOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CaptureGatewayResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CaptureRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CaptureResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CardCategory.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CardDetailOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CardOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CardPaymentMethodOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CardPaymentMethodRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CardRowOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CardType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CareAuthorizationCaseOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CareAuthorizationOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CareAuthorizationOutputResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CareAuthorizationPatientOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CareAuthorizationRequestGetResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CareAuthorizationRequestRelatedRecordResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CareAuthorizationRequestResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CareDiagnosisOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CareProcessingErrorOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CareProviderResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CareRequestDrugOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CareRequestItemOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CareRequestOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CareRequestReviewerOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Careauthorizationrequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartCoupon.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartCouponCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartCouponInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartCouponList.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartInventoryItemReservationOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartInventoryReservationInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartInventoryReservationOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartItemBasic.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartItemBasicResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartItemCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartItemProduct.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartItemPromotionCollectionInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartItemPromotionCollectionOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartItemPromotionInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartItemResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartItemSortOrder.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartItemType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartItemWithoutPrice.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartMessage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartMessageSeverity.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartMessagesSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartMessagesVisibilityInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartMessagesVisibilityResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartProductAttribute.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartPromotionCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartPromotionList.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartPromotionOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartPromotionType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartToWishlistInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartToWishlistResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CartType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CaseActorType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CaseComment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CaseCommentCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CaseCommentEventType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CaseInfoWrapper.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CaseParticipantInfoWrapper.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CaseProgramsInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CaseProgramsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpActionResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpAssetBase.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpAssetBaseInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpAssetReference.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpAssetReferenceInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpCalculatedInsight.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpCalculatedInsightDataSource.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpCalculatedInsightDimension.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpCalculatedInsightErrorResponseRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpCalculatedInsightInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpCalculatedInsightMeasure.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpCalculatedInsightOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpCalculatedInsightPage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpCalculatedInsightPageData.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpCalculatedInsightStandardActionResponseRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpCalculatedInsightValidateInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpDataTransformActionRunResponseRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpErrorResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpIdentityResolution.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpIdentityResolutionConfigInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpIdentityResolutionConfigPatchInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchCriterion.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchCriterionOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchCriterionPartyIdentificationInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchCriterionPartyIdentificationInfoOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchMethodType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchRule.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpIdentityResolutionMatchRuleOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpIdentityResolutionOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpIdentityResolutionPublishOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationFieldRule.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationFieldRuleOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationRule.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationRuleOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationRuleType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationSource.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpIdentityResolutionReconciliationSourceOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpIdentityResolutionRunNowInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpIdentityResolutionRunNowOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpIdentityResolutionRunNowResultCode.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpIdentityResolutionsOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlActivePartitionTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlAggregatePredictCondition.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlAggregatePrediction.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlBasePredictInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlBinaryClassificationPredictionResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlConfiguredModelStatusEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlConfusionMatrixMetric.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlConfusionMatrixMetricPerClass.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlCustomizableFieldTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlFieldDataTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlFieldValue.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlFilterFieldOperatorEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlFilterFieldTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlFilterValueTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlGenericPredictionOutputValue.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlGenericPredictionResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlMetricSpanEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlModelArtifactRuntimeTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlModelPredictionTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlMulticlassClassificationPredictionResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlPredictAggregateFunctionStatusEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlPredictAggregateFunctionTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlPredictResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlPredictSettings.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlPredictSettingsInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlPredictSingleRecordOverridesInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlPredictStatusEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlPredictTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlPredictionBase.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlPredictionContribution.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlPredictionContributionBase.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlPredictionContributionField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlPredictionError.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlPredictionErrorCodeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlPredictionFieldCustomText.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlPredictionSuccessBase.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlPredictionWarnings.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlRawDataPredictInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlRecordOverridesPredictInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlRecordsPredictInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlRegressionPredictionResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpMlTransformationTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpQueryDataOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpQueryInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpQueryMetadataItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpQueryMetadataOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpQueryOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpQueryOutputV2.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpQueryV2Row.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpSegmentActionOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpSegmentDbtInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpSegmentDbtModel.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpSegmentDbtModelInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpSegmentDbtPipeline.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpSegmentEinsteinGptSegmentsUI.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpSegmentLookalike.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpSegmentLookalikeInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpSegmentMembershipTableOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpSegmentOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpStringListObject.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CdpUser.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Cdpmachinelearning.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChangeInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChangeItemFeeInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChangeItemInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChangeItemOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChangeOrdersInvoiceOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Chatter.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChatterActivity.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChatterActivitySummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChatterConversation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChatterConversationPage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChatterConversationSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChatterFavorites.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChatterFeeds.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChatterGroup.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChatterGroupDetail.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChatterGroupInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChatterGroupPage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChatterGroupSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChatterGroups.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChatterLike.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChatterLikePage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChatterLikesCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChatterMessage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChatterMessagePage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChatterMessages.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChatterStream.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChatterStreamInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChatterStreamPage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChatterUsers.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CheckoutSessionState.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChimeAttendeeResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChimeMediaPlacementResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ChimeMeetingResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ClassificationsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ClientInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Clm.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CloseCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CloseCapabilityInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Column.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Comment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommentCapabilities.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommentCapabilitiesInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommentInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommentPage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommentSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommentType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommentsCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceActionResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceAddressCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceAddressFieldInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceAddressInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceAddressOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceAddressSort.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceBuyerExperience.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceCart.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceCatalog.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceCatalogAttributeType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceEinsteinActivityJobStatusEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceEinsteinOutputConfiguration.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceEinsteinStatusEnum.cls +0 -0
- /package/.sfdx/tools/{248/StandardApexLibrary/ConnectApi/Commerceextensiondx.cls → 250/StandardApexLibrary/ConnectApi/CommerceExtensionDx.cls} +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceInventory.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceInventoryPricing.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceProductAttributeSetSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceProductSearchResults.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceProductSellingModel.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceProductSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceProductSummaryPage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommercePromotions.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceSearch.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceSearchAttributeType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceSearchConnectFamily.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceSearchFacetDisplayType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceSearchFacetType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceSearchGroupingOption.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceSearchIndex.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceSearchIndexBuildType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceSearchIndexCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceSearchIndexCreationType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceSearchIndexLogCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceSearchIndexUsage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceSearchSettings.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceSearchSortRuleDirection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceSearchSortRuleType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceSearchTopProductType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceStorePricing.cls +0 -0
- /package/.sfdx/tools/{248/StandardApexLibrary/ConnectApi/Commercesubscription.cls → 250/StandardApexLibrary/ConnectApi/CommerceSubscription.cls} +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceSubscriptionBillingSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceSubscriptionCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceSubscriptionDetail.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceSubscriptionSortOrder.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommerceWishlist.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommitmentPaymentUpdatesInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommitmentPaymentUpdatesOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommitmentPaymentUpdatesRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommitmentPaymentUpdatesResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommitmentPaymentUpdatesResponseLink.cls +0 -0
- /package/.sfdx/tools/{248/StandardApexLibrary/ConnectApi/Commsopenapi.cls → 250/StandardApexLibrary/ConnectApi/CommsOpenApi.cls} +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Communities.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Community.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommunityFlagReasonType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommunityFlagType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommunityFlagVisibility.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommunityLanguage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommunityModeration.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommunityPage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommunityPublish.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommunityStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommunitySummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommunityTemplate.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CommunityTemplates.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CompanyVerifySummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ComplaintInfoWrapper.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ComplaintMgmtOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ComplaintMgmtRequestInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ComplexSegment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CompoundRecordField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ConfirmHeldFOCapacityInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ConfirmHeldFOCapacityOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ConfirmHeldFOCapacityRequestInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ConfirmHeldFOCapacityResponseOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ConnectApiException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ConnectCommerceSearchSortRuleLabelSuffix.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ConnectCommerceSearchSortStandardField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ConnectInsightUnitEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ConnectManagedContentChannelType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ConnectManagedContentDeploymentType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ConnectManagedContentMediaType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ConnectManagedContentNodeType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ConnectSitesPageType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ConnectStatusCheckType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ConnectUtilities.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ConnectWaveSortOrderEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContactMediumCharacteristicInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContactMediumInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContactMediumOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Content.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContentAttachment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContentAttachmentInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContentCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContentCapabilityInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContentDocumentOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContentHubAllowedItemTypeCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContentHubAuthenticationProtocol.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContentHubDirectoryEntryType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContentHubExternalItemSharingType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContentHubFieldDefinition.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContentHubFieldValueInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContentHubGroupType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContentHubItemInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContentHubItemType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContentHubItemTypeDetail.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContentHubItemTypeSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContentHubPermission.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContentHubPermissionCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContentHubPermissionType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContentHubProviderType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContentHubRepository.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContentHubRepositoryAuthentication.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContentHubRepositoryCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContentHubRepositoryFeatures.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContentHubStreamSupport.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContentHubVariableType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContentImageFile.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContentImageFileDetails.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Contenthub.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContextSupertype.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContractDocumentVersionReviewerOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContractDocumentVersionReviewersListOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContractInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ContractOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ConversationApplicationDefinition.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ConversationApplicationDefinitionDetailRespresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ConversationApplicationIntegrationType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ConversationRuntimeProxyMessageType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ConversationRuntimeProxyMessageWidget.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ConvertNegativeInvoiceLinesInputRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ConvertNegativeInvoiceLinesResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CorePricingResultErrorRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CorePricingResultRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CorePricingStatusEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CorporateMemberInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CorporateMemberOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CouponCodeRedemptionCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CouponCodeRedemptionInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CouponCodeRedemptionResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreateAppFormPartyFinancialLiabilityOutputRep.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreateAppFormPartyIdentityVerificationOutputRep.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreateApplicationFormDetailsInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreateApplicationFormInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreateApplicationFormOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreateCommitmentInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreateCommitmentOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreateCommitmentRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreateCommitmentResponseDetails.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreateCommitmentResponseLink.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreateContractDocumentVersionReviewOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreateCredentialAction.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreateCreditMemoInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreateCreditMemoOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreateGiftInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreateGiftOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreateGiftRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreateGiftResponseDetails.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreateGiftResponseLink.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreateInvoiceFromChangeOrdersInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreateMultipleInvoicesFromChangeOrdersInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreateMultipleInvoicesFromChangeOrdersOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreateOrderPaymentSummaryInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreateOrderPaymentSummaryOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreatePatientResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreateRevenueElementRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreateServiceAppointmentInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreateServiceAppointmentResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Credential.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CredentialAuthenticationProtocol.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CredentialAuthenticationProtocolVariant.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CredentialAuthenticationStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CredentialCustomHeader.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CredentialCustomHeaderInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CredentialInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CredentialPrincipalType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CredentialValue.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CredentialValueInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreditInvoiceInputRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreditInvoiceInvoiceLine.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreditInvoiceInvoiceLineTax.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreditMemoAddressesInputRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreditMemoApplyInputRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreditMemoBaseInputRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreditMemoStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreditMemoTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CreditMemoUnapplyInputRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CurrencyRecordField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CustomFieldDetails.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CustomFieldsInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CustomFieldsResultRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CustomListAudienceCriteria.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CustomListAudienceCriteriaInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CycleDetectionInputRequestRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/CycleDetectionOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DPEListOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DPETargetContextEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DashboardComponentAttachment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DashboardComponentSnapshot.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DashboardComponentSnapshotCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DataActionFilterOperationEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DataActionStatusEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DataActionStatusErrorCodeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DataActionTargetStatusEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DataActionTargetStatusErrorCodeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DataActionTargetTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DataCategory.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DataCategoryGroup.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DataCategoryGroupCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DataEnrichmentDeployStatusEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DataEnrichmentStatusEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DataGraphObjectData.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DataGraphRelationship.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DataGraphSourceObjectType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DataProviderSchema.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Datacloud.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DatacloudCompanies.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DatacloudCompany.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DatacloudCompanyIdentifier.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DatacloudContact.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DatacloudContacts.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DatacloudImport.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DatacloudImportStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DatacloudImportStatusType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DatacloudInternalCompany.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DatacloudOrder.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DatacloudOrderInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DatacloudPurchaseUsage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DatacloudUserType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DateRecordField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DecisionTable.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DecisionTableCollectOperator.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DecisionTableCondition.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DecisionTableConditionType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DecisionTableDataType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DecisionTableHitPolicy.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DecisionTableInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DecisionTableOutcome.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DecisionTableOutcomeItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DecisionTableParameterInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DecisionTableParameterOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DecisionTableParameterType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DecisionTableSortType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DecisionTableSourceConditionValueType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DecisionTableSourceCriteriaInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DecisionTableSourceCriteriaOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DecisionTableSourceType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DecisionTableStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DeleteIntent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DeleteIntents.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DeleteSocialPostIntent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DependencyDetailOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DeploymentActionEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DesignationDetails.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DetailedProjectedRebateAmountCalc.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DigestJobRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DigestPeriod.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DigitalVerificationOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DigitalWallet.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DigitalWalletOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DirectMessageCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DirectMessageCapabilityInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DirectMessageMemberActivity.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DirectMessageMemberActivityPage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DirectMessageMemberPage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DispenserAddressOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DistanceCalculationOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DistinctFacetValue.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DistinctValueRefinementInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DistinctValueSearchFacet.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DistributePickedQuantitiesInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DistributePickedQuantitiesOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DistributeToOrdersInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DocumentInfoAttributes.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DocumentInfoAttributesWrapper.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DonorOptionsDetails.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DownVoteSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/DraftEinsteinResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EOLTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EUProgram.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EditCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EffectiveMappingRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EinsteinAnswerType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EinsteinLLMEmbeddingItemOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EinsteinLLMEmbeddingsOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EinsteinLLMGenerationsOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EinsteinLlm.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EinsteinLlmAdditionalConfigInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EinsteinLlmEmbeddingsAdditionalConfigInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EinsteinLlmEmbeddingsInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EinsteinLlmFeedbackOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EinsteinLlmGenerationSafetyScoreOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EinsteinLlmGenerationsInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EinsteinPromptTemplateGenerationsInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EinsteinRecommendation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EinsteinRecommendationValue.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EinsteinRecommendations.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EinsteinResponseSpeakerType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EinsteinResponseType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EinsteinUser.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EinsteinUsers.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EligibleProgramRebateTypesOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EmailAddress.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EmailAttachment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EmailMergeFieldCollectionInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EmailMergeFieldInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EmailMergeFieldService.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EmailMessage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EmailMessageCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EmailMessageDirection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EmailMessageStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Emoji.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EmojiCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EndpointExtensionRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EndpointExtensionResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EngagementAttendeeCreateInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EngagementAttendeeCreateOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EngagementAttendeeDetailsOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EngagementAttendeeFetchOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EngagementCustomFieldsInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EngagementCustomFieldsOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EngagementDetailsOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EngagementInteractionCreateInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EngagementInteractionDetailsOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EngagementInteractionFetchOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EngagementInteractionUpdateInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EngagementStatusOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EngagementTopicCreateInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EngagementTopicCreateOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EngagementTopicDetailsOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EngagementTopicFetchOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EngagementTopicOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Engagementcontainerconnect.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EngagementsCreateInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EngagementsCreateOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EngagementsFetchOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EngagementsIdCreateOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EngagementsIdOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EngagementsUpdateInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EngagementsUpdateOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EnhancedLinkCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EnrollmentChannelResource.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EnsureFundsAsyncInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EnsureFundsAsyncOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EnsureRefundsAsyncInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EnsureRefundsAsyncOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EntityLabel.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EntityLinkSegment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EntityLinkSegmentInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EntityRecommendation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EntityResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ErrorDetails.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ErrorRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ErrorResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ErrorResponseRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ErrorsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EsMessageType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EthocaAlertOutcome.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EthocaAlertRefundStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EthocaEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EthocaLinks.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EvaluateCallerVideoCallResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Event.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/EventTypeResource.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Example.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExampleEntityInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExampleEntityRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExampleListRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExampleMapInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExampleMapRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExampleNoResourceInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExampleNoResourceRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExampleObjectInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Exchanges.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExecutionStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExplainabilityActionLogCreate.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExplainabilityActionLogInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExplainabilityActionLogSortEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExplainabilityActionLogs.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExplainabilityLogs.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExplainabilityService.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExpressionDataType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExpressionSetVersionDependencyEnumRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExpressionSetVersionDependencyOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExtendedFieldInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExtensibilityPerfTestRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Extension.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExtensionDefinition.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExtensionDefinitions.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExtensionInformationType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExtensionInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExtensionOutputCollectionRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExtensionOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExtensionsCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExtensionsCapabilityInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExternalCredential.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExternalCredentialAuthParameterName.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExternalCredentialInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExternalCredentialList.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExternalCredentialParameter.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExternalCredentialParameterInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExternalCredentialPrincipal.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExternalCredentialPrincipalAccess.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExternalCredentialPrincipalAccessType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExternalCredentialPrincipalInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExternalDocCreationInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExternalDocCreationOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExternalDocument.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExternalDocumentOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExternalDocumentUsersListOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExternalDocumentUsersOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExternalEmailService.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExternalFilePermissionInformation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExternalManagedAccount.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExternalManagedAccountAddressOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExternalManagedAccountCollectionOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ExternalManagedAccountOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FacetValue.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeatureExtractionParametersFieldMapValue.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Features.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Feed.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedBody.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedCommentSortOrder.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedDensity.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedDirectory.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedDirectoryItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedElement.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedElementCapabilities.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedElementCapabilitiesInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedElementCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedElementCapabilityInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedElementCapabilityType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedElementInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedElementPage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedElementType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedEnabledEntity.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedEntityIsEditable.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedEntityNotAvailableSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedEntityReadSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedEntityShareCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedEntityShareCapabilityInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedEntityStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedEntitySummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedFavorite.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedFavoriteType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedFavorites.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedFilter.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedItemAttachment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedItemAttachmentInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedItemAttachmentType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedItemInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedItemPage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedItemSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedItemTopicPage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedItemType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedItemVisibilityType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedModifiedInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedPoll.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedPollChoice.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedPostSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedReadStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedReadStatusInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedReadSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedSortOrder.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FeedType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FieldChangeNameSegment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FieldChangeSegment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FieldChangeValueSegment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FieldChangeValueType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FieldClassificationSetting.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FieldDataTypesEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FieldService.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FieldSet.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FieldSetOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FieldSetsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FieldValue.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FieldValueInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FieldValueOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/File.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FileAsset.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FileBasedImportStatusEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FileBasedImportTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FileIdInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FilePreview.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FilePreviewCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FilePreviewFormat.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FilePreviewStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FilePreviewUrl.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FilePublishStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FileSharingOption.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FileSharingPrivacy.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FileSharingType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FileStat.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FileStatsCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FileStatsType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FileSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FileText.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FilesCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FilesCapabilityInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FindRouteWithFewestSplitsUsingExpandTypes.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FindRoutesWithFewestSplitsGroupUsingOCIInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FindRoutesWithFewestSplitsInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FindRoutesWithFewestSplitsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FindRoutesWithFewestSplitsUsingOCIInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FindRoutesWithFewestSplitsUsingOCIItemInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FindRoutesWithFewestSplitsUsingOCIOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FindRoutesWithFewestSplitsWithInventoryOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Findappointmentslotresult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FirstReviewerOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FolderItemType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FollowIntents.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FollowSocialPersonaIntent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FollowerPage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FollowingCounts.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FollowingPage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Form.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FormField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FormFieldInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FormFieldType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FormFields.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FormInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FormSubmission.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FormSubmissionFieldInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FormSubmissionInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FormulaExplanation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FormulaFilterType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FormulaScope.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FormulaValidationResultRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FrequencyCadenceEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FrequencyCadenceOptions.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FulfillmentGroupInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FulfillmentGroupOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FulfillmentOrder.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FulfillmentOrderCancelLineItemsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FulfillmentOrderInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FulfillmentOrderInvoiceInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FulfillmentOrderInvoiceOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FulfillmentOrderLineItemInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FulfillmentOrderLineItemsToCancelInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/FulfillmentOrderOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GatewayLogResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GenAiActionInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GeneralPractitionerOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GenerateBenefitSessionOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GeneratedFormula.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GenericBundleCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GenericFeedElement.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GenericObject.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GenericObjectOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GenericObjectWrapper.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GenericPricingResponseRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GetApplicationFormOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GetBlockchainConfigOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GetContractValueInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GetContractValueOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GetFOCapacityValuesOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GetFOCapacityValuesRequestInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GetFunctionValueInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GetFunctionValueOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GetSlotStatusInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GiftCampaignDefaultDesignationRecordOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GiftCampaignDefaultDesignationsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GiftCommitmentDefaultDesignationRecordOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GiftCommitmentDefaultDesignationsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GiftCommitmentTransactionMatchingOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GiftCommitmenteDetails.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GiftDesignationRecordOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GiftTransactionLinkedDesignationsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GiftTransactionPeriodEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GiftTransactionRecordOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GiftTransactionsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GlobalInfluence.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GoalDefinitionCategoryEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GroupArchiveStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GroupChatterSettings.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GroupEmailFrequency.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GroupInformation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GroupInformationInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GroupMember.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GroupMemberAssociationCycleDetector.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GroupMemberPage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GroupMembershipRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GroupMembershipRequestStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GroupMembershipRequests.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GroupMembershipType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GroupRecord.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GroupRecordInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GroupRecordPage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GroupViralInvitationsStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GroupVisibilityType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/GuestReferralOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/HCAddressInput.cls +0 -0
- /package/.sfdx/tools/{248/StandardApexLibrary/ConnectApi/Harmonizebilling.cls → 250/StandardApexLibrary/ConnectApi/HarmonizeBilling.cls} +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/HashtagSegment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/HashtagSegmentInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/HideSocialPostIntent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/HoldFOCapacityInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/HoldFOCapacityOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/HoldFOCapacityRequestInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/HoldFOCapacityResponseOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/HsrCommerceCatalog.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/HttpHeaderOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/HttpRequestMethod.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/IBusinessObjectivesAndRecsFamily.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/IComplaintMgmtConnectFamily.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Icon.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/IdentifyRecordByNameInvocableActionInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/IdentifyRecordByNameInvocableActionOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/IdentityVerfFormDisplayRecord.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/IdentityVerfFormFieldInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/IdentityVerfFormFieldListOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/IdentityVerfFormFieldOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/IdentityVerfFormInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/IdentityVerfFormOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Identityverification.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/IndividualApplicationObjectOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/IndividualApplicationStatusOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/IndividualMemberInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/IndividualMemberOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/IndustriesFundraisingOperationsFamily.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/IndustriesPricingResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/IndustriesRedeemVoucherInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/IndustriesRedeemVoucherOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Industriesvoucherconnect.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/IngestionEventInputWrapper.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/IngestionEventOutputWrapper.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InlineImageSegment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InlineImageSegmentInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InnerEnsureFundsAsyncInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Insight.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InsightsComparisonEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InsightsResultCategory.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InsightsResultTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InsightsTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InteractionCalculationProcedures.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InteractionsCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InternalTestUtilities.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InvalidIds.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InventoryActionType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InventoryCheckAvailabilityOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InventoryLevelsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InventoryOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InventoryProductCheckAvailabilityOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InventoryProductOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Inventorycheckavailabilityinputrepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Invitation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Invitations.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InviteInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InvocableInternalTestInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InvocableInternalTestNestedInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InvocableInternalTestNestedOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InvocableInternalTestNestedWrapper.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InvocableInternalTestOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InvocableInternalTestWrapper.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InvoiceAction.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InvoiceBatchDraftToPostedInputRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InvoiceBillingTermUnitEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InvoiceDraftToPostedInputRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InvoiceInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InvoiceListOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InvoiceOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InvoiceRecoveryResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InvoiceStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InvoiceStatusEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/InvoiceToPayInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ItemQuantityInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ItemQuantityOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/JoinVideoCallResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/JournalStatusResource.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Knowledge.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/KnowledgeArticleVersion.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/KnowledgeArticleVersionCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/KnowledgeMigration.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LabeledRecordField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Language.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LeadInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LeaveVideoCallResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LightningExtensionInformation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LightningKnowledgeArticleVersion.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LightningKnowledgeArticleVersionCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LikeIntent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LikeIntents.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LikeSocialPostIntent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LikeSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LineItemResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LinkAttachment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LinkAttachmentInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LinkCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LinkCapabilityInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LinkDetails.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LinkMetadata.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LinkMetadataCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LinkMetadataInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LinkMetadataSource.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LinkMetadataType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LinkSegment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LinkSegmentInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LiteralJson.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LocationAvailabilityInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LocationCapacityOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LocationCheckAvailabilityOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LocationGroupCheckAvailabilityOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LocationGroupLevelsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LocationInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LocationLevelsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LocationOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Locationcheckavailabilityinputrepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Locationgroupcheckavailabilityinputrepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LoyaltyConnect.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LoyaltyManagementConnect.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/LoyaltyVoucherConnect.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MLDomainTraining.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MaintenanceInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentActionCollectionRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentActionRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentAssociations.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentBodyInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentChannel.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentChannelCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentChannelDetail.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentChannelSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentChannelTargetSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentCollectionDetailRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentCollectionItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentCollectionItemTypeSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentCollectionItems.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentCollectionMetadata.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentCollectionMetadataAuthoring.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentDateAndTimeNodeValue.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentDateNodeValue.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentDeliveryDocument.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentDeliveryDocumentCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentDeliveryDocumentSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentFolderSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentLanguageSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentMediaNodeValue.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentMediaSourceNodeValue.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentNodeType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentNodeValue.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentPublishOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentReference.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentReferenceSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentSpaceCollectionRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentSpaceSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentTextNodeValue.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentTypeSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentUnpublishOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentUserSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentVariant.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentVariantStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentVariantStatusOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentVariantUpdateInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentVersion.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentVersionCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentVersionInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedContentVersionOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedSocialAccount.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedSocialAccountStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedSocialAccounts.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedTopic.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedTopicCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedTopicPositionCollectionInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedTopicPositionInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedTopicType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ManagedTopics.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Managedcontentdelivery.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MapValueWrapper.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MappingOutputCollectionRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MappingOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MarkupBeginSegment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MarkupBeginSegmentInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MarkupEndSegment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MarkupEndSegmentInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MarkupType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MatchType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MatchUpdateLogicDetails.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MediaReference.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MediaReferenceCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MedicalDirectorOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MediumCharacteristicOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MemberAccountInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MemberAccountOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MemberBenefitOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MemberBenefitsOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MemberContactInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MemberContactOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MemberCurrencyOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MemberDetailsOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MemberEnrollmentTransactionJournalOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MemberPersonAccountInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MemberTierOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MemberVouchersSortField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MemberVouchersSortOrder.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MentionCompletion.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MentionCompletionPage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MentionCompletionType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MentionSegment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MentionSegmentInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MentionValidation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MentionValidationStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MentionValidations.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Mentions.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MessageBody.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MessageBodyInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MessageSegment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MessageSegmentInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MessageSegmentType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MetricSpanEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MlDomainTrainingErrorType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MlDomainTrainingInfoRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MlDomainTrainingRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MobilePublisherOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MobilePublisherServiceAccountAuthRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MobilePublisherStoreCredentialsOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ModelFeature.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ModerationCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ModerationFlagItemDetail.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ModerationFlags.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ModerationFlagsCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ModifyShiftResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MoreChangesSegment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Motif.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MultipleAsyncOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MultipleEnsureFundsAsyncInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MultipleFulfillmentOrderInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MultipleFulfillmentOrderInvoicesInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MultipleFulfillmentOrderInvoicesOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MultipleFulfillmentOrderOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MuteCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MuteCapabilityInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/MuteSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NBAActionParameter.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NBAActionType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NBAFlowAction.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NBAFlowType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NBANativeRecommendation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NBARecommendation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NBARecommendations.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NBAStrategyInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NBATargetType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NamedCredential.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NamedCredentialCalloutOptions.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NamedCredentialCalloutOptionsInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NamedCredentialInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NamedCredentialList.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NamedCredentialParameterInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NamedCredentialType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NamedCredentials.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NavigationMenuItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NavigationMenuItemActionType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NavigationMenuItemCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NavigationMenuItemOpenTarget.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NavigationMenuItemType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NavigationMenuPageReference.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NetworkConnection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NetworkConnectionInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NetworkDataCategory.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NetworkDataCategoryCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NetworkDataCategoryGroup.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NetworkDataCategoryTree.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NewFileAttachmentInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NewUserAudienceCriteria.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NewUserAudienceCriteriaInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NextBestAction.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NftSettings.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NftSettingsOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NonEntityRecommendation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NotFoundException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/NotifyAccessResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OAuthCredentialAuthUrl.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OAuthCredentialAuthUrlInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCIAttributeSetOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCIBaseOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCICancelReservationInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCICancelReservationOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCICreateReservationErrorOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCICreateReservationInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCICreateReservationOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCICreateReservationSingleInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCICreateReservationSingleOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCIFulfillReservationErrorOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCIFulfillReservationInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCIFulfillReservationOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCIFulfillReservationSingleInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCIFulfillReservationSingleOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCIFutureInventoryOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCIGetInventoryAvailabilityInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCIGetInventoryAvailabilityOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCIInventoryRecordOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCILocationAvailabilityOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCILocationGroupAvailabilityOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCIPublishLocationStructureOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCIPublishLocationStructureStatusOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCIReleaseReservationErrorOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCIReleaseReservationInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCIReleaseReservationOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCIReleaseReservationSingleInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCIReleaseReservationSingleOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCITransferReservationErrorOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCITransferReservationInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCITransferReservationOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCITransferReservationSingleInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCITransferReservationSingleOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCIUploadInventoryAvailabilityOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OCIUploadInventoryAvailabilityStatusOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OauthProviderInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OcrResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OcrResultCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OcrResultNormalizedText.cls +0 -0
- /package/.sfdx/tools/{248/StandardApexLibrary/ConnectApi/Omnianalytics.cls → 250/StandardApexLibrary/ConnectApi/OmniAnalytics.cls} +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OmniAnalyticsLogCreateRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OmniAnalyticsLogDetailRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OmniAnalyticsLogInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OmniAnalyticsLogsRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OmniAnalyticsMetadataRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OmniAnalyticsSettingRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OmniAnalyticsTrackingComponentRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OmniAnalyticsTrackingExternalDefRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OmniAnalyticsTrackingExternalEventDefRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OmniAnalyticsTrackingGroupRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OmnichannelInventoryService.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Omsanalytics.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OpenAPIAccountContactRelationOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OpenAPIAccountOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OpenAPIConnectInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OpenAPIContractOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OpenAPIOutputListRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OpenAPIOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OperationType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrchestrationInstance.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrchestrationInstanceCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrchestrationStageInstance.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrchestrationStepInstance.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrchestrationWorkItemStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderDeliveryGroupSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderDeliveryGroupSummaryCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderDeliveryGroupSummaryLookupOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderDeliveryGroupSummarySort.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderDeliveryMethodLookupOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderItemSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderItemSummaryAdjustmentAggregates.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderItemSummaryAdjustmentCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderItemSummaryAdjustmentCollectionInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderItemSummaryAdjustmentInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderItemSummaryAdjustmentList.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderItemSummaryCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderItemSummaryInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderItemSummaryLookupOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderItemSummaryOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderItemSummaryProduct.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderItemSummarySort.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderPaymentSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderQuantitiesOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderShipment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderShipmentCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderShipmentItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderShipmentItemCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderShipmentItemSort.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderShipmentSort.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderSummaryAdjustment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderSummaryAdjustmentAggregates.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderSummaryAdjustmentAggregatesAsyncInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderSummaryAdjustmentAggregatesAsyncOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderSummaryAdjustmentAggregatesStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderSummaryAdjustmentCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderSummaryAdjustmentTargetType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderSummaryCollectionRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderSummaryInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderSummaryLookupInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderSummaryLookupOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderSummaryOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderSummaryProductAttribute.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderSummaryProductLookupOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderSummarySortOrder.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderSummaryVerificationInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderToCartFailedProduct.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderToCartInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrderToCartResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Organization.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OrganizationSettings.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OriginCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OriginalDenialMedicalDirectorOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OutOfOffice.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/OutreachSourceCodeDetails.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PBEDerivedPricingOutRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PardotBusinessUnitContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PardotBusinessUnitContextItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PardotBusinessUnitContextOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ParticipantRecentInteractionsResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PartyCreditProfileResultRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PartyExpenseInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PartyExpenseResultRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PartyFinancialLiabilityBorrowerInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PartyFinancialLiabilityBorrowerResultRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PartyIdentityVerificationStepInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PartyIdentityVerificationStepResultRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PartyIncomeInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PartyIncomeResultRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PayLoadOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PaymentAuthAdjustmentResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PaymentAuthorizationResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PaymentGroupRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PaymentGroupResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PaymentInfoInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PaymentInstrumentDetails.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PaymentLineApplyRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PaymentLineApplyResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PaymentLineUnapplyRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PaymentLineUnapplyResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PaymentMethodDetails.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PaymentMethodResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PaymentMethodTokenizationGatewayResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PaymentMethodTokenizationRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PaymentMethodTokenizationResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PaymentResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PaymentsIngestFamilyWrapper.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PercentRecordField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PerformCalculationDetailRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PeriodBoundaryEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PeriodTypesEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PhoneNumber.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Photo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PhotoInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PickTicket.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PicklistRecordField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PinCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PinCapabilityInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PinnedFeedElements.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PlaceQuoteErrorResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PlatformAction.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PlatformActionGroup.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PlatformActionGroupCategory.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PlatformActionStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PlatformActionType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PointsChangeOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PollAttachmentInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PollCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PollCapabilityInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PostAuthApiPaymentMethodRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PostAuthGatewayResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PostAuthRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PredictHistoryIntervalEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Prediction.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PredictionField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PredictionObject.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PredictionRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PredictionResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PreserveCart.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PreviewBaseOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PreviewBenefitSessionInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PreviewBenefitSessionsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PreviewCancelOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PreviewCartToExchangeOrderInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PreviewCartToExchangeOrderOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PreviewReturnOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PriceAdjustmentSchedule.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PriceAdjustmentScheduleAdjustmentMethod.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PriceAdjustmentScheduleType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PriceAdjustmentTier.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PriceAdjustmentTierType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PricingActionGetOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PricingActionOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PricingActionParamValuesOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PricingActionPostOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PricingAttributeNameValueTupleOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PricingErrorResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PricingInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PricingLineItemInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PricingRecipeLookUpTableResponseRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PricingRecipeOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PricingRecipePostOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PricingRecipeResponseRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PricingResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PricingResultLineItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PricingTermUnit.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PricingWaterFallMetaDataResponseRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProcessDefinitionInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProcessDefinitionOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProcessDetailInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProcessDetailOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProcessRuleConditionFilterCriteriaOperator.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProcessRuleStepType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProcessingOptionsDetails.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductAttributeInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductAttributeInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductAttributeSelectionInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductAttributeSet.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductAttributeSetInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductAttributeSetSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductAttributeSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductAttributesToProductEntry.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductCartItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductCartItemCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductCategoryData.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductCategoryDetail.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductCategoryDetailCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductCategoryMedia.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductCategoryMediaGroup.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductCategoryPath.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductCheckAvailabilityInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductChild.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductChildCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductClass.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductDetail.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductDetailsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductEntitlement.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductExpandOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductExpandType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductFileFormat.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductImageGroupOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductImageOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductImageViewType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductInventory.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductInventoryPricing.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductMedia.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductMediaGroup.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductMediaType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductMediaUsageType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductOverview.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductOverviewCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductPrice.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductPriceEntry.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductQuantityRuleOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductReturnRateListOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductReturnRateOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductSchemaType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductScope.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductSearchFacetOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductSearchFacetValueOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductSearchGroupingInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductSearchImageOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductSearchInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductSearchOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductSearchProductOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductSearchResults.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductSearchSuggestionsResults.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductSellingModel.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductSummaryPage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductTransferStatusEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductVariantOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductVariationAttributeOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductVariationAttributeValueOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductVariationInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProductsListOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProgramApplicationFileInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248/StandardApexLibrary/ConnectApi/Programapplicationinputrepresentation.cls → 250/StandardApexLibrary/ConnectApi/ProgramApplicationInputRepresentation.cls} +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProgramApplicationItemInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProgramApplicationOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProgramEnrollmentsDTO.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProgramEnrollmentsInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProgramEnrollmentsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProgramIndividualApplicationOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProgramManagement.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProgramRebateTypes.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProgramsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProgramsRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProjectedRebateAmountCalc.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PromotionAdjustmentTargetType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PromotionBonusProduct.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PromotionCart.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PromotionCartAdjustmentGroup.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PromotionCartAdjustmentGroupInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PromotionCartDeliveryGroup.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PromotionCartDeliveryGroupInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PromotionCartDeliveryGroupMethod.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PromotionCartDeliveryGroupMethodInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PromotionCartDeliveryMethodAdjustment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PromotionCartInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PromotionCartItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PromotionCartItemInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PromotionCartItemKey.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PromotionCartItemPriceAdjustment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PromotionCartItemPriceAdjustmentInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PromotionCoupon.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PromotionEvaluateInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PromotionEvaluation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PromotionParentProductsInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PromotionProductCategoriesInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PromotionScope.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProviderInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProviderOutputCollectionRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProviderOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProvidersError.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProvidersInputResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ProvidersInputResultDetail.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PublishSchedule.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PublishStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PurchaseQuantityRule.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PurchasedProductCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/PurchasedProductSummaryOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/QuantityWithSkuInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/QueryLanguage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/QuestionAndAnswers.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/QuestionAndAnswersCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/QuestionAndAnswersCapabilityInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/QuestionAndAnswersSuggestions.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/QuestionAttachment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/QuestionAttachmentInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/QuestionContextType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/QuickTextContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/QuotaAvailabilityDateRange.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/QuotaAvailabilityRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/QuotasAllocationOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/QuotasAllocationRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RankAverageDistanceInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RankAverageDistanceOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RateLimitException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RawDataInputWrap.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReadBy.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReadByCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReadByCapabilityInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReadByPage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecipeSortOrderEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecipientEngagementContextInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Recommendation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecommendationActionType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecommendationAudience.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecommendationAudienceCriteriaType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecommendationAudienceInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecommendationAudienceMemberOperationType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecommendationAudiencePage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecommendationChannel.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecommendationCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecommendationDefinition.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecommendationDefinitionInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecommendationDefinitionPage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecommendationExplanation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecommendationExplanationType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecommendationList.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecommendationMode.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecommendationReaction.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecommendationReactionInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecommendationReactionType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecommendationReactions.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecommendationType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Recommendations.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecommendationsCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecommendationsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecommendedObject.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecommendedObjectType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordAccessDetailRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordAggregationDefinitionInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordAggregationFamily.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordAlertActionCollectionMapRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordAlertActionInfoCollectionRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordAlertActionInfoRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordAlertActionOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordAlertActionParameterInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordAlertActionSingleOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordAlertBulkActionInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordAlertCollectionMapRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordAlertCollectionRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordAlertErrorRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordAlertErrorType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordAlertRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordAlertSeverityType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordAlertSourceType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordCapabilityInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordColumnOrder.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordFieldType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordFilterCriteriaFamily.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordSeoProperties.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordSnapshot.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordSnapshotAttachment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordSnapshotCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordSummaryList.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordValidationOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordView.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordViewSection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Recordalertactioninputrepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Records.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordsetFilterCriteria.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordsetFilterCriteriaCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecordsetFilterCriteriaInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecurringSubTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecursOnDayEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RecursOnEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RedeemVoucherInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RedeemVoucherOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Reference.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReferenceItemBaseInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReferenceItemCodeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReferenceLineError.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReferenceRecordField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReferenceWithDateRecordField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReferencedRefundRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReferencedRefundResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReferralEventConnect.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReferralEventOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReferralManagementOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReferralMemberEnrollmentInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReferralMemberEnrolmentOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Referralmanagementconnect.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RefinementInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RefundGatewayResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RefundLineApplyRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RefundLineApplyResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RefundRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RefundResponse.cls +0 -0
- /package/.sfdx/tools/{248/StandardApexLibrary/ConnectApi/Registerguestbuyer.cls → 250/StandardApexLibrary/ConnectApi/RegisterGuestBuyer.cls} +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RegisterGuestBuyerInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RegisterGuestBuyerOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RelatedEntityInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RelatedFeedPost.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RelatedFeedPostType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RelatedFeedPosts.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RelatedPersonEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RelatedQuestion.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReleaseHeldFOCapacityInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReleaseHeldFOCapacityOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReleaseHeldFOCapacityRequestInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReleaseHeldFOCapacityResponseOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReopenedByOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReplyIntent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReplyIntents.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReplyRecommendationsChannelType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReplyRecommendationsMetric.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReplyRecommendationsMetrics.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RepositoryDirectoryEntryCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RepositoryFileDetail.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RepositoryFileSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RepositoryFolderDetail.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RepositoryFolderItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RepositoryFolderItemsCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RepositoryFolderSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RepositoryGroupSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RepositoryPermissionTypeCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RepositoryUserSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Repricing.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Reputation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReputationLevel.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RequestHeader.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RequestHeaderInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RequestingPractitionerOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RescheduleSlotChainOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ResourceLinkSegment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ResponseSuggestions.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReturnItemsInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReturnItemsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReturnOrder.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReturnOrderInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReturnOrderItemDeliveryChargeInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReturnOrderItemFeeInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReturnOrderItemInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReturnOrderItemSplitLineOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReturnOrderLineItemFeeInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReturnOrderLineItemInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ReturnOrderOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RevenueAddressInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RevenueAsyncLineLevelOutputResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RevenueAsyncRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RevenueElementRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RevenueElementResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RevenueRecognition.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RevenueRecognitionRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/RevenueRecognitionType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Routing.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SaleApiPaymentMethodRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SaleGatewayResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SaleRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SaleResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SalesAgreementManagementProductErrorResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SalesforceInbox.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SaqlQueryInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SaqlQueryMetadata.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ScheduleOptionsInputRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ScheduledRecommendation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ScheduledRecommendationInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ScheduledRecommendationPage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SchedulerExtendedFieldsOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Scope.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SearchBoostBuryConditionOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SearchBoostBuryRuleAction.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SearchBoostBuryRuleOperation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SearchBoostBuryRuleOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SearchBoostBuryRulesCollectionOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SearchBoostBuryTargetExpressionOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SearchCategory.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SearchConditions.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SearchFacet.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SearchFieldRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SearchFilterRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SearchInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SearchOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SearchResultHeaderRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SearchResultOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SearchResultRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SearchResultsRule.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SearchResultsRuleTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SearchResultsRulesCollectionOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SearchSuggestion.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SearchSuggestionWithProductSuggestion.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SelectedSearchResultInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SelectedSearchResultOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SelectedVerifiedResultInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SelectedVerifiedResultOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SellingModelType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SemanticSearchQueryInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SequenceOrderPaymentSummaryInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SequenceVerificationInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SequenceVerificationRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ServiceAppointmentOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ServiceAppointmentResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ServiceCatalogFrequentActionsOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ServiceCatalogItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ServiceCatalogItemAttributes.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ServiceCatalogItemCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ServiceCatalogItemsFetchOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ServiceCatalogItemsOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ServiceCatalogStaticActionsOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ServiceEinsteinAppType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ServiceEinsteinModelManagement.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ServiceEinsteinModelTrainingErrorCode.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ServiceEinsteinModelTrainingStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ServiceEinsteinReadinessCheckType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ServiceProcessRecordRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ServiceProcessRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ServiceProcessRequestInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ServicingFacilityOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ServicingPractitionerOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SetupCallResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ShareRelationshipArrayRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ShareRelationshipOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SharedOrderPaymentSummarySequenceInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Sharing.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SharingReasonRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ShiftsFromPattern.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ShiftsFromPatternError.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ShiftsFromPatternInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SimulationContextInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SiteSearchItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SiteSearchResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Slot.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SlotChainValidationOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SlotStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartAnswer.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartAnswers.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModel.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelClassificationMetrics.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelCoefficientCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelCollectionSortOrderType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelDiscoverySource.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelDiscoverySourceInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelMulticlassMetrics.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelRegressionMetrics.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelResidual.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelResidualCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelTransformation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelTransformationInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelTransformationTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelUserUploadSource.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAIModelUserUploadSourceInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAbstractAIModelSourceInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAbstractClassificationThreshold.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAbstractClassificationThresholdInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAbstractFieldMappingSourceInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAbstractModelFieldInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAbstractPredict.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAbstractPredictionPropertyInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAggregatePredictConditionRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAggregatePredictStatusEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAggregatePredictionErrorRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAggregatePredictionRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAssetReference.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryAssetReferenceInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryBaseAssetReference.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryBinaryClassificationThreshold.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryBinaryClassificationThresholdInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCategoricalImputationMethodEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCategoricalImputationTransformation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCategoricalImputationTransformationInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCategoricalProjectedPrediction.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryClassificationAlgorithmTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryClassificationPredictionProperty.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryClassificationPredictionPropertyInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryClassificationTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCluster.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryClusterInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryComplexFilterInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryContact.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCustomPrescribableFieldDefinition.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCustomPrescribableFieldDefinitionInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCustomizableField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCustomizableFieldDefinition.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCustomizableFieldDefinitionInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryCustomizableFieldInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryDataAlertFieldRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryDataAlertType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryDiscoveryModelRuntime.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryDiscoveryModelRuntimeInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryDiscoveryNumericRangeInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryDiscoveryPredictSettings.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryExtractDayOfWeekTransformation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryExtractDayOfWeekTransformationInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryExtractMonthOfYearTransformation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryExtractMonthOfYearTransformationInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMapSourceTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMapping.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMappingAnalyticsDatasetField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMappingAnalyticsDatasetFieldInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMappingCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMappingInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMappingMappedField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMappingSalesforceField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFieldMappingSalesforceFieldInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilter.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilterFieldTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilterInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilterList.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilterOperator.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilterValue.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilterValueInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFilterValueTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFreeTextClusteringTransformation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryFreeTextClusteringTransformationInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryH2OModelRuntime.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryH2OModelRuntimeInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryLiveMetricDetailRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryLiveMetricsRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryManyToOneTransformationInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryMetricsCollectionRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModel.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelCard.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldDate.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldDateInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldNumeric.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldNumericInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldText.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldTextInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelFieldTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelMetricType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelRuntimeTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryModelSourceTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryMulticlassClassificationPredictionProperty.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryMulticlassClassificationPredictionPropertyInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryMulticlassPredict.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryMulticlassProbability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryNumericRange.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryNumericTransformationFilter.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryNumericTransformationFilterInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryNumericalImputationMethodEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryNumericalImputationTransformation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryNumericalImputationTransformationInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryNumericalProjectedPrediction.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryOneToOneTransformationInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryOutcomeGoal.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredDefCollectionSortOrderType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredDefModelStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredDefOutcome.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredDefOutcomeInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredDefPushbackFieldInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredict.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictAggregateFunctionEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictColumn.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictColumnCustomText.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictCondition.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictErrorObject.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictImportWarnings.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictInputRawData.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictInputRecordOverrides.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictInputRecords.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictInputRowObject.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictJob.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictJobCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictJobInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictJobStatusEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictJobUpdate.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictObject.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictOutOfBoundsFields.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictSettings.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictStatusEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPrediction.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictionDefinition.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictionDefinitionCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictionDefinitionInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPredictionTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPrescribableField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPrescribableFieldInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionSettings.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionSettingsInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictions.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsCountFromDateIntervalSetting.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsCountFromDateIntervalSettingInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsCountIntervalSetting.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsCountIntervalSettingInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsDateIntervalSetting.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsDateIntervalSettingInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsHistoricalDatasetInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsHistoricalDatasetSourceInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsIntervalSettingType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsIntervalTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsOverride.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsOverrideInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsTransformation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsTransformationInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedPredictionsType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryProjectedValue.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPushbackField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryPushbackType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRecipient.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRecipientInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRecipientTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshConfig.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshConfigInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshJob.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshJobCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshJobInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshJobStatusEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshJobTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshTask.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshTaskCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshTaskSource.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRefreshTaskStatusEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRegressionAlgorithmTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRegressionPredictionProperty.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRegressionPredictionPropertyInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryRowNestedList.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryScikitLearn102ModelRuntime.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryScikitlearn102ModelRuntimeInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoverySentimentAnalysisTransformation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoverySentimentAnalysisTransformationInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoverySetupPropertyTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoverySortOrderEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryStoryNarrativeElementTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTensorFlow27ModelRuntime.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTensorFlow27ModelRuntimeInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTensorFlowModelRuntime.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTensorFlowModelRuntimeInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTextTransformationFilter.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTextTransformationFilterInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTrainingMetricsRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTransformationFilterInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTransformationFilterTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTransformationInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTypographicClusteringTransformation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryTypographicClusteringTransformationInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartDataDiscoveryUser.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartResponseInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SmartResponses.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Smartdatadiscovery.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SocialAccount.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SocialAccountRelationship.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SocialCustomerServiceConfig.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SocialCustomerServiceInboundErrors.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SocialCustomerServiceInboundPost.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SocialCustomerServiceMessageTypeSettings.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SocialCustomerServiceProviderSettings.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SocialEngagement.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SocialNetworkAutenticationInformation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SocialNetworkProvider.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SocialPostCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SocialPostIntents.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SocialPostMassApprovalInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SocialPostMassApprovalOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SocialPostMessageType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SocialPostStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SocialPostStatusType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SortOrder.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SortOrderEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SortRule.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SortRulesCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Stamp.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/StandaloneCreditMemoAdjustmentInputRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/StandaloneCreditMemoChargeInputRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/StandaloneCreditMemoInputRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/StandaloneCreditMemoTaxInputRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/StandaloneTaxStrategyEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/StandardFieldDetails.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/StandardObjectDetails.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/StatementFrequencyResource.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/StatementMethodResource.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Status.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/StatusCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/StatusCapabilityInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/StoryAnalysisTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/StoryChartValueTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/StoryCountInsightsFrequencyChangeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/StoryCountInsightsFrequencyEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/StoryDescriptiveInsightsImpactEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/StoryDescriptiveInsightsRatingEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/StrategyTrace.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/StrategyTraceNode.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/StreamSubscriptionInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/StreamingAppConnectorTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SubmitCancelOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SubmitCartToExchangeOrderOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SubmitReturnOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SubscriberOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Subscription.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SubscriptionState.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SubscriptionTermRule.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Suggestion.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SupportedEmojis.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SurveyEmailStatusEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SurveyInvitationEmailInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SurveyInvitationEmailOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SurveyMassInvitationEmailInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SurveyNavigationActionEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SurveyResponseApiStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Surveys.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/SvcApptModeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Target.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TargetCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TargetCollectionInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TargetCollectionUpdateInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TargetInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TargetLocationInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TargetUpdateInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TaxAddressRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TaxAddressResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TaxAddressesRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TaxAddressesResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TaxAmountDetailsResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TaxCustomerDetailsRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TaxDetailsResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TaxEngineLogResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TaxImpositionResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TaxJurisdictionResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TaxLineItemRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TaxLocaleType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TaxPlatform.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TaxStrategyEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TaxTransactionRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TaxTransactionResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TaxTransactionState.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TaxType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TermsOfService.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TerritoryAppointmentSlot.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TextClassificationsBulkResultsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TextClassificationsInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TextClassificationsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TextClassificationsResultOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TextClassificationsResultWithIdOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TextSegment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TextSegmentInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TextSmartResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TimeZone.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ToggleCallTranscriptionResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Topic.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TopicEndorsementSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TopicImages.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TopicInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TopicNamesInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TopicPage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TopicSort.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TopicSuggestion.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TopicSuggestionPage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TopicSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Topics.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TopicsCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TopicsCapabilityInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TrackedChangeAttachment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TrackedChangeBundleCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TrackedChangeItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TrackedChangesCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TrackedCommunicationOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TransactionDetails.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TransactionEventInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TransactionEventOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TransactionJournalOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TransactionPaymentUpdatesInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TransactionPaymentUpdatesOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TransactionPaymentUpdatesResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TransactionPaymentUpdatesResponseLink.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TransactionReceiptInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TransactionReceiptOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Transactiondetailsoutputrepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Transactionledgersoutputrepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/TransportLocationOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UiObjectRepresentationCardDetailGetResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UiObjectRepresentationCardsGetResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UnapplyCreditResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UnauthenticatedUser.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UnifiedKnowledgeConnectorAuthParam.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UnifiedKnowledgeConnectorList.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UnreadConversationCount.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UpDownVoteCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UpDownVoteCapabilityInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UpDownVoteValue.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UpVoteSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UpdateCommitmentOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UpdateCommitmentResponseLink.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UpdateServiceAppointmentInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UpdateVideoCallResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/User.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserActivitiesJob.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserActivityCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserActivitySummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserActivityType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserCapabilities.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserChatterSettings.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserCredentialsInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserDetail.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserFeedEntityActivitySummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserGroupDetailPage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserGroupPage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserMission.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserMissionActivitiesJob.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserMissionActivity.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserMissionActivityCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserMissionActivityStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserMissionActivityType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserOauthInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserOrGroupRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserPage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserProfile.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserProfileTab.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserProfileTabType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserProfiles.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserReferencePage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserSettings.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/UserType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ValidateSignatureResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ValidationErrorOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ValidationOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ValidationResultRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/VerificationContextInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/VerificationContextOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/VerificationProcessFieldInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/VerificationProcessFieldListOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/VerificationProcessFieldOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/VerifiedCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/VerifiedCapabilityInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/VerifiedDetailsInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/VerifiedDetailsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/VerifiedResultInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/VerifiedResultOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/VerifierInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/VerifierOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/VersionedReviseDetailsOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/VideoCallParticipant.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/VideoCallParticipantField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/VideoCallParticipantResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/VoidPostedInvoiceInputRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Vote.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/VotePage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Voucher.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/VoucherInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/VoucherOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/VoucherPublicKeyOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/VoucherRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/VoucherWithPriceInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/VoucherWithPriceOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/VouchersListRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WaitlistAnalytics.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WaitlistAppointmentResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WaitlistCheckInInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WaitlistCheckInOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WaitlistCheckInResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WaitlistInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WaitlistListResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WaitlistOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WaitlistParticipantParticipant.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WaitlistParticipantResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WaitlistRelationshipsResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WaitlistResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WaitlistServiceResource.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WaitlistServiceResourceWithWorkTypes.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WaitlistWorkType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WaitlistWorkTypeGroup.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Web3Transaction.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Wishlist.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WishlistInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WishlistItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WishlistItemCollection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WishlistItemInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WishlistItemSortOrder.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WishlistSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WishlistToCartResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WishlistUpdateInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WishlistsSummary.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WorkTypeLeadTimeInputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WorkTypeLeadTimeOutputRepresentation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WorkflowProcessStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WorkspacePermission.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WrappedMap.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WrappedMapObject.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WrappedObject.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/WrappedValue.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Zone.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ZonePage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ZoneSearchPage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ZoneSearchResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ZoneSearchResultType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/ZoneShowIn.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/ConnectApi/Zones.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/ApexTestData.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/AsyncDeleteCallback.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/AsyncSaveCallback.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/AuthenticationCapability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/AuthenticationProtocol.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/Capability.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/ColumnSelection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/Connection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/ConnectionParams.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/DataSourceException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/DataSourceUtil.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/DeleteContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/DeleteResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/Filter.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/FilterType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/IAsyncDeleteCallback.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/IAsyncSaveCallback.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/IdentityType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/MatchContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/MatchEngineSettings.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/MatchResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/Matchable.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/MatchedRecord.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/OAuthTokenExpiredException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/Order.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/OrderDirection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/Provider.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/QueryAggregation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/QueryContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/QueryUtils.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/ReadContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/SearchContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/SearchUtils.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/Table.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/TableResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/TableSelection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/UpsertContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataSource/UpsertResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataWeave/Result.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/DataWeave/Script.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Database/Batchable.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Database/BatchableContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Database/BatchableContextImpl.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Database/DMLOptions.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Database/DeleteResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Database/DeletedRecord.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Database/DuplicateError.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Database/EmptyRecycleBinResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Database/Error.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Database/GetDeletedResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Database/GetUpdatedResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Database/LeadConvert.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Database/LeadConvertResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Database/MergeRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Database/MergeResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Database/NestedSaveResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Database/QueryLocator.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Database/QueryLocatorChunkIterator.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Database/QueryLocatorIterator.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Database/RelationshipSaveResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Database/SaveResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Database/UndeleteResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Database/UnitOfWork.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Database/UpsertResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Datacloud/AdditionalInformationMap.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Datacloud/DuplicateResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Datacloud/FieldDiff.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Datacloud/FieldDifferenceType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Datacloud/FindDuplicates.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Datacloud/FindDuplicatesByIds.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Datacloud/FindDuplicatesResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Datacloud/MatchRecord.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Datacloud/MatchResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Dom/Document.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Dom/XmlNode.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Dom/XmlNodeType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/EventBus/ChangeEventHeader.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/EventBus/EventPublishFailureCallback.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/EventBus/EventPublishSuccessCallback.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/EventBus/FailureResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/EventBus/InvalidReplayIdException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/EventBus/RetryableException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/EventBus/SuccessResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/EventBus/TestBroker.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/EventBus/TestEventService.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/EventBus/TriggerContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Flow/Interview.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/FormulaEval/FormulaReturnType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Functions/Function.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Functions/FunctionCallback.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Functions/FunctionContextImpl.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Functions/FunctionErrorType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Functions/FunctionInvocable.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Functions/FunctionInvocation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Functions/FunctionInvocationError.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Functions/FunctionInvocationStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Functions/FunctionInvokeMock.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Functions/MockFunctionInvocationFactory.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Invocable/Action.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Invocable/ActionInvoker.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/IsvPartners/AppAnalytics.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/KbManagement/PublishingService.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/LxScheduler/GetAppointmentCandidatesInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/LxScheduler/GetAppointmentCandidatesInputBuilder.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/LxScheduler/GetAppointmentSlotsInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/LxScheduler/GetAppointmentSlotsInputBuilder.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/LxScheduler/SchedulerResources.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/LxScheduler/SchedulerResourcesHelper.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/LxScheduler/ServiceAppointmentRequestInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/LxScheduler/ServiceResourceInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/LxScheduler/ServiceResourceSchedule.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/LxScheduler/ServiceResourceScheduleHandler.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/LxScheduler/SkillRequirement.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/LxScheduler/SkillRequirementBuilder.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/LxScheduler/UnavailableTimeslot.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/LxScheduler/WorkType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/LxScheduler/WorkTypeBuilder.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Messaging/AttachmentRetrievalOption.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Messaging/CustomNotification.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Messaging/Email.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Messaging/EmailAttachment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Messaging/EmailFileAttachment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Messaging/EmailToSalesforceHandler.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Messaging/InboundEmail.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Messaging/InboundEmailHandler.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Messaging/InboundEmailResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Messaging/InboundEnvelope.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Messaging/MassEmailMessage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Messaging/PushNotification.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Messaging/PushNotificationPayload.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Messaging/RenderEmailTemplateBodyResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Messaging/RenderEmailTemplateError.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Messaging/SendEmailError.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Messaging/SendEmailResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Messaging/SingleEmailMessage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/AnalyticsCloudComponentLayoutItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/ConsoleComponent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/Container.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/CustomConsoleComponents.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/CustomMetadata.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/CustomMetadataValue.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/DeployCallback.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/DeployCallbackContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/DeployContainer.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/DeployDetails.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/DeployMessage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/DeployProblemType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/DeployResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/DeployStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/FeedItemTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/FeedLayout.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/FeedLayoutComponent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/FeedLayoutComponentType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/FeedLayoutFilter.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/FeedLayoutFilterPosition.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/FeedLayoutFilterType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/Layout.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/LayoutColumn.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/LayoutHeader.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/LayoutItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/LayoutSection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/LayoutSectionStyle.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/Metadata.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/MetadataType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/MetadataValue.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/MiniLayout.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/OmniInteractionAccessConfig.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/Operations.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/PlatformActionList.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/PlatformActionListContextEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/PlatformActionListItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/PlatformActionTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/PrimaryTabComponents.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/QuickActionList.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/QuickActionListItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/RelatedContent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/RelatedContentItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/RelatedList.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/RelatedListItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/ReportChartComponentLayoutItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/ReportChartComponentSize.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/SidebarComponent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/SortOrder.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/StatusCode.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/SubtabComponents.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/SummaryLayout.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/SummaryLayoutItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/SummaryLayoutStyleEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Metadata/UiBehavior.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Pref_center/DataCloudIdTokenType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Pref_center/FieldProperties.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Pref_center/GlobalPrefCenterApexClass.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Pref_center/LoadFormData.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Pref_center/LoadParameters.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Pref_center/PrefCenterException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Pref_center/PreferenceCenterApexHandler.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Pref_center/SubmitFormData.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Pref_center/SubmitParameters.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Pref_center/TokenType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Pref_center/TokenUtility.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Pref_center/ValidationResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Process/Plugin.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Process/PluginDescribeResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Process/PluginRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Process/PluginResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Process/SparkPlugApi.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/QuickAction/Control.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/QuickAction/DescribeAvailableQuickActionResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/QuickAction/DescribeLayoutComponent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/QuickAction/DescribeLayoutItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/QuickAction/DescribeLayoutRow.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/QuickAction/DescribeLayoutSection.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/QuickAction/DescribeQuickActionDefaultValue.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/QuickAction/DescribeQuickActionResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/QuickAction/EmptySpace.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/QuickAction/ExpandedLookup.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/QuickAction/Field.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/QuickAction/FieldLayoutComponent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/QuickAction/QuickActionDefaults.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/QuickAction/QuickActionDefaultsHandler.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/QuickAction/QuickActionRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/QuickAction/QuickActionResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/QuickAction/QuickActionTemplateResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/QuickAction/ReportChartComponent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/QuickAction/SControl.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/QuickAction/SendEmailQuickActionDefaults.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/QuickAction/Separator.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/QuickAction/VisualforcePage.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/AggregateColumn.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/BucketField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/BucketFieldValue.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/BucketType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ColumnDataType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ColumnSortOrder.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/CrossFilter.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/CsfGroupType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/DateGranularity.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/DetailColumn.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/Dimension.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/EvaluatedCondition.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/EvaluatedConditionOperator.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/FeatureNotSupportedException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/FilterOperator.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/FilterValue.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/FormulaType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/GroupingColumn.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/GroupingInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/GroupingValue.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/InstanceAccessException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/InvalidFilterException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/InvalidReportMetadataException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/InvalidSnapshotDateException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/MetadataException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/NotificationAction.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/NotificationActionContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ReportCsf.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ReportCurrency.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ReportDataCell.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ReportDescribeResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ReportDetailRow.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ReportDivisionInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ReportExtendedMetadata.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ReportFact.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ReportFactWithDetails.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ReportFactWithSummaries.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ReportFilter.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ReportFilterType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ReportFormat.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ReportInstance.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ReportInstanceAttributes.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ReportManager.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ReportMetadata.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ReportResults.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ReportRunException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ReportScopeInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ReportScopeValue.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ReportTester.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ReportType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ReportTypeColumn.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ReportTypeColumnCategory.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ReportTypeMetadata.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/SortColumn.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/StandardDateFilter.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/StandardDateFilterDuration.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/StandardDateFilterDurationGroup.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/StandardFilter.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/StandardFilterInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/StandardFilterInfoPicklist.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/StandardFilterType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/SummaryValue.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/ThresholdInformation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/TopRows.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Reports/UnsupportedOperationException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/RichMessaging/AbstractTiming.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/RichMessaging/AddressableContact.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/RichMessaging/AuthRequestHandler.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/RichMessaging/AuthRequestResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/RichMessaging/AuthRequestResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/RichMessaging/AuthRequestResultStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/RichMessaging/DeferredTiming.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/RichMessaging/EncryptedPaymentData.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/RichMessaging/EncryptedPaymentDataHeader.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/RichMessaging/MessageDefinitionInputParameter.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/RichMessaging/PaymentItemStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/RichMessaging/PaymentLineItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/RichMessaging/PaymentMethod.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/RichMessaging/PostalAddress.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/RichMessaging/ProcessPaymentHandler.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/RichMessaging/ProcessPaymentRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/RichMessaging/ProcessPaymentResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/RichMessaging/ProcessPaymentResultStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/RichMessaging/RecurringTiming.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/RichMessaging/ShippingMethod.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/RichMessaging/TimeSlotOption.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/RichMessaging/TimingIntervalUnit.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/RichMessaging/TimingType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Schema/ChildRelationship.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Schema/DataCategory.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Schema/DataCategoryGroupSobjectTypePair.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Schema/DescribeColorResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Schema/DescribeDataCategoryGroupResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Schema/DescribeDataCategoryGroupStructureResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Schema/DescribeFieldResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Schema/DescribeIconResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Schema/DescribeSObjectResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Schema/DescribeTabResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Schema/DescribeTabSetResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Schema/DisplayType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Schema/FieldDescribeOptions.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Schema/FieldSet.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Schema/FieldSetMember.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Schema/FilteredLookupInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Schema/PicklistEntry.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Schema/RecordTypeInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Schema/SObjectDescribeOptions.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Schema/SObjectField.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Schema/SObjectType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Search/KnowledgeSuggestionFilter.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Search/QuestionSuggestionFilter.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Search/SearchResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Search/SearchResults.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Search/SuggestionOption.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Search/SuggestionResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Search/SuggestionResults.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Sfc/ContentDownloadContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Sfc/ContentDownloadHandler.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Sfc/ContentDownloadHandlerFactory.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Sfc/MenuActionServices.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Sfc/MenuFactory.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Sfc/MenuItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Site/UrlRewriter.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ActionDispatcher.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ActionHandler.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ActionPayload.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ActionResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ApiTestRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ApiTestResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/App.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/AppClient.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/AppClientMock.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/AppHomeOpenedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/AppIcons.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/AppMentionEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/AppRateLimitedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/AppRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/AppRequestedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/AppScope.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/AppUninstalledEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/AppsEventAuthorizationsListRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/AppsEventAuthorizationsListResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/AppsUninstallRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/AppsUninstallResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/AuthRevokeRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/AuthRevokeResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/AuthTeamsListRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/AuthTeamsListResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/AuthTestRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/AuthTestResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/BillableInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/Bookmark.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/BookmarksAddRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/BookmarksAddResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/BookmarksEditRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/BookmarksEditResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/BookmarksListRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/BookmarksListResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/BookmarksRemoveRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/BookmarksRemoveResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/BotClient.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/BotClientMock.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/BotIcons.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/BotProfile.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/BotsInfoRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/BotsInfoResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/Call.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/CallParticipant.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/CallRejectedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/CallableHandler.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/CallsAddRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/CallsAddResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/CallsEndRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/CallsEndResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/CallsInfoRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/CallsInfoResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/CallsParticipantsAddRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/CallsParticipantsAddResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/CallsParticipantsRemoveRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/CallsParticipantsRemoveResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/CallsUpdateRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/CallsUpdateResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/Channel.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ChannelArchiveEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ChannelCreatedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ChannelDeletedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ChannelHistoryChangedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ChannelIdChangedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ChannelLeftEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ChannelRenameEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ChannelSharedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ChannelUnarchiveEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ChannelUnsharedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ChatDeleteRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ChatDeleteResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ChatDeleteScheduledMessageRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ChatDeleteScheduledMessageResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ChatGetPermalinkRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ChatGetPermalinkResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ChatMeMessageRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ChatMeMessageResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ChatPostEphemeralRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ChatPostEphemeralResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ChatPostMessageRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ChatPostMessageResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ChatScheduleMessageRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ChatScheduleMessageResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ChatScheduledMessagesListRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ChatScheduledMessagesListResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ChatUpdateRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ChatUpdateResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConnectChannel.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConnectInvite.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConnectInviteAcceptance.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConnectInviteDetail.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConnectInviteReview.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConnectTeam.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConnectUser.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConnectUserProfile.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/Conversation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsAcceptSharedInviteRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsAcceptSharedInviteResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsArchiveRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsArchiveResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsCloseRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsCloseResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsCreateRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsCreateResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsDeclineSharedInviteRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsDeclineSharedInviteResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsHistoryRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsHistoryResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsInfoRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsInfoResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsInviteRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsInviteResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsInviteSharedRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsInviteSharedResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsJoinRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsJoinResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsKickRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsKickResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsLeaveRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsLeaveResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsListConnectInvitesRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsListConnectInvitesResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsListRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsListResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsMarkRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsMarkResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsMembersRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsMembersResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsOpenRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsOpenResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsRenameRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsRenameResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsRepliesRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsRepliesResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsSetPurposeRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsSetPurposeResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsSetTopicRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsSetTopicResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsUnarchiveRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ConversationsUnarchiveResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/DndEndDndRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/DndEndDndResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/DndEndSnoozeRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/DndEndSnoozeResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/DndInfoRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/DndInfoResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/DndSetSnoozeRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/DndSetSnoozeResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/DndTeamInfoRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/DndTeamInfoResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/DndUpdatedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/DndUpdatedUserEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/EmailDomainChangedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/EmojiChangedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/EmojiListRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/EmojiListResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ErrorReport.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ErrorResponseMetadata.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/Event.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/EventDispatcher.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/EventParameters.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/Field.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/File.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FileChangeEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FileComment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FileCreatedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FileDeletedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FilePublicEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FileSharedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FileUnsharedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FilesDeleteRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FilesDeleteResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FilesDownloadRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FilesInfoRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FilesInfoResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FilesListRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FilesListResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FilesRemoteAddRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FilesRemoteAddResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FilesRemoteInfoRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FilesRemoteInfoResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FilesRemoteListRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FilesRemoteListResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FilesRemoteRemoveRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FilesRemoteRemoveResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FilesRemoteShareRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FilesRemoteShareResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FilesRemoteUpdateRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FilesRemoteUpdateResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FilesRevokePublicURLRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FilesRevokePublicURLResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FilesSharedPublicURLRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/FilesSharedPublicURLResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/GridMigrationFinishedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/GridMigrationStartedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/GroupArchiveEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/GroupCloseEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/GroupDeletedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/GroupHistoryChangedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/GroupLeftEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/GroupOpenEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/GroupRenameEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/GroupUnarchiveEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/HomeView.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ImCloseEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ImCreatedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ImHistoryChangedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ImOpenEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/IntegrationLog.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/InviteRequestedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/Latest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/LinkSharedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/Login.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/MatchedItem.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/MemberJoinedChannelEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/MemberLeftChannelEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/Message.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/MessageBotEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/MessageChangedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/MessageChannelJoinEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/MessageChannelPostingPermissionsEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/MessageChannelTopicEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/MessageContent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/MessageContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/MessageDeletedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/MessageEkmAccessDeniedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/MessageEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/MessageFileShareEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/MessageGroupTopicEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/MessageMeEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/MessageRepliedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/MessageThreadBroadcastEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/MigrationExchangeRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/MigrationExchangeResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ModalHandler.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ModalView.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/Option.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/OptionDataResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/OptionGroup.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/Paging.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/PinAddedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/PinRemovedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/PinsAddRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/PinsAddResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/PinsListRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/PinsListResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/PinsRemoveRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/PinsRemoveResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/Purpose.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/Reaction.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ReactionAddedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ReactionRemovedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ReactionsAddRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ReactionsAddResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ReactionsGetRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ReactionsGetResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ReactionsListRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ReactionsListResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ReactionsRemoveRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ReactionsRemoveResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/Reminder.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/RemindersAddRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/RemindersAddResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/RemindersCompleteRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/RemindersCompleteResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/RemindersDeleteRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/RemindersDeleteResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/RemindersInfoRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/RemindersInfoResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/RemindersListRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/RemindersListResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/RequestContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/RequestedApp.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ResponseMetadata.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/RunnableHandler.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/SearchAllRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/SearchAllResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/SearchFilesRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/SearchFilesResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/SearchMessagesRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/SearchMessagesResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/SearchResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/SharedChannelInviteAcceptedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/SharedChannelInviteApprovedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/SharedChannelInviteDeclinedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/SharedChannelInviteReceivedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ShortcutDispatcher.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ShortcutParameters.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/SlashCommandDispatcher.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/SlashCommandParameters.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/StarAddedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/StarRemovedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/StarsAddRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/StarsAddResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/StarsListRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/StarsListResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/StarsRemoveRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/StarsRemoveResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/SubteamCreatedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/SubteamMembersChangedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/SubteamSelfAddedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/SubteamSelfRemovedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/SubteamUpdatedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/Team.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/TeamAccessGrantedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/TeamAccessLogsRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/TeamAccessLogsResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/TeamAccessRevokedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/TeamBillableInfoRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/TeamBillableInfoResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/TeamDomainChangeEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/TeamIcon.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/TeamInfoRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/TeamInfoResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/TeamIntegrationLogsRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/TeamIntegrationLogsResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/TeamJoinEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/TeamProfileGetRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/TeamProfileGetResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/TeamRenameEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/TestHarness.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/TokenInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/TokenType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/TokensRevokedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/Topic.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UisfUserAuthedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/User.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UserChangeEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UserClient.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UserClientMock.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UserMapping.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UserMappingResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UserMappingService.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UserMappingUrlServiceProvider.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UserProvisioningErrorCode.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UserProvisioningProvider.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UserProvisioningResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UserResourceDeniedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UserResourceGrantedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UserResourceRemovedEvent.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UserType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/Usergroup.Prefs.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/Usergroup.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsergroupsCreateRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsergroupsCreateResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsergroupsDisableRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsergroupsDisableResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsergroupsEnableRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsergroupsEnableResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsergroupsListRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsergroupsListResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsergroupsUpdateRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsergroupsUpdateResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsergroupsUsersListRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsergroupsUsersListResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsergroupsUsersUpdateRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsergroupsUsersUpdateResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsersConversationsRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsersConversationsResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsersDeletePhotoRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsersDeletePhotoResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsersGetPresenceRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsersGetPresenceResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsersIdentityRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsersIdentityResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsersInfoRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsersInfoResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsersListRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsersListResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsersLookupByEmailRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsersLookupByEmailResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsersProfileGetRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsersProfileGetResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsersProfileSetRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsersProfileSetResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsersSetActiveRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsersSetActiveResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsersSetPresenceRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/UsersSetPresenceResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/View.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ViewContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ViewReference.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ViewsOpenRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ViewsOpenResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ViewsPublishRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ViewsPublishResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ViewsPushRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ViewsPushResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ViewsUpdateRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/ViewsUpdateResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/WarningResponseMetadata.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/WorkflowStepInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/WorkflowStepOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/WorkflowsStepCompletedRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/WorkflowsStepCompletedResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/WorkflowsStepFailedRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/WorkflowsStepFailedResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/WorkflowsUpdateStepRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Slack/WorkflowsUpdateStepResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Support/EinsteinBots.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Support/EmailTemplateSelector.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Support/EmailToCaseHandler.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Support/MilestoneTriggerTimeCalculator.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Support/WorkCapacityCalculation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Support/WorkCapacityDuration.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Support/WorkCapacityInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/AccessLevel.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/AccessType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Address.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Answers.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/ApexPages.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/AppExchangeTrialTemplate.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/AppExchangeUserPerms.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Approval.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Assert.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/AssertException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/AsyncException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/AsyncInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/AsyncOptions.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Aura.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/BcpProvisionService.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/BigObjectException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/BusinessHours.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Busop.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Callable.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/CallbackStatus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/CalloutException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/CanvasException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Cases.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Collator.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Communities.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Comparable.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Comparator.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Continuation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Cookie.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Crypto.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/CustomizationType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/DataWeaveScriptException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Date.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/DistributedLedgerService.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/DmlException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Domain.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/DomainCreator.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/DomainParser.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/DomainType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/DuplicateMessageException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/EmailException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/EmailMessages.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/EmailTemplateRenderException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/EncodingUtil.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/EventBus.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/EventObjectException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/ExternalObjectException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/ExternalServiceTest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/FeatureManagement.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/FinalException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Finalizer.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/FinalizerContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/FinalizerContextImpl.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/FlexQueue.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/FlowException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/FormulaEvaluationException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/FormulaRecalcFieldError.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/FormulaRecalcResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/FormulaValidationException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/HandledException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Http.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/HttpCalloutMock.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/HttpRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/HttpResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Ideas.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/IllegalArgumentException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/InvalidHeaderException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/InvalidParameterValueException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/InvalidReadOnlyUserDmlException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Iterable.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Iterator.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/JSON.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/JSONException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/JSONGenerator.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/JSONParser.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/JSONToken.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/LicenseException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/LimitException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/ListException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Location.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/LoggingLevel.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Matcher.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Math.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/MathException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Messaging.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/MultiStaticResourceCalloutMock.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Network.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/NoAccessException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/NoDataFoundException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/NoSuchElementException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/NullPointerException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/OrgInstrumentationContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/OrgInstrumentationOperation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/OrgInstrumentationService.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/OrgLimit.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/OrgLimits.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/OrgMetricPublishTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/OrgMetricServiceEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/OrgMetricTypeEnum.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/PackageOMCopyForRzoneEnvironment.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Packaging.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/PageReference.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/ParentJobResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Pattern.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/PlatformCacheException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/PolyglotException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/ProcedureException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/PushUpgradeCustomizationRepository.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/QueryException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Queueable.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/QueueableContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/QueueableContextImpl.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/QueueableDuplicateSignature.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/QuickAction.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/RemoteObjectController.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Request.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/RequestImpl.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/RequiredFeatureMissingException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/ResetPasswordResult.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/RestContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/RestRequest.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/RestResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/RoundingMode.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/SObjectAccessDecision.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/SObjectException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/SandboxContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/SandboxPostCopy.cls +0 -0
- /package/.sfdx/tools/{248/StandardApexLibrary/System/Savepoint.cls → 250/StandardApexLibrary/System/SavePoint.cls} +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Schedulable.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/SchedulableContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/SchedulableContextImpl.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Schema.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Search.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/SearchException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Security.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/SecurityException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/SelectOption.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/SerializationException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/SetupScope.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Site.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/StaticResourceCalloutMock.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/StringException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/StubProvider.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/SupportPredictiveService.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Time.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/TimeZone.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/TouchHandledException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/TrailblazerIdentity.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/TriggerContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/TriggerOperation.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Type.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/TypeException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/UUID.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/UnexpectedException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/UnsupportedOperationException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Url.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/UserInfo.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/UserManagement.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/Version.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/VisualforceException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/WaveTemplateException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/WebServiceCallout.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/WebServiceCalloutFuture.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/WebServiceMock.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/WebStoreContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/XmlException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/XmlStreamReader.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/XmlStreamWriter.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/XmlTag.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/System/YubiAuthForAloha.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/TerritoryMgmt/OpportunityTerritory2AssignmentFilter.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/TxnSecurity/Event.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/TxnSecurity/EventCondition.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/TxnSecurity/PolicyCondition.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/UserProvisioning/CollectingBatchable.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/UserProvisioning/CommittingBatchable.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/UserProvisioning/ConnectorTestUtil.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/UserProvisioning/DeletingBatchable.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/UserProvisioning/DummyConnectorApexHandler.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/UserProvisioning/FlowProvisionBase.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/UserProvisioning/LinkingBatchable.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/UserProvisioning/PluginBatchable.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/UserProvisioning/ProvisioningBatchable.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/UserProvisioning/ProvisioningProcessHandlerInput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/UserProvisioning/ProvisioningProcessHandlerOutput.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/UserProvisioning/RequestingBatchable.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/UserProvisioning/UPASCleaningBatchable.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/UserProvisioning/UserProvisioningLog.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/UserProvisioning/UserProvisioningPlugin.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/UserProvisioning/UserProvisioningProcessHandler.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/VisualEditor/DataRow.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/VisualEditor/DesignTimePageContext.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/VisualEditor/DynamicPickList.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/VisualEditor/DynamicPickListRows.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Wave/Dags.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Wave/DagsSearchOptions.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Wave/InvalidParameterException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Wave/Lenses.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Wave/LensesSearchOptions.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Wave/NodeType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Wave/ProjectionNode.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Wave/ProjectionType.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Wave/QueryBuilderValidationUtil.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Wave/Templates.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Wave/TemplatesSearchOptions.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Wave/TrendedDatasetProcessor.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/Wave/WaveQueryException.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/sfdc_surveys/ChildQuestion.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/sfdc_surveys/ChildQuestionResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/sfdc_surveys/MatrixQuestion.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/sfdc_surveys/MatrixQuestionResponse.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/sfdc_surveys/QuestionChoice.cls +0 -0
- /package/.sfdx/tools/{248 → 250}/StandardApexLibrary/sfdc_surveys/SurveyInvitationLinkShortener.cls +0 -0
|
@@ -1,1306 +0,0 @@
|
|
|
1
|
-
global enum SoapType {
|
|
2
|
-
ABSTRACT_COMPONENT_INSTANCE,
|
|
3
|
-
ABSTRACT_ITEM_INSTANCE,
|
|
4
|
-
ABSTRACT_ITEM_INSTANCE_PROPERTY,
|
|
5
|
-
ABSTRACT_METADATA_VALUE_WITH_EXTENSIONS,
|
|
6
|
-
ABSTRACT_PLACEHOLDER_METADATA,
|
|
7
|
-
ACCESS_CONTROL_POLICY,
|
|
8
|
-
ACCESS_MAPPING,
|
|
9
|
-
ACCOUNT_CRITERIA_BASED_SHARING_RULE,
|
|
10
|
-
ACCOUNT_FORECAST_FORMULA,
|
|
11
|
-
ACCOUNT_FORECAST_SETTINGS,
|
|
12
|
-
ACCOUNT_INSIGHTS_SETTINGS,
|
|
13
|
-
ACCOUNT_INTELLIGENCE_SETTINGS,
|
|
14
|
-
ACCOUNT_OWNER_SHARING_RULE,
|
|
15
|
-
ACCOUNT_RELATIONSHIP_SHARE_RULE,
|
|
16
|
-
ACCOUNT_SETTINGS,
|
|
17
|
-
ACCOUNT_SHARING_RULES,
|
|
18
|
-
ACCOUNT_SHARING_RULE_SETTINGS,
|
|
19
|
-
ACCOUNT_TERRITORY_SHARING_RULE,
|
|
20
|
-
ACCOUNT_TERRITORY_SHARING_RULES,
|
|
21
|
-
ACCT_MGR_TARGET_SETTINGS,
|
|
22
|
-
ACTIONS_SETTINGS,
|
|
23
|
-
ACTION_LINK_GROUP_TEMPLATE,
|
|
24
|
-
ACTION_LINK_TEMPLATE,
|
|
25
|
-
ACTION_OVERRIDE,
|
|
26
|
-
ACTION_PLAN_TEMPLATE,
|
|
27
|
-
ACTION_PLAN_TEMPLATE_ITEM,
|
|
28
|
-
ACTION_PLAN_TEMPLATE_ITEM_VALUE,
|
|
29
|
-
ACTIVITIES_SETTINGS,
|
|
30
|
-
ADDRESS,
|
|
31
|
-
ADDRESS_SETTINGS,
|
|
32
|
-
ADD_ON_DEFINITION,
|
|
33
|
-
ADJUSTMENTS_SETTINGS,
|
|
34
|
-
AGENT_CONFIG_ASSIGNMENTS,
|
|
35
|
-
AGENT_CONFIG_BUTTONS,
|
|
36
|
-
AGENT_CONFIG_PROFILE_ASSIGNMENTS,
|
|
37
|
-
AGENT_CONFIG_SKILLS,
|
|
38
|
-
AGENT_CONFIG_USER_ASSIGNMENTS,
|
|
39
|
-
ANALYSIS_CONFIGURATION,
|
|
40
|
-
ANALYTICS_CLOUD_COMPONENT_LAYOUT_ITEM,
|
|
41
|
-
ANALYTIC_SNAPSHOT,
|
|
42
|
-
ANALYTIC_SNAPSHOT_MAPPING,
|
|
43
|
-
ANDROID_PUSH_APPLICATION_SETUP,
|
|
44
|
-
ANIMATION_RULE,
|
|
45
|
-
ANYTYPE,
|
|
46
|
-
APEXCODECOVERAGE_COVERAGE,
|
|
47
|
-
APEX_CLASS,
|
|
48
|
-
APEX_COMPONENT,
|
|
49
|
-
APEX_EMAIL_NOTIFICATION,
|
|
50
|
-
APEX_EMAIL_NOTIFICATIONS,
|
|
51
|
-
APEX_PAGE,
|
|
52
|
-
APEX_SETTINGS,
|
|
53
|
-
APEX_TEST_SUITE,
|
|
54
|
-
APEX_TRIGGER,
|
|
55
|
-
APPLE_DOMAIN_VERIFICATION,
|
|
56
|
-
APPLE_PUSH_APPLICATION_SETUP,
|
|
57
|
-
APPLICATION,
|
|
58
|
-
APPLICATIONS,
|
|
59
|
-
APPLICATION_RECORD_TYPE_CONFIG,
|
|
60
|
-
APPOINTMENT_SCHEDULING_POLICY,
|
|
61
|
-
APPROVAL_ACTION,
|
|
62
|
-
APPROVAL_ENTRY_CRITERIA,
|
|
63
|
-
APPROVAL_PAGE_FIELD,
|
|
64
|
-
APPROVAL_PROCESS,
|
|
65
|
-
APPROVAL_STEP,
|
|
66
|
-
APPROVAL_STEP_APPROVER,
|
|
67
|
-
APPROVAL_STEP_REJECT_BEHAVIOR,
|
|
68
|
-
APPROVAL_SUBMITTER,
|
|
69
|
-
APPROVER,
|
|
70
|
-
APP_ACTION_OVERRIDE,
|
|
71
|
-
APP_ANALYTICS_SETTINGS,
|
|
72
|
-
APP_BRAND,
|
|
73
|
-
APP_CAPABILITY_CONFIG,
|
|
74
|
-
APP_COMPONENT_LIST,
|
|
75
|
-
APP_EXPERIENCE_SETTINGS,
|
|
76
|
-
APP_MENU,
|
|
77
|
-
APP_MENU_ITEM,
|
|
78
|
-
APP_NOTIFICATION_TYPE,
|
|
79
|
-
APP_PREFERENCES,
|
|
80
|
-
APP_PROFILE_ACTION_OVERRIDE,
|
|
81
|
-
APP_SETTINGS,
|
|
82
|
-
APP_WORKSPACE_CONFIG,
|
|
83
|
-
ARRAY,
|
|
84
|
-
ARTICLE_TYPE_CHANNEL_DISPLAY,
|
|
85
|
-
ARTICLE_TYPE_TEMPLATE,
|
|
86
|
-
ASSIGNMENT_RULE,
|
|
87
|
-
ASSIGNMENT_RULES,
|
|
88
|
-
ASSISTANT_CONTEXT_ITEM,
|
|
89
|
-
ASSISTANT_DEFINITION,
|
|
90
|
-
ASSISTANT_DEFINITION_PROFILE,
|
|
91
|
-
ASSISTANT_RECOMMENDATION_TYPE,
|
|
92
|
-
ASSISTANT_SKILL,
|
|
93
|
-
ASSISTANT_SKILL_INTENT,
|
|
94
|
-
ASSISTANT_SKILL_QUICK_ACTION,
|
|
95
|
-
ASSISTANT_SKILL_QUICK_ACTION_PARAM,
|
|
96
|
-
ASSISTANT_SKILL_SOBJECT_ACTION,
|
|
97
|
-
ASSISTANT_SKILL_SOBJECT_PARAM,
|
|
98
|
-
ASSISTANT_VERSION,
|
|
99
|
-
ASSISTANT_VERSION_ACTION,
|
|
100
|
-
ATTACHMENT,
|
|
101
|
-
AUDIENCE,
|
|
102
|
-
AUDIENCE_CONTACT_POINT,
|
|
103
|
-
AUDIENCE_CRITERIA,
|
|
104
|
-
AUDIENCE_CRITERIA_VALUE,
|
|
105
|
-
AUDIENCE_CRITERION,
|
|
106
|
-
AURA_COMPONENT,
|
|
107
|
-
AURA_DEFINITION,
|
|
108
|
-
AURA_DEFINITIONS,
|
|
109
|
-
AURA_DEFINITION_BUNDLE,
|
|
110
|
-
AUTH_PROVIDER,
|
|
111
|
-
AUTOMATED_CONTACTS_SETTINGS,
|
|
112
|
-
AUTO_RESPONSE_RULE,
|
|
113
|
-
AUTO_RESPONSE_RULES,
|
|
114
|
-
A_I_APPLICATION,
|
|
115
|
-
A_I_APPLICATION_CONFIG,
|
|
116
|
-
A_I_ASSISTANT_TEMPLATE,
|
|
117
|
-
A_I_DATA_DEFINITION,
|
|
118
|
-
A_I_FACTOR_COMPONENT,
|
|
119
|
-
A_I_FILTER,
|
|
120
|
-
A_I_FILTER_GROUP,
|
|
121
|
-
A_I_FILTER_VALUE,
|
|
122
|
-
A_I_LIVE_METRIC_DEFINITION,
|
|
123
|
-
A_I_MANAGED_FIELD,
|
|
124
|
-
A_I_MODEL,
|
|
125
|
-
A_I_MODEL_DEFINITION,
|
|
126
|
-
A_I_MODEL_FACTOR,
|
|
127
|
-
A_I_MODEL_GRAPH,
|
|
128
|
-
A_I_MODEL_METRIC,
|
|
129
|
-
A_I_PREDICTION_DEFINITION,
|
|
130
|
-
A_I_PREDICTION_EXPRESSION,
|
|
131
|
-
A_I_PREDICTION_FIELD,
|
|
132
|
-
A_I_PREDICTION_TARGET,
|
|
133
|
-
A_I_REPLY_RECOMMENDATIONS_SETTINGS,
|
|
134
|
-
BASE64,
|
|
135
|
-
BASE64BINARY,
|
|
136
|
-
BASE_CONVERSATION_VARIABLE,
|
|
137
|
-
BASE_ENTITY_RULE,
|
|
138
|
-
BASE_ENTITY_RULES,
|
|
139
|
-
BASE_FIELD_ASSIGNMENT,
|
|
140
|
-
BASE_GLOBAL_VALUE_SET,
|
|
141
|
-
BASE_LIVE_AGENT_METADATA,
|
|
142
|
-
BASE_NETWORK_PARENTED_METADATA,
|
|
143
|
-
BASE_PERMISSION_METADATA,
|
|
144
|
-
BASE_PUSH_SETTINGS_METADATA,
|
|
145
|
-
BASE_SHARING_RULE,
|
|
146
|
-
BASE_TRANSLATION_METADATA,
|
|
147
|
-
BASE_VALUE_SET,
|
|
148
|
-
BASE_VALUE_TRANSLATION,
|
|
149
|
-
BASE_VISUALFORCE_METADATA,
|
|
150
|
-
BATCH_CALC_JOB_ABSTRACT_METADATA_VALUE,
|
|
151
|
-
BATCH_CALC_JOB_AGGREGATE,
|
|
152
|
-
BATCH_CALC_JOB_AGGREGATE_FIELD,
|
|
153
|
-
BATCH_CALC_JOB_AGGREGATE_KEY,
|
|
154
|
-
BATCH_CALC_JOB_DATASOURCE,
|
|
155
|
-
BATCH_CALC_JOB_DATASOURCE_FIELD,
|
|
156
|
-
BATCH_CALC_JOB_DEFINITION,
|
|
157
|
-
BATCH_CALC_JOB_FILTER,
|
|
158
|
-
BATCH_CALC_JOB_FILTER_CRITERIA,
|
|
159
|
-
BATCH_CALC_JOB_JOIN_KEY,
|
|
160
|
-
BATCH_CALC_JOB_JOIN_RESULT_FIELD,
|
|
161
|
-
BATCH_CALC_JOB_PARAMETER,
|
|
162
|
-
BATCH_CALC_JOB_PROCESS_TYPE,
|
|
163
|
-
BATCH_CALC_JOB_SOURCE_JOIN,
|
|
164
|
-
BATCH_CALC_JOB_TRANSFORM,
|
|
165
|
-
BATCH_CALC_JOB_TRANSFORM_ADDED_FIELD,
|
|
166
|
-
BATCH_CALC_JOB_TRANSFORM_DROPPED_FIELD,
|
|
167
|
-
BATCH_CALC_JOB_UNION,
|
|
168
|
-
BATCH_CALC_JOB_UNION_SOURCE,
|
|
169
|
-
BATCH_CALC_JOB_VERSION,
|
|
170
|
-
BATCH_CALC_JOB_WRITEBACK_MAPPING,
|
|
171
|
-
BATCH_CALC_JOB_WRITEBACK_OBJECT,
|
|
172
|
-
BATCH_DATA_SOURCE,
|
|
173
|
-
BATCH_DATA_SRC_FILTER_CRITERIA,
|
|
174
|
-
BATCH_PROCESS_JOB_DEFINITION,
|
|
175
|
-
BENEFIT_ACTION,
|
|
176
|
-
BLACKLISTED_CONSUMER,
|
|
177
|
-
BLOCKCHAIN_SETTINGS,
|
|
178
|
-
BOOLEAN,
|
|
179
|
-
BOT,
|
|
180
|
-
BOT_DIALOG,
|
|
181
|
-
BOT_DIALOG_GROUP,
|
|
182
|
-
BOT_INVOCATION,
|
|
183
|
-
BOT_INVOCATION_MAPPING,
|
|
184
|
-
BOT_MESSAGE,
|
|
185
|
-
BOT_NAVIGATION,
|
|
186
|
-
BOT_NAVIGATION_LINK,
|
|
187
|
-
BOT_QUICK_REPLY_OPTION,
|
|
188
|
-
BOT_SETTINGS,
|
|
189
|
-
BOT_STEP,
|
|
190
|
-
BOT_STEP_CONDITION,
|
|
191
|
-
BOT_VARIABLE_OPERAND,
|
|
192
|
-
BOT_VARIABLE_OPERATION,
|
|
193
|
-
BOT_VERSION,
|
|
194
|
-
BRANCH_MANAGEMENT_SETTINGS,
|
|
195
|
-
BRANDING,
|
|
196
|
-
BRANDING_SET,
|
|
197
|
-
BRANDING_SET_PROPERTY,
|
|
198
|
-
BRANDING_VALUE,
|
|
199
|
-
BUSINESS_HOURS_ENTRY,
|
|
200
|
-
BUSINESS_HOURS_SETTINGS,
|
|
201
|
-
BUSINESS_PROCESS,
|
|
202
|
-
BUSINESS_PROCESS_DEFINITION,
|
|
203
|
-
BUSINESS_PROCESS_FEEDBACK,
|
|
204
|
-
BUSINESS_PROCESS_GROUP,
|
|
205
|
-
CALL_CENTER,
|
|
206
|
-
CALL_CENTER_ITEM,
|
|
207
|
-
CALL_CENTER_SECTION,
|
|
208
|
-
CALL_COACHING_MEDIA_PROVIDER,
|
|
209
|
-
CAMPAIGN_CRITERIA_BASED_SHARING_RULE,
|
|
210
|
-
CAMPAIGN_INFLUENCE_MODEL,
|
|
211
|
-
CAMPAIGN_OWNER_SHARING_RULE,
|
|
212
|
-
CAMPAIGN_SETTINGS,
|
|
213
|
-
CAMPAIGN_SHARING_RULES,
|
|
214
|
-
CANVAS_METADATA,
|
|
215
|
-
CAPABILITIES,
|
|
216
|
-
CARE_PROVIDER_SEARCH_CONFIG,
|
|
217
|
-
CARE_REQUEST_CONFIGURATION,
|
|
218
|
-
CARE_REQUEST_RECORDS,
|
|
219
|
-
CARE_SYSTEM_FIELD_MAPPING,
|
|
220
|
-
CASE_CLASSIFICATION_SETTINGS,
|
|
221
|
-
CASE_CRITERIA_BASED_SHARING_RULE,
|
|
222
|
-
CASE_OWNER_SHARING_RULE,
|
|
223
|
-
CASE_SETTINGS,
|
|
224
|
-
CASE_SHARING_RULES,
|
|
225
|
-
CASE_SUBJECT_PARTICLE,
|
|
226
|
-
CASE_TEAM,
|
|
227
|
-
CASE_TEAM_ROLE,
|
|
228
|
-
CERTIFICATE,
|
|
229
|
-
CHANGE_EVENT_HEADER,
|
|
230
|
-
CHANNEL_LAYOUT,
|
|
231
|
-
CHANNEL_LAYOUT_ITEM,
|
|
232
|
-
CHANNEL_OBJECT_LINKING_RULE,
|
|
233
|
-
CHART_SUMMARY,
|
|
234
|
-
CHATTER_ANSWERS_REPUTATION_LEVEL,
|
|
235
|
-
CHATTER_ANSWERS_SETTINGS,
|
|
236
|
-
CHATTER_EMAILS_M_D_SETTINGS,
|
|
237
|
-
CHATTER_EXTENSION,
|
|
238
|
-
CHATTER_MOBILE_SETTINGS,
|
|
239
|
-
CHATTER_SETTINGS,
|
|
240
|
-
CLEAN_DATA_SERVICE,
|
|
241
|
-
CLEAN_RULE,
|
|
242
|
-
CLOUD_SERVICE_PROVIDER,
|
|
243
|
-
CLOUD_SERVICE_PROVIDER_API,
|
|
244
|
-
CODE_BUNDLE,
|
|
245
|
-
COMMUNITIES_SETTINGS,
|
|
246
|
-
COMMUNITY,
|
|
247
|
-
COMMUNITY_A_I_MODEL_MAPPING,
|
|
248
|
-
COMMUNITY_CUSTOM_THEME_LAYOUT_TYPE,
|
|
249
|
-
COMMUNITY_ROLES,
|
|
250
|
-
COMMUNITY_TEMPLATE_BUNDLE_INFO,
|
|
251
|
-
COMMUNITY_TEMPLATE_DEFINITION,
|
|
252
|
-
COMMUNITY_TEMPLATE_PAGE_SETTING,
|
|
253
|
-
COMMUNITY_THEME_BUNDLE_INFO,
|
|
254
|
-
COMMUNITY_THEME_DEFINITION,
|
|
255
|
-
COMMUNITY_THEME_ROUTE_OVERRIDE,
|
|
256
|
-
COMMUNITY_THEME_SETTING,
|
|
257
|
-
COMPACT_LAYOUT,
|
|
258
|
-
COMPANY_SETTINGS,
|
|
259
|
-
COMPONENT_INSTANCE,
|
|
260
|
-
COMPONENT_INSTANCE_PROPERTY,
|
|
261
|
-
COMPONENT_INSTANCE_PROPERTY_LIST,
|
|
262
|
-
COMPONENT_INSTANCE_PROPERTY_LIST_ITEM,
|
|
263
|
-
CONNECTED_APP,
|
|
264
|
-
CONNECTED_APP_ATTRIBUTE,
|
|
265
|
-
CONNECTED_APP_CANVAS_CONFIG,
|
|
266
|
-
CONNECTED_APP_IP_RANGE,
|
|
267
|
-
CONNECTED_APP_MOBILE_DETAIL_CONFIG,
|
|
268
|
-
CONNECTED_APP_OAUTH_ASSET_TOKEN,
|
|
269
|
-
CONNECTED_APP_OAUTH_CONFIG,
|
|
270
|
-
CONNECTED_APP_OAUTH_ID_TOKEN,
|
|
271
|
-
CONNECTED_APP_OAUTH_POLICY,
|
|
272
|
-
CONNECTED_APP_SAML_CONFIG,
|
|
273
|
-
CONNECTED_APP_SESSION_POLICY,
|
|
274
|
-
CONNECTED_APP_SETTINGS,
|
|
275
|
-
CONNECTIVITY_ATTRIBUTES_METADATA,
|
|
276
|
-
CONNECTIVITY_DEV_CONFIG_METADATA,
|
|
277
|
-
CONSOLE_COMPONENT,
|
|
278
|
-
CONTACT_CRITERIA_BASED_SHARING_RULE,
|
|
279
|
-
CONTACT_OWNER_SHARING_RULE,
|
|
280
|
-
CONTACT_SHARING_RULES,
|
|
281
|
-
CONTAINER,
|
|
282
|
-
CONTENT_ASSET,
|
|
283
|
-
CONTENT_ASSET_LINK,
|
|
284
|
-
CONTENT_ASSET_RELATIONSHIPS,
|
|
285
|
-
CONTENT_ASSET_VERSION,
|
|
286
|
-
CONTENT_ASSET_VERSIONS,
|
|
287
|
-
CONTENT_SETTINGS,
|
|
288
|
-
CONTRACT_SETTINGS,
|
|
289
|
-
CONVERSATIONAL_INTELLIGENCE_SETTINGS,
|
|
290
|
-
CONVERSATION_CONTEXT_VARIABLE,
|
|
291
|
-
CONVERSATION_CONTEXT_VARIABLE_MAPPING,
|
|
292
|
-
CONVERSATION_DEFINITION_NLP_PROVIDER,
|
|
293
|
-
CONVERSATION_MESSAGE_DEFINITION,
|
|
294
|
-
CONVERSATION_MESSAGE_LAYOUT,
|
|
295
|
-
CONVERSATION_MESSAGE_LAYOUT_ITEM,
|
|
296
|
-
CONVERSATION_MESSAGE_LAYOUT_OBJECT_VALUE,
|
|
297
|
-
CONVERSATION_MESSAGE_LAYOUT_PRIMITIVE_VALUE,
|
|
298
|
-
CONVERSATION_MESSAGE_LAYOUT_VALUE,
|
|
299
|
-
CONVERSATION_RECORD_LOOKUP,
|
|
300
|
-
CONVERSATION_RECORD_LOOKUP_CONDITION,
|
|
301
|
-
CONVERSATION_RECORD_LOOKUP_FIELD,
|
|
302
|
-
CONVERSATION_SYSTEM_DIALOG,
|
|
303
|
-
CONVERSATION_SYSTEM_MESSAGE,
|
|
304
|
-
CONVERSATION_SYSTEM_MESSAGE_MAPPING,
|
|
305
|
-
CONVERSATION_VARIABLE,
|
|
306
|
-
CONVERSATION_VENDOR_FIELD_DEF,
|
|
307
|
-
CONVERSATION_VENDOR_INFO,
|
|
308
|
-
COUNTRIES_AND_STATES,
|
|
309
|
-
COUNTRY,
|
|
310
|
-
CRITERIA_BASED_SHARING_RULE,
|
|
311
|
-
CSP_TRUSTED_SITE,
|
|
312
|
-
CURRENCY_SETTINGS,
|
|
313
|
-
CUSTOMER_DATA_PLATFORM_SETTINGS,
|
|
314
|
-
CUSTOM_APPLICATION,
|
|
315
|
-
CUSTOM_APPLICATION_COMPONENT,
|
|
316
|
-
CUSTOM_APPLICATION_COMPONENTS,
|
|
317
|
-
CUSTOM_APPLICATION_TRANSLATION,
|
|
318
|
-
CUSTOM_CONSOLE_COMPONENTS,
|
|
319
|
-
CUSTOM_DATA_TYPE,
|
|
320
|
-
CUSTOM_DATA_TYPE_COMPONENT,
|
|
321
|
-
CUSTOM_DATA_TYPE_COMPONENT_TRANSLATION,
|
|
322
|
-
CUSTOM_DATA_TYPE_TRANSLATION,
|
|
323
|
-
CUSTOM_FEED_FILTER,
|
|
324
|
-
CUSTOM_FIELD,
|
|
325
|
-
CUSTOM_FIELD_TRANSLATION,
|
|
326
|
-
CUSTOM_HELP_MENU_ITEM,
|
|
327
|
-
CUSTOM_HELP_MENU_SECTION,
|
|
328
|
-
CUSTOM_HTTP_HEADER,
|
|
329
|
-
CUSTOM_INDEX,
|
|
330
|
-
CUSTOM_LABEL,
|
|
331
|
-
CUSTOM_LABELS,
|
|
332
|
-
CUSTOM_LABEL_TRANSLATION,
|
|
333
|
-
CUSTOM_METADATA,
|
|
334
|
-
CUSTOM_METADATA_VALUE,
|
|
335
|
-
CUSTOM_NOTIFICATION_TYPE,
|
|
336
|
-
CUSTOM_OBJECT,
|
|
337
|
-
CUSTOM_OBJECT_CRITERIA_BASED_SHARING_RULE,
|
|
338
|
-
CUSTOM_OBJECT_OWNER_SHARING_RULE,
|
|
339
|
-
CUSTOM_OBJECT_SHARING_RULES,
|
|
340
|
-
CUSTOM_OBJECT_TRANSLATION,
|
|
341
|
-
CUSTOM_PAGE_WEB_LINK,
|
|
342
|
-
CUSTOM_PAGE_WEB_LINK_TRANSLATION,
|
|
343
|
-
CUSTOM_PERMISSION,
|
|
344
|
-
CUSTOM_PERMISSION_DEPENDENCY_REQUIRED,
|
|
345
|
-
CUSTOM_SHORTCUT,
|
|
346
|
-
CUSTOM_SITE,
|
|
347
|
-
CUSTOM_TAB,
|
|
348
|
-
CUSTOM_TAB_TRANSLATION,
|
|
349
|
-
CUSTOM_VALUE,
|
|
350
|
-
C_M_S_CONNECT_ASSET,
|
|
351
|
-
C_M_S_CONNECT_LANGUAGE,
|
|
352
|
-
C_M_S_CONNECT_PERSONALIZATION,
|
|
353
|
-
C_M_S_CONNECT_RESOURCE_DEFINITION,
|
|
354
|
-
C_M_S_CONNECT_RESOURCE_TYPE,
|
|
355
|
-
C_M_S_CONNECT_SOURCE,
|
|
356
|
-
DASHBOARD,
|
|
357
|
-
DASHBOARD_COMPONENT,
|
|
358
|
-
DASHBOARD_COMPONENT_COLUMN,
|
|
359
|
-
DASHBOARD_COMPONENT_GROUPING_SORT,
|
|
360
|
-
DASHBOARD_COMPONENT_GROUPING_SORT_PROPERTIES,
|
|
361
|
-
DASHBOARD_COMPONENT_SECTION,
|
|
362
|
-
DASHBOARD_COMPONENT_SORT_INFO,
|
|
363
|
-
DASHBOARD_FILTER,
|
|
364
|
-
DASHBOARD_FILTER_COLUMN,
|
|
365
|
-
DASHBOARD_FILTER_OPTION,
|
|
366
|
-
DASHBOARD_FLEX_TABLE_COMPONENT_PROPERTIES,
|
|
367
|
-
DASHBOARD_FOLDER,
|
|
368
|
-
DASHBOARD_GRID_COMPONENT,
|
|
369
|
-
DASHBOARD_GRID_LAYOUT,
|
|
370
|
-
DASHBOARD_MOBILE_SETTINGS,
|
|
371
|
-
DASHBOARD_TABLE_COLUMN,
|
|
372
|
-
DATA_CATEGORY,
|
|
373
|
-
DATA_CATEGORY_GROUP,
|
|
374
|
-
DATA_CLASSIFICATION,
|
|
375
|
-
DATA_CONNECTOR_M_C,
|
|
376
|
-
DATA_CONNECTOR_S3,
|
|
377
|
-
DATA_CONNECTOR_SFTP,
|
|
378
|
-
DATA_CONNECTOR_UPLOAD,
|
|
379
|
-
DATA_CON_SUP_DATA_SET_BUNDLE,
|
|
380
|
-
DATA_MODEL_TAXONOMY,
|
|
381
|
-
DATA_OBJECT_CATEGORY,
|
|
382
|
-
DATA_PIPELINE,
|
|
383
|
-
DATA_PLATFORM,
|
|
384
|
-
DATA_PLATFORM_DATA_SET,
|
|
385
|
-
DATA_PLAT_DATA_SET_BUNDLE,
|
|
386
|
-
DATA_SOURCE,
|
|
387
|
-
DATA_SOURCE_OBJECT,
|
|
388
|
-
DATA_SOURCE_SETTINGS,
|
|
389
|
-
DATA_SOURCE_TENANT,
|
|
390
|
-
DATA_STREAM_DEFINITION,
|
|
391
|
-
DATE,
|
|
392
|
-
DATETIME,
|
|
393
|
-
DECIMAL,
|
|
394
|
-
DECISION_TABLE,
|
|
395
|
-
DECISION_TABLE_DATASET_LINK,
|
|
396
|
-
DECISION_TABLE_PARAMETER,
|
|
397
|
-
DECISION_TBL_DATASET_PARAMETER,
|
|
398
|
-
DEFAULT_SHORTCUT,
|
|
399
|
-
DELEGATE_GROUP,
|
|
400
|
-
DELETED_MEMBERS,
|
|
401
|
-
DEPLOYMENT_SETTINGS,
|
|
402
|
-
DEPLOY_DETAILS,
|
|
403
|
-
DEV_HUB_SETTINGS,
|
|
404
|
-
DISCOVERY_A_I_MODEL,
|
|
405
|
-
DISCOVERY_CUSTOM_PRESCRIBABLE_FIELD_DEFINITION,
|
|
406
|
-
DISCOVERY_DEPLOYED_MODEL,
|
|
407
|
-
DISCOVERY_FIELD_MAP,
|
|
408
|
-
DISCOVERY_FILTER,
|
|
409
|
-
DISCOVERY_FILTER_VALUE,
|
|
410
|
-
DISCOVERY_GOAL,
|
|
411
|
-
DISCOVERY_GOAL_OUTCOME,
|
|
412
|
-
DISCOVERY_MODEL_FIELD,
|
|
413
|
-
DISCOVERY_PRESCRIBABLE_FIELD,
|
|
414
|
-
DISCOVERY_SETTINGS,
|
|
415
|
-
DIVISION,
|
|
416
|
-
DOCUMENT,
|
|
417
|
-
DOCUMENT_CHECKLIST_SETTINGS,
|
|
418
|
-
DOCUMENT_FOLDER,
|
|
419
|
-
DOCUMENT_TYPE,
|
|
420
|
-
DOMAIN_PROVISION,
|
|
421
|
-
DOMAIN_WHITELIST,
|
|
422
|
-
DOUBLE,
|
|
423
|
-
DPE_TO_RECIPE_TRANSLATE_ABSTRACT_METADATA_VALUE,
|
|
424
|
-
DUPLICATE_RULE,
|
|
425
|
-
DUPLICATE_RULE_FILTER,
|
|
426
|
-
DUPLICATE_RULE_FILTER_ITEM,
|
|
427
|
-
DUPLICATE_RULE_MATCH_RULE,
|
|
428
|
-
DURABLE_ID_LIST,
|
|
429
|
-
DYNAMIC_TRIGGER,
|
|
430
|
-
ECLAIR_GEO_DATA,
|
|
431
|
-
ECLAIR_MAP,
|
|
432
|
-
EDITION_DEFINITION,
|
|
433
|
-
EINSTEIN_ASSISTANT_SETTINGS,
|
|
434
|
-
EMAIL_ADMINISTRATION_SETTINGS,
|
|
435
|
-
EMAIL_FOLDER,
|
|
436
|
-
EMAIL_INTEGRATION_SETTINGS,
|
|
437
|
-
EMAIL_SERVICES_ADDRESS,
|
|
438
|
-
EMAIL_SERVICES_FUNCTION,
|
|
439
|
-
EMAIL_TEMPLATE,
|
|
440
|
-
EMAIL_TEMPLATE_FOLDER,
|
|
441
|
-
EMAIL_TEMPLATE_SETTINGS,
|
|
442
|
-
EMAIL_TO_CASE_ROUTING_ADDRESS,
|
|
443
|
-
EMAIL_TO_CASE_SETTINGS,
|
|
444
|
-
EMBEDDED_SERVICE_APPOINTMENT_SETTINGS,
|
|
445
|
-
EMBEDDED_SERVICE_BRANDING,
|
|
446
|
-
EMBEDDED_SERVICE_CONFIG,
|
|
447
|
-
EMBEDDED_SERVICE_CUSTOMIZATION,
|
|
448
|
-
EMBEDDED_SERVICE_CUSTOM_COMPONENT,
|
|
449
|
-
EMBEDDED_SERVICE_CUSTOM_LABEL,
|
|
450
|
-
EMBEDDED_SERVICE_FIELD_SERVICE,
|
|
451
|
-
EMBEDDED_SERVICE_FLOW,
|
|
452
|
-
EMBEDDED_SERVICE_FLOW_CONFIG,
|
|
453
|
-
EMBEDDED_SERVICE_LAYOUT,
|
|
454
|
-
EMBEDDED_SERVICE_LAYOUT_RULE,
|
|
455
|
-
EMBEDDED_SERVICE_LIVE_AGENT,
|
|
456
|
-
EMBEDDED_SERVICE_MENU_ITEM,
|
|
457
|
-
EMBEDDED_SERVICE_MENU_SETTINGS,
|
|
458
|
-
EMBEDDED_SERVICE_MESSAGING_CHANNEL,
|
|
459
|
-
EMBEDDED_SERVICE_MOBILE_PLATFORM,
|
|
460
|
-
EMBEDDED_SERVICE_QUICK_ACTION,
|
|
461
|
-
EMBEDDED_SERVICE_RESOURCE,
|
|
462
|
-
EMPLOYEE_USER_SETTINGS,
|
|
463
|
-
ENCRYPTION_KEY_SETTINGS,
|
|
464
|
-
ENHANCED_NOTES_SETTINGS,
|
|
465
|
-
ENRICHED_FIELD,
|
|
466
|
-
ENTITLEMENT_PROCESS,
|
|
467
|
-
ENTITLEMENT_PROCESS_MILESTONE_ITEM,
|
|
468
|
-
ENTITLEMENT_PROCESS_MILESTONE_TIME_TRIGGER,
|
|
469
|
-
ENTITLEMENT_SETTINGS,
|
|
470
|
-
ENTITLEMENT_TEMPLATE,
|
|
471
|
-
ENTITY_ARCHIVING_SETUP,
|
|
472
|
-
ENTITY_IMPLEMENTS,
|
|
473
|
-
ESCALATION_ACTION,
|
|
474
|
-
ESCALATION_RULE,
|
|
475
|
-
ESCALATION_RULES,
|
|
476
|
-
ESSENTIALS_SETTINGS,
|
|
477
|
-
ESSENTIALS_TRIAL_ORG_SETTINGS,
|
|
478
|
-
EVENT_DELIVERY,
|
|
479
|
-
EVENT_PARAMETER_MAP,
|
|
480
|
-
EVENT_SETTINGS,
|
|
481
|
-
EVENT_SUBSCRIPTION,
|
|
482
|
-
EVENT_TYPE,
|
|
483
|
-
EVENT_TYPE_PARAMETER,
|
|
484
|
-
EXECUTION_OVERLAY_APEX_RESULT,
|
|
485
|
-
EXECUTION_OVERLAY_HEAPDUMP,
|
|
486
|
-
EXECUTION_OVERLAY_SOQL_RESULT,
|
|
487
|
-
EXPERIENCE_BUNDLE,
|
|
488
|
-
EXPERIENCE_BUNDLE_SETTINGS,
|
|
489
|
-
EXPERIENCE_RESOURCE,
|
|
490
|
-
EXPERIENCE_RESOURCES,
|
|
491
|
-
EXTERNAL_A_I_MODEL,
|
|
492
|
-
EXTERNAL_DATA_CONNECTOR,
|
|
493
|
-
EXTERNAL_DATA_SOURCE,
|
|
494
|
-
EXTERNAL_DATA_TRAN_FIELD,
|
|
495
|
-
EXTERNAL_DATA_TRAN_OBJECT,
|
|
496
|
-
EXTERNAL_SERVICES_SETTINGS,
|
|
497
|
-
EXTERNAL_SERVICE_OPERATION,
|
|
498
|
-
EXTERNAL_SERVICE_REGISTRATION,
|
|
499
|
-
E_A_C_SETTINGS,
|
|
500
|
-
FEATURE_PARAMETER_BOOLEAN,
|
|
501
|
-
FEATURE_PARAMETER_DATE,
|
|
502
|
-
FEATURE_PARAMETER_INTEGER,
|
|
503
|
-
FEED_FILTER_CRITERION,
|
|
504
|
-
FEED_ITEM_SETTINGS,
|
|
505
|
-
FEED_LAYOUT,
|
|
506
|
-
FEED_LAYOUT_COMPONENT,
|
|
507
|
-
FEED_LAYOUT_FILTER,
|
|
508
|
-
FIELDS_INFO,
|
|
509
|
-
FIELD_CLASSIFICATION_SETTING,
|
|
510
|
-
FIELD_CRITERIA,
|
|
511
|
-
FIELD_CRITERION,
|
|
512
|
-
FIELD_IMPLEMENTS,
|
|
513
|
-
FIELD_INSTANCE,
|
|
514
|
-
FIELD_INSTANCE_PROPERTY,
|
|
515
|
-
FIELD_MAPPING,
|
|
516
|
-
FIELD_MAPPING_FIELD,
|
|
517
|
-
FIELD_MAPPING_ROW,
|
|
518
|
-
FIELD_OVERRIDE,
|
|
519
|
-
FIELD_SERVICE_MOBILE_EXTENSION,
|
|
520
|
-
FIELD_SERVICE_SETTINGS,
|
|
521
|
-
FIELD_SET,
|
|
522
|
-
FIELD_SET_ITEM,
|
|
523
|
-
FIELD_SET_TRANSLATION,
|
|
524
|
-
FIELD_SOURCE_TARGET_MAP,
|
|
525
|
-
FIELD_SRC_TRGT_RELATIONSHIP,
|
|
526
|
-
FIELD_VALUE,
|
|
527
|
-
FILES_CONNECT_SETTINGS,
|
|
528
|
-
FILE_TYPE_DISPOSITION_ASSIGNMENT_BEAN,
|
|
529
|
-
FILE_UPLOAD_AND_DOWNLOAD_SECURITY_SETTINGS,
|
|
530
|
-
FILTER_ITEM,
|
|
531
|
-
FIND_SIMILAR_OPP_FILTER,
|
|
532
|
-
FISCAL_YEAR_SETTINGS,
|
|
533
|
-
FLEXI_PAGE,
|
|
534
|
-
FLEXI_PAGE_REGION,
|
|
535
|
-
FLEXI_PAGE_TEMPLATE_INSTANCE,
|
|
536
|
-
FLOAT,
|
|
537
|
-
FLOW,
|
|
538
|
-
FLOW_ABSTRACT_PARAMETER,
|
|
539
|
-
FLOW_ABSTRACT_VALUE_ELEMENT,
|
|
540
|
-
FLOW_ACTION_CALL,
|
|
541
|
-
FLOW_ACTION_CALL_INPUT_PARAMETER,
|
|
542
|
-
FLOW_ACTION_CALL_OUTPUT_PARAMETER,
|
|
543
|
-
FLOW_APEX_PLUGIN_CALL,
|
|
544
|
-
FLOW_APEX_PLUGIN_CALL_INPUT_PARAMETER,
|
|
545
|
-
FLOW_APEX_PLUGIN_CALL_OUTPUT_PARAMETER,
|
|
546
|
-
FLOW_ASSIGNMENT,
|
|
547
|
-
FLOW_ASSIGNMENT_ITEM,
|
|
548
|
-
FLOW_BASE_ELEMENT,
|
|
549
|
-
FLOW_BASE_METADATA_VALUE,
|
|
550
|
-
FLOW_CATEGORY,
|
|
551
|
-
FLOW_CATEGORY_ITEM,
|
|
552
|
-
FLOW_CATEGORY_ITEMS,
|
|
553
|
-
FLOW_CHOICE,
|
|
554
|
-
FLOW_CHOICE_TRANSLATION,
|
|
555
|
-
FLOW_CHOICE_USER_INPUT,
|
|
556
|
-
FLOW_CHOICE_USER_INPUT_TRANSLATION,
|
|
557
|
-
FLOW_COLLECTION_PROCESSOR,
|
|
558
|
-
FLOW_COLLECTION_SORT_OPTION,
|
|
559
|
-
FLOW_CONDITION,
|
|
560
|
-
FLOW_CONNECTOR,
|
|
561
|
-
FLOW_CONSTANT,
|
|
562
|
-
FLOW_DATA_TYPE_MAPPING,
|
|
563
|
-
FLOW_DECISION,
|
|
564
|
-
FLOW_DEFINITION,
|
|
565
|
-
FLOW_DEFINITION_TRANSLATION,
|
|
566
|
-
FLOW_DYNAMIC_CHOICE_SET,
|
|
567
|
-
FLOW_ELEMENT,
|
|
568
|
-
FLOW_ELEMENT_REFERENCE_OR_VALUE,
|
|
569
|
-
FLOW_ELEMENT_SUBTYPE_DEFINITION,
|
|
570
|
-
FLOW_FORMULA,
|
|
571
|
-
FLOW_INPUT_FIELD_ASSIGNMENT,
|
|
572
|
-
FLOW_INPUT_VALIDATION_RULE,
|
|
573
|
-
FLOW_INPUT_VALIDATION_RULE_TRANSLATION,
|
|
574
|
-
FLOW_LOOP,
|
|
575
|
-
FLOW_METADATA_VALUE,
|
|
576
|
-
FLOW_NODE,
|
|
577
|
-
FLOW_OUTPUT_FIELD_ASSIGNMENT,
|
|
578
|
-
FLOW_RECORD_CREATE,
|
|
579
|
-
FLOW_RECORD_DELETE,
|
|
580
|
-
FLOW_RECORD_FILTER,
|
|
581
|
-
FLOW_RECORD_LOOKUP,
|
|
582
|
-
FLOW_RECORD_UPDATE,
|
|
583
|
-
FLOW_RULE,
|
|
584
|
-
FLOW_SCHEDULE,
|
|
585
|
-
FLOW_SCHEDULED_PATH,
|
|
586
|
-
FLOW_SCREEN,
|
|
587
|
-
FLOW_SCREEN_FIELD,
|
|
588
|
-
FLOW_SCREEN_FIELD_INPUT_PARAMETER,
|
|
589
|
-
FLOW_SCREEN_FIELD_OUTPUT_PARAMETER,
|
|
590
|
-
FLOW_SCREEN_FIELD_TRANSLATION,
|
|
591
|
-
FLOW_SCREEN_RULE,
|
|
592
|
-
FLOW_SCREEN_RULE_ACTION,
|
|
593
|
-
FLOW_SCREEN_TRANSLATION,
|
|
594
|
-
FLOW_SETTINGS,
|
|
595
|
-
FLOW_STAGE,
|
|
596
|
-
FLOW_STAGE_TRANSLATION,
|
|
597
|
-
FLOW_START,
|
|
598
|
-
FLOW_STEP,
|
|
599
|
-
FLOW_STEPPED_STAGE,
|
|
600
|
-
FLOW_STEPPED_STAGE_ITEM,
|
|
601
|
-
FLOW_STEPPED_STAGE_ITEM_INPUT_PARAMETER,
|
|
602
|
-
FLOW_SUBFLOW,
|
|
603
|
-
FLOW_SUBFLOW_INPUT_ASSIGNMENT,
|
|
604
|
-
FLOW_SUBFLOW_OUTPUT_ASSIGNMENT,
|
|
605
|
-
FLOW_TEXT_TEMPLATE,
|
|
606
|
-
FLOW_TEXT_TEMPLATE_TRANSLATION,
|
|
607
|
-
FLOW_TRANSLATION,
|
|
608
|
-
FLOW_TRIGGER_TYPE_DEFINITION,
|
|
609
|
-
FLOW_VARIABLE,
|
|
610
|
-
FLOW_VISIBILITY_RULE,
|
|
611
|
-
FLOW_WAIT,
|
|
612
|
-
FLOW_WAIT_EVENT,
|
|
613
|
-
FLOW_WAIT_EVENT_INPUT_PARAMETER,
|
|
614
|
-
FLOW_WAIT_EVENT_OUTPUT_PARAMETER,
|
|
615
|
-
FOLDER,
|
|
616
|
-
FOLDER_AWARE_METADATA,
|
|
617
|
-
FOLDER_SHARE,
|
|
618
|
-
FORECASTING_CATEGORY_MAPPING,
|
|
619
|
-
FORECASTING_DISPLAYED_FAMILY_SETTINGS,
|
|
620
|
-
FORECASTING_OBJECT_LIST_LABEL_MAPPING,
|
|
621
|
-
FORECASTING_OBJECT_LIST_SELECTED_SETTINGS,
|
|
622
|
-
FORECASTING_OBJECT_LIST_SETTINGS,
|
|
623
|
-
FORECASTING_OBJECT_LIST_UNSELECTED_SETTINGS,
|
|
624
|
-
FORECASTING_SETTINGS,
|
|
625
|
-
FORECASTING_SOURCE_DEFINITION,
|
|
626
|
-
FORECASTING_TYPE_OBJECT_LIST_SETTINGS,
|
|
627
|
-
FORECASTING_TYPE_SETTINGS,
|
|
628
|
-
FORECASTING_TYPE_SOURCE,
|
|
629
|
-
FORECAST_RANGE_SETTINGS,
|
|
630
|
-
FORM,
|
|
631
|
-
FORMULA_SETTINGS,
|
|
632
|
-
FORM_COLUMN,
|
|
633
|
-
FORM_ITEM,
|
|
634
|
-
FORM_SECTION,
|
|
635
|
-
FTEST_COMPLEX_TYPE,
|
|
636
|
-
FTEST_FIRST_TOP_LEVEL,
|
|
637
|
-
FTEST_GENERATED_ENTITY_COMPLEX_VALUE_TYPE,
|
|
638
|
-
FTEST_GENERATED_ENTITY_COMPLEX_VALUE_TYPE2,
|
|
639
|
-
FTEST_SECOND_TOP_LEVEL,
|
|
640
|
-
FTEST_TOP_LEVEL_WITH_CRUD,
|
|
641
|
-
FUNCTION_REFERENCE,
|
|
642
|
-
F_TEST_FIELD_MAPPING_MD,
|
|
643
|
-
F_TEST_TOOLING_F_L_U,
|
|
644
|
-
GATEWAY_PROVIDER_PAYMENT_METHOD_TYPE,
|
|
645
|
-
GLOBAL_PICKLIST,
|
|
646
|
-
GLOBAL_PICKLIST_TRANSLATION,
|
|
647
|
-
GLOBAL_PICKLIST_VALUE,
|
|
648
|
-
GLOBAL_QUICK_ACTION_TRANSLATION,
|
|
649
|
-
GLOBAL_VALUE_SET,
|
|
650
|
-
GLOBAL_VALUE_SET_TRANSLATION,
|
|
651
|
-
GOOGLE_APPS_SETTINGS,
|
|
652
|
-
GROUP,
|
|
653
|
-
HIGH_VELOCITY_SALES_SETTINGS,
|
|
654
|
-
HISTORY_RETENTION_POLICY,
|
|
655
|
-
HOLIDAY,
|
|
656
|
-
HOME_PAGE_COMPONENT,
|
|
657
|
-
HOME_PAGE_LAYOUT,
|
|
658
|
-
ICON,
|
|
659
|
-
ID,
|
|
660
|
-
IDEAS_SETTINGS,
|
|
661
|
-
IDEA_REPUTATION_LEVEL,
|
|
662
|
-
IFRAME_WHITE_LIST_URL,
|
|
663
|
-
IFRAME_WHITE_LIST_URL_SETTINGS,
|
|
664
|
-
IF_EXPRESSION,
|
|
665
|
-
INBOUND_CERTIFICATE,
|
|
666
|
-
INBOUND_NETWORK_CONNECTION,
|
|
667
|
-
INBOUND_NETWORK_CONN_PROPERTY,
|
|
668
|
-
INCLUDED_FEATURE,
|
|
669
|
-
INCLUDED_PLATFORM_LICENSE_DEFINITION,
|
|
670
|
-
INCLUDED_USER_LICENSE_DEFINITION,
|
|
671
|
-
INDEX,
|
|
672
|
-
INDEX_FIELD,
|
|
673
|
-
INDUSTRIES_MANUFACTURING_SETTINGS,
|
|
674
|
-
INDUSTRIES_SETTINGS,
|
|
675
|
-
INSIGHTS_EXTERNAL_DATA_PART_METADATA,
|
|
676
|
-
INSTALLED_PACKAGE,
|
|
677
|
-
INTEGER,
|
|
678
|
-
INTEGRATION_HUB_SETTINGS,
|
|
679
|
-
INTEGRATION_HUB_SETTINGS_TYPE,
|
|
680
|
-
INTERNAL_DATA_CONNECTOR,
|
|
681
|
-
INTERNAL_ORGANIZATION,
|
|
682
|
-
INVENTORY_SETTINGS,
|
|
683
|
-
INVOCABLE_ACTION_SETTINGS,
|
|
684
|
-
IO_T_SETTINGS,
|
|
685
|
-
IP_RANGE,
|
|
686
|
-
ITEM_INSTANCE,
|
|
687
|
-
JSON,
|
|
688
|
-
JUNCTION_ID_LIST_NAMES,
|
|
689
|
-
KEYBOARD_SHORTCUTS,
|
|
690
|
-
KEYWORD,
|
|
691
|
-
KEYWORD_LIST,
|
|
692
|
-
KNOWLEDGE_ANSWER_SETTINGS,
|
|
693
|
-
KNOWLEDGE_CASE_FIELD,
|
|
694
|
-
KNOWLEDGE_CASE_FIELDS_SETTINGS,
|
|
695
|
-
KNOWLEDGE_CASE_SETTINGS,
|
|
696
|
-
KNOWLEDGE_COMMUNITIES_SETTINGS,
|
|
697
|
-
KNOWLEDGE_LANGUAGE,
|
|
698
|
-
KNOWLEDGE_LANGUAGE_SETTINGS,
|
|
699
|
-
KNOWLEDGE_SETTINGS,
|
|
700
|
-
KNOWLEDGE_SITES_SETTINGS,
|
|
701
|
-
KNOWLEDGE_SUGGESTED_ARTICLES_SETTINGS,
|
|
702
|
-
KNOWLEDGE_WORK_ORDER_FIELD,
|
|
703
|
-
KNOWLEDGE_WORK_ORDER_FIELDS_SETTINGS,
|
|
704
|
-
KNOWLEDGE_WORK_ORDER_LINE_ITEM_FIELD,
|
|
705
|
-
KNOWLEDGE_WORK_ORDER_LINE_ITEM_FIELDS_SETTINGS,
|
|
706
|
-
LANGUAGE_SETTINGS,
|
|
707
|
-
LAYOUT,
|
|
708
|
-
LAYOUT_COLUMN,
|
|
709
|
-
LAYOUT_ITEM,
|
|
710
|
-
LAYOUT_SECTION,
|
|
711
|
-
LAYOUT_SECTION_TRANSLATION,
|
|
712
|
-
LAYOUT_TRANSLATION,
|
|
713
|
-
LEAD_CONFIG_SETTINGS,
|
|
714
|
-
LEAD_CONVERT_SETTINGS,
|
|
715
|
-
LEAD_CRITERIA_BASED_SHARING_RULE,
|
|
716
|
-
LEAD_OWNER_SHARING_RULE,
|
|
717
|
-
LEAD_SHARING_RULES,
|
|
718
|
-
LETTERHEAD,
|
|
719
|
-
LETTERHEAD_HEADER_FOOTER,
|
|
720
|
-
LETTERHEAD_LINE,
|
|
721
|
-
LICENSED_CUSTOM_PERMISSIONS,
|
|
722
|
-
LICENSE_DEFINITION,
|
|
723
|
-
LIGHTNING_BOLT,
|
|
724
|
-
LIGHTNING_BOLT_ABSTRACT,
|
|
725
|
-
LIGHTNING_BOLT_FEATURE,
|
|
726
|
-
LIGHTNING_BOLT_FEATURES,
|
|
727
|
-
LIGHTNING_BOLT_IMAGE,
|
|
728
|
-
LIGHTNING_BOLT_IMAGES,
|
|
729
|
-
LIGHTNING_BOLT_ITEM,
|
|
730
|
-
LIGHTNING_BOLT_ITEMS,
|
|
731
|
-
LIGHTNING_COMPONENT,
|
|
732
|
-
LIGHTNING_COMPONENT_BUNDLE,
|
|
733
|
-
LIGHTNING_EXPERIENCE_SETTINGS,
|
|
734
|
-
LIGHTNING_EXPERIENCE_THEME,
|
|
735
|
-
LIGHTNING_ONBOARDING_CONFIG,
|
|
736
|
-
LIST_PLACEMENT,
|
|
737
|
-
LIST_VIEW,
|
|
738
|
-
LIST_VIEW_FILTER,
|
|
739
|
-
LIVE_AGENT_CONFIG,
|
|
740
|
-
LIVE_AGENT_SETTINGS,
|
|
741
|
-
LIVE_CHAT_AGENT_CONFIG,
|
|
742
|
-
LIVE_CHAT_BUTTON,
|
|
743
|
-
LIVE_CHAT_BUTTON_DEPLOYMENTS,
|
|
744
|
-
LIVE_CHAT_BUTTON_SKILLS,
|
|
745
|
-
LIVE_CHAT_DEPLOYMENT,
|
|
746
|
-
LIVE_CHAT_DEPLOYMENT_DOMAIN_WHITELIST,
|
|
747
|
-
LIVE_CHAT_SENSITIVE_DATA_RULE,
|
|
748
|
-
LIVE_MESSAGE_SETTINGS,
|
|
749
|
-
LOCALIZED_VALUE,
|
|
750
|
-
LOCAL_ML_DOMAIN,
|
|
751
|
-
LOCATION,
|
|
752
|
-
LOGIN_FLOW,
|
|
753
|
-
LONG,
|
|
754
|
-
LOOKUP_FILTER,
|
|
755
|
-
LOOKUP_FILTER_TRANSLATION,
|
|
756
|
-
LWC_RESOURCE,
|
|
757
|
-
LWC_RESOURCES,
|
|
758
|
-
MACRO_SETTINGS,
|
|
759
|
-
MANAGED_CONTENT_NODE_TYPE,
|
|
760
|
-
MANAGED_CONTENT_TYPE,
|
|
761
|
-
MANAGED_TOPIC,
|
|
762
|
-
MANAGED_TOPICS,
|
|
763
|
-
MAPS_AND_LOCATION_SETTINGS,
|
|
764
|
-
MAP_ENTRY,
|
|
765
|
-
MAP_EXPRESSION,
|
|
766
|
-
MARKETING_RESOURCE_TYPE,
|
|
767
|
-
MARKET_AUDIENCE_DEFINITION,
|
|
768
|
-
MARKET_AUDIENCE_FIELD,
|
|
769
|
-
MATCHING_RULE,
|
|
770
|
-
MATCHING_RULES,
|
|
771
|
-
MATCHING_RULE_ITEM,
|
|
772
|
-
METADATA,
|
|
773
|
-
METADATA_FOR_SETTINGS,
|
|
774
|
-
METADATA_VALUE,
|
|
775
|
-
METADATA_WITH_CONTENT,
|
|
776
|
-
METADATA_WITH_ONLY_HARDCODED_FILES,
|
|
777
|
-
MIGRATION_ALIAS,
|
|
778
|
-
MILESTONE_TYPE,
|
|
779
|
-
MINI_LAYOUT,
|
|
780
|
-
MKT_CALCULATED_INSIGHT_ATTRIBUTES,
|
|
781
|
-
MKT_CALCULATED_INSIGHT_FIELD_ATTRIBUTES,
|
|
782
|
-
MKT_CALCULATED_INSIGHT_OBJECT,
|
|
783
|
-
MKT_DATA_LAKE_ATTRIBUTES,
|
|
784
|
-
MKT_DATA_LAKE_FIELD_ATTRIBUTES,
|
|
785
|
-
MKT_DATA_LAKE_OBJECT,
|
|
786
|
-
MKT_DATA_MODEL_ATTRIBUTES,
|
|
787
|
-
MKT_DATA_MODEL_FIELD_ATTRIBUTES,
|
|
788
|
-
MKT_DATA_MODEL_OBJECT,
|
|
789
|
-
MKT_DATA_TRAN_FIELD,
|
|
790
|
-
MKT_DATA_TRAN_OBJECT,
|
|
791
|
-
ML_DOMAIN,
|
|
792
|
-
ML_INTENT,
|
|
793
|
-
ML_INTENT_UTTERANCE,
|
|
794
|
-
ML_RELATED_INTENT,
|
|
795
|
-
ML_SLOT,
|
|
796
|
-
ML_SLOT_CLASS,
|
|
797
|
-
ML_SLOT_CLASS_VALUE,
|
|
798
|
-
MOBILE_APPLICATION_DETAIL,
|
|
799
|
-
MOBILE_PUSH_NOTIFICATION_CREDENTIAL,
|
|
800
|
-
MOBILE_SECURITY_ASSIGNMENT,
|
|
801
|
-
MOBILE_SECURITY_POLICY,
|
|
802
|
-
MOBILE_SECURITY_POLICY_SET,
|
|
803
|
-
MOBILE_SETTINGS,
|
|
804
|
-
MODERATED_ENTITY_FIELD,
|
|
805
|
-
MODERATION_RULE,
|
|
806
|
-
MODULE,
|
|
807
|
-
MODULES,
|
|
808
|
-
MODULE_DEPENDENCIES,
|
|
809
|
-
MODULE_REF,
|
|
810
|
-
MODULE_REFS,
|
|
811
|
-
MUTING_PERMISSION_SET,
|
|
812
|
-
MY_DOMAIN_DISCOVERABLE_LOGIN,
|
|
813
|
-
MY_DOMAIN_SETTINGS,
|
|
814
|
-
M_L_DATA_DEFINITION,
|
|
815
|
-
M_L_FIELD,
|
|
816
|
-
M_L_FILTER,
|
|
817
|
-
M_L_FILTER_VALUE,
|
|
818
|
-
M_L_PREDICTION_DEFINITION,
|
|
819
|
-
M_L_RECOMMENDATION_DEFINITION,
|
|
820
|
-
NAMED_CREDENTIAL,
|
|
821
|
-
NAMED_FILTER,
|
|
822
|
-
NAMED_FILTER_TRANSLATION,
|
|
823
|
-
NAME_SETTINGS,
|
|
824
|
-
NAVIGATION_LINK_SET,
|
|
825
|
-
NAVIGATION_MENU,
|
|
826
|
-
NAVIGATION_MENU_ITEM,
|
|
827
|
-
NAVIGATION_MENU_ITEM_BRANDING,
|
|
828
|
-
NAVIGATION_SUB_MENU,
|
|
829
|
-
NETWORK,
|
|
830
|
-
NETWORK_ACCESS,
|
|
831
|
-
NETWORK_BRANDING,
|
|
832
|
-
NETWORK_MEMBER_GROUP,
|
|
833
|
-
NETWORK_PAGE_OVERRIDE,
|
|
834
|
-
NETWORK_TAB_SET,
|
|
835
|
-
NEXT_AUTOMATED_APPROVER,
|
|
836
|
-
NOTIFICATIONS_SETTINGS,
|
|
837
|
-
NOTIFICATION_CHANNELS,
|
|
838
|
-
NOTIFICATION_TYPE_CONFIG,
|
|
839
|
-
NOTIFICATION_TYPE_SETTINGS,
|
|
840
|
-
NO_ACCESS_FILTERABLE,
|
|
841
|
-
OAUTH_CUSTOM_SCOPE,
|
|
842
|
-
OAUTH_CUSTOM_SCOPE_APP,
|
|
843
|
-
OBJECT_CHILD_TRANSLATION,
|
|
844
|
-
OBJECT_HIERARCHY_RELATIONSHIP,
|
|
845
|
-
OBJECT_LINKING_SETTINGS,
|
|
846
|
-
OBJECT_MAPPING,
|
|
847
|
-
OBJECT_MAPPING_FIELD,
|
|
848
|
-
OBJECT_NAME_CASE_VALUE,
|
|
849
|
-
OBJECT_RELATIONSHIP,
|
|
850
|
-
OBJECT_SOURCE_TARGET_MAP,
|
|
851
|
-
OBJECT_USAGE,
|
|
852
|
-
OCR_SAMPLE_DOCUMENT,
|
|
853
|
-
OCR_SAMPLE_DOCUMENT_FIELD,
|
|
854
|
-
OCR_TARGET_OBJECT,
|
|
855
|
-
OCR_TARGET_OBJ_FIELD_MAPPING,
|
|
856
|
-
OCR_TEMPLATE,
|
|
857
|
-
OCR_TEMPLATE_SAMPLE_DOCUMENT,
|
|
858
|
-
OLD_SHARING_RULES,
|
|
859
|
-
OMNI_CHANNEL_SETTINGS,
|
|
860
|
-
OMNI_INTERACTION_CONFIG,
|
|
861
|
-
OPERATION_PARAMETERS,
|
|
862
|
-
OPPORTUNITY_CRITERIA_BASED_SHARING_RULE,
|
|
863
|
-
OPPORTUNITY_INSIGHTS_SETTINGS,
|
|
864
|
-
OPPORTUNITY_LIST_FIELDS_LABEL_MAPPING,
|
|
865
|
-
OPPORTUNITY_LIST_FIELDS_SELECTED_SETTINGS,
|
|
866
|
-
OPPORTUNITY_LIST_FIELDS_UNSELECTED_SETTINGS,
|
|
867
|
-
OPPORTUNITY_OWNER_SHARING_RULE,
|
|
868
|
-
OPPORTUNITY_SCORE_SETTINGS,
|
|
869
|
-
OPPORTUNITY_SETTINGS,
|
|
870
|
-
OPPORTUNITY_SHARING_RULES,
|
|
871
|
-
ORCHESTRATION,
|
|
872
|
-
ORCHESTRATION_CONTEXT,
|
|
873
|
-
ORCHESTRATION_CONTEXT_DATASET,
|
|
874
|
-
ORCHESTRATION_CONTEXT_EVENT,
|
|
875
|
-
ORDER_MANAGEMENT_SETTINGS,
|
|
876
|
-
ORDER_SETTINGS,
|
|
877
|
-
ORG_ENTITY_FEATURE_PAYLOAD,
|
|
878
|
-
ORG_FEATURE_PAYLOAD,
|
|
879
|
-
OUTBOUND_NETWORK_CONNECTION,
|
|
880
|
-
OUTBOUND_NETWORK_CONN_PROPERTY,
|
|
881
|
-
OVERRIDE_PRESET,
|
|
882
|
-
OWNER_SHARING_RULE,
|
|
883
|
-
PACKAGE,
|
|
884
|
-
PACKAGE2_VERSION_CODE_COVERAGE,
|
|
885
|
-
PACKAGE_BRANDING_SETTINGS,
|
|
886
|
-
PACKAGE_EXTENSION,
|
|
887
|
-
PACKAGE_ID_MAPPING,
|
|
888
|
-
PACKAGE_LOCALIZATION,
|
|
889
|
-
PACKAGE_TYPE_MEMBERS,
|
|
890
|
-
PACKAGE_UPLOAD_ERROR,
|
|
891
|
-
PACKAGE_UPLOAD_ERRORS,
|
|
892
|
-
PACKAGE_VERSION,
|
|
893
|
-
PACKAGING_GACK_EMAIL,
|
|
894
|
-
PAGES_TO_OPEN,
|
|
895
|
-
PARDOT_EINSTEIN_SETTINGS,
|
|
896
|
-
PARDOT_SETTINGS,
|
|
897
|
-
PARDOT_TENANT,
|
|
898
|
-
PARTICIPANT_ROLE,
|
|
899
|
-
PARTY_DATA_MODEL_SETTINGS,
|
|
900
|
-
PARTY_ID_MATCH_RULE_CRITERIA,
|
|
901
|
-
PARTY_MATCH_RULE,
|
|
902
|
-
PARTY_MATCH_RULE_CRITERIA,
|
|
903
|
-
PARTY_RECON_RULE,
|
|
904
|
-
PARTY_RECON_RULE_SEQ,
|
|
905
|
-
PASSWORD_POLICIES,
|
|
906
|
-
PATH_ASSISTANT,
|
|
907
|
-
PATH_ASSISTANT_SETTINGS,
|
|
908
|
-
PATH_ASSISTANT_STEP,
|
|
909
|
-
PAYMENT_GATEWAY_PROVIDER,
|
|
910
|
-
PERMISSION_SET,
|
|
911
|
-
PERMISSION_SET_APEX_CLASS_ACCESS,
|
|
912
|
-
PERMISSION_SET_APEX_PAGE_ACCESS,
|
|
913
|
-
PERMISSION_SET_APPLICATION_VISIBILITY,
|
|
914
|
-
PERMISSION_SET_CUSTOM_METADATA_TYPE_ACCESS,
|
|
915
|
-
PERMISSION_SET_CUSTOM_PERMISSIONS,
|
|
916
|
-
PERMISSION_SET_CUSTOM_SETTING_ACCESS,
|
|
917
|
-
PERMISSION_SET_EXTERNAL_DATA_SOURCE_ACCESS,
|
|
918
|
-
PERMISSION_SET_FIELD_PERMISSIONS,
|
|
919
|
-
PERMISSION_SET_FLOW_ACCESS,
|
|
920
|
-
PERMISSION_SET_GROUP,
|
|
921
|
-
PERMISSION_SET_LICENSE,
|
|
922
|
-
PERMISSION_SET_OBJECT_PERMISSIONS,
|
|
923
|
-
PERMISSION_SET_RECORD_TYPE_VISIBILITY,
|
|
924
|
-
PERMISSION_SET_TAB_SETTING,
|
|
925
|
-
PERMISSION_SET_USER_PERMISSION,
|
|
926
|
-
PERSONALIZATION_ACTIVITY,
|
|
927
|
-
PERSONALIZATION_TARGET_INFO,
|
|
928
|
-
PERSONALIZATION_TARGET_INFOS,
|
|
929
|
-
PERSONALIZATION_TARGET_SET,
|
|
930
|
-
PERSON_LIST_SETTINGS,
|
|
931
|
-
PICKLIST,
|
|
932
|
-
PICKLIST_SETTINGS,
|
|
933
|
-
PICKLIST_VALUE,
|
|
934
|
-
PICKLIST_VALUE_TRANSLATION,
|
|
935
|
-
PLATFORM_ACTION_LIST,
|
|
936
|
-
PLATFORM_ACTION_LIST_ITEM,
|
|
937
|
-
PLATFORM_CACHE_PARTITION,
|
|
938
|
-
PLATFORM_CACHE_PARTITION_TYPE,
|
|
939
|
-
PLATFORM_ENCRYPTION_SETTINGS,
|
|
940
|
-
PLATFORM_EVENT_CHANNEL,
|
|
941
|
-
PLATFORM_EVENT_CHANNEL_MEMBER,
|
|
942
|
-
PLATFORM_EVENT_CHANNEL_SELECTED_ENTITY,
|
|
943
|
-
PLATFORM_EVENT_ENRICHMENT_FIELD,
|
|
944
|
-
PLATFORM_EVENT_SUBSCRIBER_CONFIG,
|
|
945
|
-
PLATFORM_LICENSE_DEFINITION,
|
|
946
|
-
PORTAL,
|
|
947
|
-
PORTALS_SETTINGS,
|
|
948
|
-
PORTAL_DELEGABLE_PERMISSION_SET,
|
|
949
|
-
POST_TEMPLATE,
|
|
950
|
-
PREDICTION_BUILDER_SETTINGS,
|
|
951
|
-
PRESENCE_CONFIG_ASSIGNMENTS,
|
|
952
|
-
PRESENCE_CONFIG_PROFILE_ASSIGNMENTS,
|
|
953
|
-
PRESENCE_CONFIG_USER_ASSIGNMENTS,
|
|
954
|
-
PRESENCE_DECLINE_REASON,
|
|
955
|
-
PRESENCE_USER_CONFIG,
|
|
956
|
-
PRIMARY_TAB_COMPONENTS,
|
|
957
|
-
PRIVACY_SETTINGS,
|
|
958
|
-
PROCESS_APPROVER,
|
|
959
|
-
PROCESS_DEFINITION,
|
|
960
|
-
PROCESS_NODE,
|
|
961
|
-
PROCESS_PALETTE,
|
|
962
|
-
PROCESS_TRANSITION,
|
|
963
|
-
PROCESS_TYPE_DEFINITION,
|
|
964
|
-
PRODUCT_FAMILY_USAGE,
|
|
965
|
-
PRODUCT_SETTINGS,
|
|
966
|
-
PROFILE,
|
|
967
|
-
PROFILE_ACTION_OVERRIDE,
|
|
968
|
-
PROFILE_APEX_CLASS_ACCESS,
|
|
969
|
-
PROFILE_APEX_PAGE_ACCESS,
|
|
970
|
-
PROFILE_APPLICATION_VISIBILITY,
|
|
971
|
-
PROFILE_CATEGORY_GROUP_VISIBILITY,
|
|
972
|
-
PROFILE_CUSTOM_METADATA_TYPE_ACCESS,
|
|
973
|
-
PROFILE_CUSTOM_PERMISSIONS,
|
|
974
|
-
PROFILE_CUSTOM_SETTING_ACCESS,
|
|
975
|
-
PROFILE_EXTERNAL_DATA_SOURCE_ACCESS,
|
|
976
|
-
PROFILE_FIELD_LEVEL_SECURITY,
|
|
977
|
-
PROFILE_FLOW_ACCESS,
|
|
978
|
-
PROFILE_LAYOUT_ASSIGNMENT,
|
|
979
|
-
PROFILE_LOGIN_HOURS,
|
|
980
|
-
PROFILE_LOGIN_IP_RANGE,
|
|
981
|
-
PROFILE_MAPPING,
|
|
982
|
-
PROFILE_OBJECT_PERMISSIONS,
|
|
983
|
-
PROFILE_PASSWORD_POLICY,
|
|
984
|
-
PROFILE_RECORD_TYPE_VISIBILITY,
|
|
985
|
-
PROFILE_SEARCH_LAYOUTS,
|
|
986
|
-
PROFILE_SESSION_SETTING,
|
|
987
|
-
PROFILE_TAB_VISIBILITY,
|
|
988
|
-
PROFILE_USER_PERMISSION,
|
|
989
|
-
PROMPT,
|
|
990
|
-
PROMPT_TRANSLATION,
|
|
991
|
-
PROMPT_VERSION,
|
|
992
|
-
PROMPT_VERSION_TRANSLATION,
|
|
993
|
-
PUBLIC_GROUPS,
|
|
994
|
-
PUSH_BACK_DEFINITION,
|
|
995
|
-
PUSH_NOTIFICATION,
|
|
996
|
-
PUSH_NOTIFICATIONS,
|
|
997
|
-
QUEUE,
|
|
998
|
-
QUEUE_MEMBERS,
|
|
999
|
-
QUEUE_ROUTING_CONFIG,
|
|
1000
|
-
QUEUE_ROUTING_CONFIG_SKILL,
|
|
1001
|
-
QUEUE_SOBJECT,
|
|
1002
|
-
QUICK_ACTION,
|
|
1003
|
-
QUICK_ACTION_LAYOUT,
|
|
1004
|
-
QUICK_ACTION_LAYOUT_COLUMN,
|
|
1005
|
-
QUICK_ACTION_LAYOUT_ITEM,
|
|
1006
|
-
QUICK_ACTION_LIST,
|
|
1007
|
-
QUICK_ACTION_LIST_ITEM,
|
|
1008
|
-
QUICK_ACTION_SEND_EMAIL_OPTIONS,
|
|
1009
|
-
QUICK_ACTION_TRANSLATION,
|
|
1010
|
-
QUICK_TEXT_SETTINGS,
|
|
1011
|
-
QUOTAS_SETTINGS,
|
|
1012
|
-
QUOTE_SETTINGS,
|
|
1013
|
-
REAL_TIME_EVENT,
|
|
1014
|
-
REAL_TIME_EVENT_SETTINGS,
|
|
1015
|
-
RECOMMENDATION_AUDIENCE,
|
|
1016
|
-
RECOMMENDATION_AUDIENCE_DETAIL,
|
|
1017
|
-
RECOMMENDATION_BUILDER_SETTINGS,
|
|
1018
|
-
RECOMMENDATION_CONDITION_VALUE,
|
|
1019
|
-
RECOMMENDATION_DEFINITION,
|
|
1020
|
-
RECOMMENDATION_DEFINITION_DETAIL,
|
|
1021
|
-
RECOMMENDATION_LOAD_CONDITION,
|
|
1022
|
-
RECOMMENDATION_STRATEGY,
|
|
1023
|
-
RECORD_ACTION_DEFAULT_ITEM,
|
|
1024
|
-
RECORD_ACTION_DEPLOYMENT,
|
|
1025
|
-
RECORD_ACTION_DEPLOYMENT_CHANNEL,
|
|
1026
|
-
RECORD_ACTION_DEPLOYMENT_CONTEXT,
|
|
1027
|
-
RECORD_ACTION_RECOMMENDATION,
|
|
1028
|
-
RECORD_ACTION_SELECTABLE_ITEM,
|
|
1029
|
-
RECORD_ACTION_SETTING_TEMPLATE,
|
|
1030
|
-
RECORD_PAGE_SETTINGS,
|
|
1031
|
-
RECORD_TYPE,
|
|
1032
|
-
RECORD_TYPES_SUPPORTED,
|
|
1033
|
-
RECORD_TYPE_PICKLIST_VALUE,
|
|
1034
|
-
RECORD_TYPE_TRANSLATION,
|
|
1035
|
-
REDIRECT_WHITELIST_URL,
|
|
1036
|
-
REF_MODEL_INSTALLED,
|
|
1037
|
-
REGISTERED_EXTERNAL_SERVICE,
|
|
1038
|
-
RELATED_CONTENT,
|
|
1039
|
-
RELATED_CONTENT_ITEM,
|
|
1040
|
-
RELATED_LIST,
|
|
1041
|
-
RELATED_LISTS_INFO,
|
|
1042
|
-
RELATED_LIST_ITEM,
|
|
1043
|
-
RELATIONSHIP_REFERENCE_TO,
|
|
1044
|
-
REMOTE_SITE_SETTING,
|
|
1045
|
-
REPORT,
|
|
1046
|
-
REPORT_AGGREGATE,
|
|
1047
|
-
REPORT_AGGREGATE_REFERENCE,
|
|
1048
|
-
REPORT_BLOCK_INFO,
|
|
1049
|
-
REPORT_BUCKET_FIELD,
|
|
1050
|
-
REPORT_BUCKET_FIELD_SOURCE_VALUE,
|
|
1051
|
-
REPORT_BUCKET_FIELD_VALUE,
|
|
1052
|
-
REPORT_CHART,
|
|
1053
|
-
REPORT_CHART_COMPONENT_LAYOUT_ITEM,
|
|
1054
|
-
REPORT_COLOR_RANGE,
|
|
1055
|
-
REPORT_COLUMN,
|
|
1056
|
-
REPORT_CROSS_FILTER,
|
|
1057
|
-
REPORT_CUSTOM_DETAIL_FORMULA,
|
|
1058
|
-
REPORT_DATA_CATEGORY_FILTER,
|
|
1059
|
-
REPORT_FILTER,
|
|
1060
|
-
REPORT_FILTER_ITEM,
|
|
1061
|
-
REPORT_FOLDER,
|
|
1062
|
-
REPORT_FORMATTING_RULE,
|
|
1063
|
-
REPORT_FORMATTING_RULE_VALUE,
|
|
1064
|
-
REPORT_GROUPING,
|
|
1065
|
-
REPORT_HISTORICAL_SELECTOR,
|
|
1066
|
-
REPORT_LAYOUT_SECTION,
|
|
1067
|
-
REPORT_PARAM,
|
|
1068
|
-
REPORT_TIME_FRAME_FILTER,
|
|
1069
|
-
REPORT_TYPE,
|
|
1070
|
-
REPORT_TYPE_COLUMN,
|
|
1071
|
-
REPORT_TYPE_COLUMN_TRANSLATION,
|
|
1072
|
-
REPORT_TYPE_SECTION_TRANSLATION,
|
|
1073
|
-
REPORT_TYPE_TRANSLATION,
|
|
1074
|
-
REPUTATION_BRANDING,
|
|
1075
|
-
REPUTATION_LEVEL,
|
|
1076
|
-
REPUTATION_LEVELS,
|
|
1077
|
-
REPUTATION_LEVEL_DEFINITIONS,
|
|
1078
|
-
REPUTATION_POINTS_RULE,
|
|
1079
|
-
REPUTATION_POINTS_RULES,
|
|
1080
|
-
RESTRICTION_RULE,
|
|
1081
|
-
RETAIL_EXECUTION_SETTINGS,
|
|
1082
|
-
ROLE,
|
|
1083
|
-
ROLES,
|
|
1084
|
-
ROLE_AND_SUBORDINATES,
|
|
1085
|
-
ROLE_AND_SUBORDINATES_INTERNAL,
|
|
1086
|
-
ROLE_OR_TERRITORY,
|
|
1087
|
-
RULE_ENTRY,
|
|
1088
|
-
SALES_AGREEMENT_SETTINGS,
|
|
1089
|
-
SALES_WORK_QUEUE_SETTINGS,
|
|
1090
|
-
SAML_SSO_CONFIG,
|
|
1091
|
-
SCHEDULED_RECOMMENDATION,
|
|
1092
|
-
SCHEDULED_RECOMMENDATION_DETAIL,
|
|
1093
|
-
SCHEDULING_RULE,
|
|
1094
|
-
SCHEDULING_RULE_PARAMETER,
|
|
1095
|
-
SCHEMA_SETTINGS,
|
|
1096
|
-
SCONTROL,
|
|
1097
|
-
SCONTROL_TRANSLATION,
|
|
1098
|
-
SCORE_CATEGORY,
|
|
1099
|
-
SCORE_RANGE,
|
|
1100
|
-
SCORE_RANGE_CLASSIFICATION,
|
|
1101
|
-
SEARCH_LAYOUTS,
|
|
1102
|
-
SEARCH_LAYOUT_BUTTON,
|
|
1103
|
-
SEARCH_LAYOUT_BUTTONS_DISPLAYED,
|
|
1104
|
-
SEARCH_LAYOUT_FIELD,
|
|
1105
|
-
SEARCH_LAYOUT_FIELDS_DISPLAYED,
|
|
1106
|
-
SECURITY_SETTINGS,
|
|
1107
|
-
SERVICE_A_I_SETUP_DEFINITION,
|
|
1108
|
-
SERVICE_A_I_SETUP_FIELD,
|
|
1109
|
-
SERVICE_CHANNEL,
|
|
1110
|
-
SERVICE_CHANNEL_FIELD_PRIORITY,
|
|
1111
|
-
SERVICE_CHANNEL_STATUS,
|
|
1112
|
-
SERVICE_CLOUD_CONSOLE_CONFIG,
|
|
1113
|
-
SERVICE_CLOUD_VOICE_SETTINGS,
|
|
1114
|
-
SERVICE_PRESENCE_STATUS,
|
|
1115
|
-
SERVICE_SETUP_ASSISTANT_SETTINGS,
|
|
1116
|
-
SESSION_LEVEL_POLICY,
|
|
1117
|
-
SESSION_SETTINGS,
|
|
1118
|
-
SETTING_ITEM,
|
|
1119
|
-
SETTING_OVERRIDE,
|
|
1120
|
-
SETTING_USAGE_DEFINITION,
|
|
1121
|
-
SETTING_VALUE,
|
|
1122
|
-
SHARED_TO,
|
|
1123
|
-
SHARING_BASE_RULE,
|
|
1124
|
-
SHARING_CRITERIA_RULE,
|
|
1125
|
-
SHARING_GUEST_RULE,
|
|
1126
|
-
SHARING_OWNER_RULE,
|
|
1127
|
-
SHARING_REASON,
|
|
1128
|
-
SHARING_REASON_TRANSLATION,
|
|
1129
|
-
SHARING_RECALCULATION,
|
|
1130
|
-
SHARING_RULES,
|
|
1131
|
-
SHARING_SET,
|
|
1132
|
-
SHARING_SETTINGS,
|
|
1133
|
-
SHARING_TERRITORY_RULE,
|
|
1134
|
-
SIDEBAR_COMPONENT,
|
|
1135
|
-
SINGLE_RELATED_LIST_INFO,
|
|
1136
|
-
SINGLE_SIGN_ON_SETTINGS,
|
|
1137
|
-
SITE_DOT_COM,
|
|
1138
|
-
SITE_IFRAME_WHITE_LIST_URL,
|
|
1139
|
-
SITE_REDIRECT_MAPPING,
|
|
1140
|
-
SITE_SETTINGS,
|
|
1141
|
-
SITE_WEB_ADDRESS,
|
|
1142
|
-
SKILL,
|
|
1143
|
-
SKILL_ASSIGNMENTS,
|
|
1144
|
-
SKILL_PROFILE_ASSIGNMENTS,
|
|
1145
|
-
SKILL_USER_ASSIGNMENTS,
|
|
1146
|
-
SOCIAL_CUSTOMER_SERVICE_SETTINGS,
|
|
1147
|
-
SOURCE_TRACKING_SETTINGS,
|
|
1148
|
-
STANDARD_FIELD_TRANSLATION,
|
|
1149
|
-
STANDARD_PERMISSION_SET,
|
|
1150
|
-
STANDARD_VALUE,
|
|
1151
|
-
STANDARD_VALUE_SET,
|
|
1152
|
-
STANDARD_VALUE_SET_TRANSLATION,
|
|
1153
|
-
STATE,
|
|
1154
|
-
STATIC_RESOURCE,
|
|
1155
|
-
STRATEGY_ACTION,
|
|
1156
|
-
STRATEGY_ACTION_ARG,
|
|
1157
|
-
STRATEGY_NODE_AI_LOAD,
|
|
1158
|
-
STRATEGY_NODE_AI_SORT,
|
|
1159
|
-
STRATEGY_NODE_BASE,
|
|
1160
|
-
STRATEGY_NODE_EXCLUSIVE,
|
|
1161
|
-
STRATEGY_NODE_FILTER,
|
|
1162
|
-
STRATEGY_NODE_IF,
|
|
1163
|
-
STRATEGY_NODE_INVOCABLE_ACTION,
|
|
1164
|
-
STRATEGY_NODE_INVOCABLE_ACTION_ARG,
|
|
1165
|
-
STRATEGY_NODE_MAP,
|
|
1166
|
-
STRATEGY_NODE_RECOMMENDATION_LIMIT,
|
|
1167
|
-
STRATEGY_NODE_RECOMMENDATION_LOAD,
|
|
1168
|
-
STRATEGY_NODE_SORT,
|
|
1169
|
-
STRATEGY_NODE_SORT_FIELD,
|
|
1170
|
-
STRATEGY_NODE_UNION,
|
|
1171
|
-
STRATEGY_NODE_UNION_BASE,
|
|
1172
|
-
STREAMING_APP_DATA_CONNECTOR,
|
|
1173
|
-
STRING,
|
|
1174
|
-
STRING_LIST,
|
|
1175
|
-
SUBSCRIBER_PACKAGE_CSP_TRUSTED_SITE,
|
|
1176
|
-
SUBSCRIBER_PACKAGE_CSP_TRUSTED_SITES,
|
|
1177
|
-
SUBSCRIBER_PACKAGE_DEPENDENCIES,
|
|
1178
|
-
SUBSCRIBER_PACKAGE_DEPENDENCY,
|
|
1179
|
-
SUBSCRIBER_PACKAGE_DESTINATION_PROFILE,
|
|
1180
|
-
SUBSCRIBER_PACKAGE_INSTALL_ERROR,
|
|
1181
|
-
SUBSCRIBER_PACKAGE_INSTALL_ERRORS,
|
|
1182
|
-
SUBSCRIBER_PACKAGE_PROFILES,
|
|
1183
|
-
SUBSCRIBER_PACKAGE_PROFILE_MAPPING,
|
|
1184
|
-
SUBSCRIBER_PACKAGE_PROFILE_MAPPINGS,
|
|
1185
|
-
SUBSCRIBER_PACKAGE_REMOTE_SITE_SETTING,
|
|
1186
|
-
SUBSCRIBER_PACKAGE_REMOTE_SITE_SETTINGS,
|
|
1187
|
-
SUBSCRIBER_PACKAGE_SOURCE_PROFILE,
|
|
1188
|
-
SUBTAB_COMPONENTS,
|
|
1189
|
-
SUMMARY_LAYOUT,
|
|
1190
|
-
SUMMARY_LAYOUT_ITEM,
|
|
1191
|
-
SUPERVISOR_AGENT_CONFIG_SKILLS,
|
|
1192
|
-
SURVEY_SETTINGS,
|
|
1193
|
-
SYMBOL_TABLE,
|
|
1194
|
-
SYNONYM_DICTIONARY,
|
|
1195
|
-
SYSTEM_NOTIFICATION_SETTINGS,
|
|
1196
|
-
S_F_D_C_MOBILE_SETTINGS,
|
|
1197
|
-
TAB_LIMIT_CONFIG,
|
|
1198
|
-
TARGETS,
|
|
1199
|
-
TERRITORY,
|
|
1200
|
-
TERRITORY2,
|
|
1201
|
-
TERRITORY2_MODEL,
|
|
1202
|
-
TERRITORY2_RULE,
|
|
1203
|
-
TERRITORY2_RULE_ASSOCIATION,
|
|
1204
|
-
TERRITORY2_RULE_ITEM,
|
|
1205
|
-
TERRITORY2_SETTINGS,
|
|
1206
|
-
TERRITORY2_SETTINGS_OPPORTUNITY_FILTER,
|
|
1207
|
-
TERRITORY2_TYPE,
|
|
1208
|
-
TIME,
|
|
1209
|
-
TIME_SHEET_TEMPLATE,
|
|
1210
|
-
TIME_SHEET_TEMPLATE_ASSIGNMENT,
|
|
1211
|
-
TOPICS_FOR_OBJECTS,
|
|
1212
|
-
TOUCH_MOBILE_SETTINGS,
|
|
1213
|
-
TRAILHEAD_SETTINGS,
|
|
1214
|
-
TRANSACTION_SECURITY_ACTION,
|
|
1215
|
-
TRANSACTION_SECURITY_NOTIFICATION,
|
|
1216
|
-
TRANSACTION_SECURITY_POLICY,
|
|
1217
|
-
TRANSLATIONS,
|
|
1218
|
-
TRIAL_ORG_SETTINGS,
|
|
1219
|
-
UI_FORMULA_CRITERION,
|
|
1220
|
-
UI_FORMULA_RULE,
|
|
1221
|
-
UI_PLUGIN,
|
|
1222
|
-
USER,
|
|
1223
|
-
USERS,
|
|
1224
|
-
USER_ACTIVITY_TIMELINE_FILTER,
|
|
1225
|
-
USER_AUTH_CERTIFICATE,
|
|
1226
|
-
USER_CRITERIA,
|
|
1227
|
-
USER_CRITERIA_BASED_SHARING_RULE,
|
|
1228
|
-
USER_ENGAGEMENT_SETTINGS,
|
|
1229
|
-
USER_LICENSE,
|
|
1230
|
-
USER_LICENSE_DEFINITION,
|
|
1231
|
-
USER_MANAGEMENT_SETTINGS,
|
|
1232
|
-
USER_MAPPED,
|
|
1233
|
-
USER_MEMBERSHIP_SHARING_RULE,
|
|
1234
|
-
USER_PROVISIONING_CONFIG,
|
|
1235
|
-
USER_SHARING_RULES,
|
|
1236
|
-
U_I_OBJECT_RELATION_CONFIG,
|
|
1237
|
-
U_I_OBJECT_RELATION_FIELD_CONFIG,
|
|
1238
|
-
VALIDATION_RULE,
|
|
1239
|
-
VALIDATION_RULE_TRANSLATION,
|
|
1240
|
-
VALUE_SET,
|
|
1241
|
-
VALUE_SETTINGS,
|
|
1242
|
-
VALUE_SET_TRANSLATION,
|
|
1243
|
-
VALUE_SET_VALUES_DEFINITION,
|
|
1244
|
-
VALUE_TRANSLATION,
|
|
1245
|
-
VISUALIZATION_PLUGIN,
|
|
1246
|
-
VISUALIZATION_RESOURCE,
|
|
1247
|
-
VISUALIZATION_TYPE,
|
|
1248
|
-
VOICE_SETTINGS,
|
|
1249
|
-
WAVE_APPLICATION,
|
|
1250
|
-
WAVE_DASHBOARD,
|
|
1251
|
-
WAVE_DATAFLOW,
|
|
1252
|
-
WAVE_DATASET,
|
|
1253
|
-
WAVE_LENS,
|
|
1254
|
-
WAVE_RECIPE,
|
|
1255
|
-
WAVE_TEMPLATE_BUNDLE,
|
|
1256
|
-
WAVE_TEMPLATE_LENS_DASHBOARD_METADATA,
|
|
1257
|
-
WAVE_VISUALIZATION,
|
|
1258
|
-
WAVE_XMD,
|
|
1259
|
-
WAVE_XMD_DATE,
|
|
1260
|
-
WAVE_XMD_DIMENSION,
|
|
1261
|
-
WAVE_XMD_DIMENSION_CUSTOM_ACTION,
|
|
1262
|
-
WAVE_XMD_DIMENSION_MEMBER,
|
|
1263
|
-
WAVE_XMD_DIMENSION_SALESFORCE_ACTION,
|
|
1264
|
-
WAVE_XMD_FORMATTING_BIN,
|
|
1265
|
-
WAVE_XMD_FORMATTING_PREDICATE,
|
|
1266
|
-
WAVE_XMD_FORMATTING_PROPERTY,
|
|
1267
|
-
WAVE_XMD_MEASURE,
|
|
1268
|
-
WAVE_XMD_ORGANIZATION,
|
|
1269
|
-
WAVE_XMD_RECORD_DISPLAY_LOOKUP,
|
|
1270
|
-
WEB_LINK,
|
|
1271
|
-
WEB_LINK_COMMON,
|
|
1272
|
-
WEB_LINK_TRANSLATION,
|
|
1273
|
-
WEB_STORE_TEMPLATE,
|
|
1274
|
-
WEB_TO_CASE_SETTINGS,
|
|
1275
|
-
WEB_TO_X_SETTINGS,
|
|
1276
|
-
WEIGHTED_SOURCE_CATEGORY,
|
|
1277
|
-
WINDOWS_PUSH_APPLICATION_SETUP,
|
|
1278
|
-
WORKFLOW,
|
|
1279
|
-
WORKFLOW_ACTION,
|
|
1280
|
-
WORKFLOW_ACTION_REFERENCE,
|
|
1281
|
-
WORKFLOW_ALERT,
|
|
1282
|
-
WORKFLOW_APEX,
|
|
1283
|
-
WORKFLOW_CHATTER_POST,
|
|
1284
|
-
WORKFLOW_CHATTER_RECIPIENT,
|
|
1285
|
-
WORKFLOW_EMAIL_RECIPIENT,
|
|
1286
|
-
WORKFLOW_FIELD_UPDATE,
|
|
1287
|
-
WORKFLOW_FLOW_ACTION,
|
|
1288
|
-
WORKFLOW_FLOW_ACTION_PARAMETER,
|
|
1289
|
-
WORKFLOW_KNOWLEDGE_PUBLISH,
|
|
1290
|
-
WORKFLOW_OUTBOUND_MESSAGE,
|
|
1291
|
-
WORKFLOW_QUICK_CREATE,
|
|
1292
|
-
WORKFLOW_RULE,
|
|
1293
|
-
WORKFLOW_SEND,
|
|
1294
|
-
WORKFLOW_TASK,
|
|
1295
|
-
WORKFLOW_TASK_TRANSLATION,
|
|
1296
|
-
WORKFLOW_TIME_TRIGGER,
|
|
1297
|
-
WORKSPACE_MAPPING,
|
|
1298
|
-
WORKSPACE_MAPPINGS,
|
|
1299
|
-
WORK_DOT_COM_SETTINGS,
|
|
1300
|
-
WORK_SKILL_ROUTING,
|
|
1301
|
-
WORK_SKILL_ROUTING_ATTRIBUTE,
|
|
1302
|
-
X_ORG_HUB,
|
|
1303
|
-
X_ORG_HUB_CONNECTION,
|
|
1304
|
-
X_ORG_HUB_SHARED_OBJECT,
|
|
1305
|
-
X_ORG_SPOKE
|
|
1306
|
-
}
|