├── .gitignore ├── CustomApiManager.nuspec ├── LICENSE ├── README.md ├── XTB.CustomApiManager ├── Controls │ ├── ImageGroupBox.cs │ └── ImageGroupBox.resx ├── CustomApiManagerControl.cs ├── CustomApiManagerControl.designer.cs ├── CustomApiManagerControl.resx ├── CustomApiManagerPlugin.cs ├── Entities │ ├── Catalog.cs │ ├── CatalogAssignment.cs │ ├── CustomAPI.cs │ ├── CustomAPIRequestParameter.cs │ ├── CustomAPIResponseProperty.cs │ ├── EntityCodes.cs │ ├── FxExpression.cs │ ├── Plug_inType.cs │ ├── Publisher.cs │ ├── Solution.cs │ ├── SolutionComponent.cs │ └── SolutionComponentTypes.cs ├── Forms │ ├── About.cs │ ├── About.designer.cs │ ├── About.resx │ ├── DeleteCustomApiForm.cs │ ├── DeleteCustomApiForm.designer.cs │ ├── DeleteCustomApiForm.resx │ ├── DeleteRequestParameterForm.cs │ ├── DeleteRequestParameterForm.designer.cs │ ├── DeleteRequestParameterForm.resx │ ├── DeleteResponsePropertyForm.cs │ ├── DeleteResponsePropertyForm.designer.cs │ ├── DeleteResponsePropertyForm.resx │ ├── NewCustomApiForm.cs │ ├── NewCustomApiForm.designer.cs │ ├── NewCustomApiForm.resx │ ├── NewRequestParameterForm.cs │ ├── NewRequestParameterForm.designer.cs │ ├── NewRequestParameterForm.resx │ ├── NewResponsePropertyForm.cs │ ├── NewResponsePropertyForm.designer.cs │ ├── NewResponsePropertyForm.resx │ ├── OpenApiViewerForm.Designer.cs │ ├── OpenApiViewerForm.cs │ ├── OpenApiViewerForm.resx │ ├── SettingsForm.cs │ ├── SettingsForm.designer.cs │ ├── SettingsForm.resx │ ├── UpdateCustomApiForm.cs │ ├── UpdateCustomApiForm.designer.cs │ ├── UpdateCustomApiForm.resx │ ├── UpdateRequestParameterForm.cs │ ├── UpdateRequestParameterForm.designer.cs │ ├── UpdateRequestParameterForm.resx │ ├── UpdateResponsePropertyForm.cs │ ├── UpdateResponsePropertyForm.designer.cs │ └── UpdateResponsePropertyForm.resx ├── Helpers │ ├── CatalogAssignmentHelper.cs │ ├── CustomApiHelper.cs │ ├── EntityHelper.cs │ ├── FxExpressionHelper.cs │ ├── MetadataHelper.cs │ ├── OpenApiGenerator.cs │ ├── PrivilegeHelper.cs │ ├── PublisherHelper.cs │ ├── SolutionHelper.cs │ └── TypeExtensions.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Proxy │ ├── CatalogAssignmentProxy.cs │ ├── CustomApiProxy.cs │ ├── CustomApiRequestParameterProxy.cs │ ├── CustomApiResponsePropertyProxy.cs │ ├── FxExpressionProxy.cs │ └── SolutionProxy.cs ├── Resources │ ├── hub-32.png │ ├── hub-80.png │ └── hub.ico ├── Settings.cs ├── XTB.CustomApiManager.csproj ├── app.config └── packages.config ├── XrmToolBox.CustomApiManager.sln └── images ├── 2022-05-26 21_56_20-Window.png ├── MainForm.png ├── MainForm2.png ├── catalogmanager_logo_24.png ├── logo_customapi_80.png └── settings.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/.gitignore -------------------------------------------------------------------------------- /CustomApiManager.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/CustomApiManager.nuspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/README.md -------------------------------------------------------------------------------- /XTB.CustomApiManager/Controls/ImageGroupBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Controls/ImageGroupBox.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Controls/ImageGroupBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Controls/ImageGroupBox.resx -------------------------------------------------------------------------------- /XTB.CustomApiManager/CustomApiManagerControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/CustomApiManagerControl.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/CustomApiManagerControl.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/CustomApiManagerControl.designer.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/CustomApiManagerControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/CustomApiManagerControl.resx -------------------------------------------------------------------------------- /XTB.CustomApiManager/CustomApiManagerPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/CustomApiManagerPlugin.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Entities/Catalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Entities/Catalog.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Entities/CatalogAssignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Entities/CatalogAssignment.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Entities/CustomAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Entities/CustomAPI.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Entities/CustomAPIRequestParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Entities/CustomAPIRequestParameter.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Entities/CustomAPIResponseProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Entities/CustomAPIResponseProperty.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Entities/EntityCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Entities/EntityCodes.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Entities/FxExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Entities/FxExpression.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Entities/Plug_inType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Entities/Plug_inType.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Entities/Publisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Entities/Publisher.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Entities/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Entities/Solution.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Entities/SolutionComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Entities/SolutionComponent.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Entities/SolutionComponentTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Entities/SolutionComponentTypes.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/About.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/About.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/About.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/About.designer.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/About.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/About.resx -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/DeleteCustomApiForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/DeleteCustomApiForm.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/DeleteCustomApiForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/DeleteCustomApiForm.designer.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/DeleteCustomApiForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/DeleteCustomApiForm.resx -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/DeleteRequestParameterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/DeleteRequestParameterForm.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/DeleteRequestParameterForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/DeleteRequestParameterForm.designer.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/DeleteRequestParameterForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/DeleteRequestParameterForm.resx -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/DeleteResponsePropertyForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/DeleteResponsePropertyForm.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/DeleteResponsePropertyForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/DeleteResponsePropertyForm.designer.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/DeleteResponsePropertyForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/DeleteResponsePropertyForm.resx -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/NewCustomApiForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/NewCustomApiForm.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/NewCustomApiForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/NewCustomApiForm.designer.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/NewCustomApiForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/NewCustomApiForm.resx -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/NewRequestParameterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/NewRequestParameterForm.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/NewRequestParameterForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/NewRequestParameterForm.designer.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/NewRequestParameterForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/NewRequestParameterForm.resx -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/NewResponsePropertyForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/NewResponsePropertyForm.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/NewResponsePropertyForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/NewResponsePropertyForm.designer.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/NewResponsePropertyForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/NewResponsePropertyForm.resx -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/OpenApiViewerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/OpenApiViewerForm.Designer.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/OpenApiViewerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/OpenApiViewerForm.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/OpenApiViewerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/OpenApiViewerForm.resx -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/SettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/SettingsForm.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/SettingsForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/SettingsForm.designer.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/SettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/SettingsForm.resx -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/UpdateCustomApiForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/UpdateCustomApiForm.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/UpdateCustomApiForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/UpdateCustomApiForm.designer.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/UpdateCustomApiForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/UpdateCustomApiForm.resx -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/UpdateRequestParameterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/UpdateRequestParameterForm.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/UpdateRequestParameterForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/UpdateRequestParameterForm.designer.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/UpdateRequestParameterForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/UpdateRequestParameterForm.resx -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/UpdateResponsePropertyForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/UpdateResponsePropertyForm.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/UpdateResponsePropertyForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/UpdateResponsePropertyForm.designer.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Forms/UpdateResponsePropertyForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Forms/UpdateResponsePropertyForm.resx -------------------------------------------------------------------------------- /XTB.CustomApiManager/Helpers/CatalogAssignmentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Helpers/CatalogAssignmentHelper.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Helpers/CustomApiHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Helpers/CustomApiHelper.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Helpers/EntityHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Helpers/EntityHelper.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Helpers/FxExpressionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Helpers/FxExpressionHelper.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Helpers/MetadataHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Helpers/MetadataHelper.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Helpers/OpenApiGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Helpers/OpenApiGenerator.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Helpers/PrivilegeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Helpers/PrivilegeHelper.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Helpers/PublisherHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Helpers/PublisherHelper.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Helpers/SolutionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Helpers/SolutionHelper.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Helpers/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Helpers/TypeExtensions.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Properties/Resources.resx -------------------------------------------------------------------------------- /XTB.CustomApiManager/Proxy/CatalogAssignmentProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Proxy/CatalogAssignmentProxy.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Proxy/CustomApiProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Proxy/CustomApiProxy.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Proxy/CustomApiRequestParameterProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Proxy/CustomApiRequestParameterProxy.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Proxy/CustomApiResponsePropertyProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Proxy/CustomApiResponsePropertyProxy.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Proxy/FxExpressionProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Proxy/FxExpressionProxy.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Proxy/SolutionProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Proxy/SolutionProxy.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/Resources/hub-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Resources/hub-32.png -------------------------------------------------------------------------------- /XTB.CustomApiManager/Resources/hub-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Resources/hub-80.png -------------------------------------------------------------------------------- /XTB.CustomApiManager/Resources/hub.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Resources/hub.ico -------------------------------------------------------------------------------- /XTB.CustomApiManager/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/Settings.cs -------------------------------------------------------------------------------- /XTB.CustomApiManager/XTB.CustomApiManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/XTB.CustomApiManager.csproj -------------------------------------------------------------------------------- /XTB.CustomApiManager/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/app.config -------------------------------------------------------------------------------- /XTB.CustomApiManager/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XTB.CustomApiManager/packages.config -------------------------------------------------------------------------------- /XrmToolBox.CustomApiManager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/XrmToolBox.CustomApiManager.sln -------------------------------------------------------------------------------- /images/2022-05-26 21_56_20-Window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/images/2022-05-26 21_56_20-Window.png -------------------------------------------------------------------------------- /images/MainForm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/images/MainForm.png -------------------------------------------------------------------------------- /images/MainForm2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/images/MainForm2.png -------------------------------------------------------------------------------- /images/catalogmanager_logo_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/images/catalogmanager_logo_24.png -------------------------------------------------------------------------------- /images/logo_customapi_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/images/logo_customapi_80.png -------------------------------------------------------------------------------- /images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drivardxrm/XTB.CustomApiManager/HEAD/images/settings.png --------------------------------------------------------------------------------