├── .gitignore ├── 3x-4x-deprecated-solution ├── README.md └── msdyn_ProjectServiceDeprecatedComponents_managed.cab ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Flow └── ScheduleAPI │ ├── OperationSetsFlows_20211110211208.zip │ └── README.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── images ├── time-period.png └── time-timeline.png ├── schedule-api └── C# │ └── SDK-Sample │ ├── .gitignore │ ├── App.config │ ├── CODE_OF_CONDUCT.md │ ├── CUDScenario.cs │ ├── ChangeTaskHierarchy.cs │ ├── CreateScenario.cs │ ├── InsertTaskScenario.cs │ ├── LICENSE │ ├── OperationSetResponse.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── README.md │ ├── SECURITY.md │ ├── SUPPORT.md │ ├── ScheduleAPIHelpers.cs │ ├── ScheduleAPISamples.csproj │ ├── ScheduleAPISamples.sln │ ├── UpdateScenario.cs │ └── packages.config └── time ├── README.md ├── msapp └── Time Entry.msapp ├── package └── TimeEntry_20220208151927.zip └── unpack ├── Assets ├── Images │ ├── multiselectcheckbox.20.svg │ ├── timeenrtyicon.svg │ ├── vacationicon.svg │ └── workinghard.svg ├── SampleImage.json └── logo.jpg ├── CanvasManifest.json ├── ComponentReferences.json ├── Connections └── Connections.json ├── ControlTemplates.json ├── DataSources ├── Bookable Resource Categories.json ├── Bookable Resource Category Assns.json ├── Bookable Resources.json ├── ComboBoxSample.json ├── CustomGallerySample.json ├── DropDownSample.json ├── Office365Users.json ├── Project Tasks.json ├── Project Team Members.json ├── Projects.json ├── RecallTime.json ├── SubmitTime.json ├── Teams.json ├── Time Entries.json ├── Time Sources.json ├── TimeGrouped.json ├── TimeInCurrentPeriod.json ├── Transaction Categories.json ├── User Settings.json └── Users.json ├── Entropy ├── AppCheckerResult.sarif ├── Entropy.json └── checksum.json ├── Other └── References │ ├── AuxDataMap.json │ └── QualifiedValues.json ├── Src ├── App.fx.yaml ├── EditorState │ ├── App.editorstate.json │ ├── NewTimeEntryScreen.editorstate.json │ ├── TimelineScreen.editorstate.json │ └── ViewTimeEntryScreen.editorstate.json ├── NewTimeEntryScreen.fx.yaml ├── Themes.json ├── TimelineScreen.fx.yaml └── ViewTimeEntryScreen.fx.yaml └── pkgs ├── TableDefinitions ├── Bookable Resource Categories.json ├── Bookable Resource Category Assns.json ├── Bookable Resources.json ├── Project Tasks.json ├── Project Team Members.json ├── Projects.json ├── Teams.json ├── Time Entries.json ├── Time Sources.json ├── Transaction Categories.json ├── User Settings.json └── Users.json ├── Wadl ├── Office365Users.xml ├── RecallTime.xml └── SubmitTime.xml ├── button_2.1.0.xml ├── checkbox_2.1.0.xml ├── circle_2.2.0.xml ├── combobox_2.4.0.xml ├── datepicker_2.5.0.xml ├── dropdown_2.3.1.xml ├── form_2.1.0.xml ├── gallery_2.12.0.xml ├── groupContainer_1.1.0.xml ├── icon_2.4.0.xml ├── image_2.2.0.xml ├── label_2.4.0.xml ├── rectangle_2.2.0.xml └── text_2.3.1.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/.gitignore -------------------------------------------------------------------------------- /3x-4x-deprecated-solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/3x-4x-deprecated-solution/README.md -------------------------------------------------------------------------------- /3x-4x-deprecated-solution/msdyn_ProjectServiceDeprecatedComponents_managed.cab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/3x-4x-deprecated-solution/msdyn_ProjectServiceDeprecatedComponents_managed.cab -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Flow/ScheduleAPI/OperationSetsFlows_20211110211208.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/Flow/ScheduleAPI/OperationSetsFlows_20211110211208.zip -------------------------------------------------------------------------------- /Flow/ScheduleAPI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/Flow/ScheduleAPI/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /images/time-period.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/images/time-period.png -------------------------------------------------------------------------------- /images/time-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/images/time-timeline.png -------------------------------------------------------------------------------- /schedule-api/C#/SDK-Sample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/schedule-api/C#/SDK-Sample/.gitignore -------------------------------------------------------------------------------- /schedule-api/C#/SDK-Sample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/schedule-api/C#/SDK-Sample/App.config -------------------------------------------------------------------------------- /schedule-api/C#/SDK-Sample/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/schedule-api/C#/SDK-Sample/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /schedule-api/C#/SDK-Sample/CUDScenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/schedule-api/C#/SDK-Sample/CUDScenario.cs -------------------------------------------------------------------------------- /schedule-api/C#/SDK-Sample/ChangeTaskHierarchy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/schedule-api/C#/SDK-Sample/ChangeTaskHierarchy.cs -------------------------------------------------------------------------------- /schedule-api/C#/SDK-Sample/CreateScenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/schedule-api/C#/SDK-Sample/CreateScenario.cs -------------------------------------------------------------------------------- /schedule-api/C#/SDK-Sample/InsertTaskScenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/schedule-api/C#/SDK-Sample/InsertTaskScenario.cs -------------------------------------------------------------------------------- /schedule-api/C#/SDK-Sample/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/schedule-api/C#/SDK-Sample/LICENSE -------------------------------------------------------------------------------- /schedule-api/C#/SDK-Sample/OperationSetResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/schedule-api/C#/SDK-Sample/OperationSetResponse.cs -------------------------------------------------------------------------------- /schedule-api/C#/SDK-Sample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/schedule-api/C#/SDK-Sample/Program.cs -------------------------------------------------------------------------------- /schedule-api/C#/SDK-Sample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/schedule-api/C#/SDK-Sample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /schedule-api/C#/SDK-Sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/schedule-api/C#/SDK-Sample/README.md -------------------------------------------------------------------------------- /schedule-api/C#/SDK-Sample/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/schedule-api/C#/SDK-Sample/SECURITY.md -------------------------------------------------------------------------------- /schedule-api/C#/SDK-Sample/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/schedule-api/C#/SDK-Sample/SUPPORT.md -------------------------------------------------------------------------------- /schedule-api/C#/SDK-Sample/ScheduleAPIHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/schedule-api/C#/SDK-Sample/ScheduleAPIHelpers.cs -------------------------------------------------------------------------------- /schedule-api/C#/SDK-Sample/ScheduleAPISamples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/schedule-api/C#/SDK-Sample/ScheduleAPISamples.csproj -------------------------------------------------------------------------------- /schedule-api/C#/SDK-Sample/ScheduleAPISamples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/schedule-api/C#/SDK-Sample/ScheduleAPISamples.sln -------------------------------------------------------------------------------- /schedule-api/C#/SDK-Sample/UpdateScenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/schedule-api/C#/SDK-Sample/UpdateScenario.cs -------------------------------------------------------------------------------- /schedule-api/C#/SDK-Sample/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/schedule-api/C#/SDK-Sample/packages.config -------------------------------------------------------------------------------- /time/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/README.md -------------------------------------------------------------------------------- /time/msapp/Time Entry.msapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/msapp/Time Entry.msapp -------------------------------------------------------------------------------- /time/package/TimeEntry_20220208151927.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/package/TimeEntry_20220208151927.zip -------------------------------------------------------------------------------- /time/unpack/Assets/Images/multiselectcheckbox.20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/Assets/Images/multiselectcheckbox.20.svg -------------------------------------------------------------------------------- /time/unpack/Assets/Images/timeenrtyicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/Assets/Images/timeenrtyicon.svg -------------------------------------------------------------------------------- /time/unpack/Assets/Images/vacationicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/Assets/Images/vacationicon.svg -------------------------------------------------------------------------------- /time/unpack/Assets/Images/workinghard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/Assets/Images/workinghard.svg -------------------------------------------------------------------------------- /time/unpack/Assets/SampleImage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/Assets/SampleImage.json -------------------------------------------------------------------------------- /time/unpack/Assets/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/Assets/logo.jpg -------------------------------------------------------------------------------- /time/unpack/CanvasManifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/CanvasManifest.json -------------------------------------------------------------------------------- /time/unpack/ComponentReferences.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /time/unpack/Connections/Connections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/Connections/Connections.json -------------------------------------------------------------------------------- /time/unpack/ControlTemplates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/ControlTemplates.json -------------------------------------------------------------------------------- /time/unpack/DataSources/Bookable Resource Categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/DataSources/Bookable Resource Categories.json -------------------------------------------------------------------------------- /time/unpack/DataSources/Bookable Resource Category Assns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/DataSources/Bookable Resource Category Assns.json -------------------------------------------------------------------------------- /time/unpack/DataSources/Bookable Resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/DataSources/Bookable Resources.json -------------------------------------------------------------------------------- /time/unpack/DataSources/ComboBoxSample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/DataSources/ComboBoxSample.json -------------------------------------------------------------------------------- /time/unpack/DataSources/CustomGallerySample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/DataSources/CustomGallerySample.json -------------------------------------------------------------------------------- /time/unpack/DataSources/DropDownSample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/DataSources/DropDownSample.json -------------------------------------------------------------------------------- /time/unpack/DataSources/Office365Users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/DataSources/Office365Users.json -------------------------------------------------------------------------------- /time/unpack/DataSources/Project Tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/DataSources/Project Tasks.json -------------------------------------------------------------------------------- /time/unpack/DataSources/Project Team Members.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/DataSources/Project Team Members.json -------------------------------------------------------------------------------- /time/unpack/DataSources/Projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/DataSources/Projects.json -------------------------------------------------------------------------------- /time/unpack/DataSources/RecallTime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/DataSources/RecallTime.json -------------------------------------------------------------------------------- /time/unpack/DataSources/SubmitTime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/DataSources/SubmitTime.json -------------------------------------------------------------------------------- /time/unpack/DataSources/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/DataSources/Teams.json -------------------------------------------------------------------------------- /time/unpack/DataSources/Time Entries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/DataSources/Time Entries.json -------------------------------------------------------------------------------- /time/unpack/DataSources/Time Sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/DataSources/Time Sources.json -------------------------------------------------------------------------------- /time/unpack/DataSources/TimeGrouped.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/DataSources/TimeGrouped.json -------------------------------------------------------------------------------- /time/unpack/DataSources/TimeInCurrentPeriod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/DataSources/TimeInCurrentPeriod.json -------------------------------------------------------------------------------- /time/unpack/DataSources/Transaction Categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/DataSources/Transaction Categories.json -------------------------------------------------------------------------------- /time/unpack/DataSources/User Settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/DataSources/User Settings.json -------------------------------------------------------------------------------- /time/unpack/DataSources/Users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/DataSources/Users.json -------------------------------------------------------------------------------- /time/unpack/Entropy/AppCheckerResult.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/Entropy/AppCheckerResult.sarif -------------------------------------------------------------------------------- /time/unpack/Entropy/Entropy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/Entropy/Entropy.json -------------------------------------------------------------------------------- /time/unpack/Entropy/checksum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/Entropy/checksum.json -------------------------------------------------------------------------------- /time/unpack/Other/References/AuxDataMap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/Other/References/AuxDataMap.json -------------------------------------------------------------------------------- /time/unpack/Other/References/QualifiedValues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/Other/References/QualifiedValues.json -------------------------------------------------------------------------------- /time/unpack/Src/App.fx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/Src/App.fx.yaml -------------------------------------------------------------------------------- /time/unpack/Src/EditorState/App.editorstate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/Src/EditorState/App.editorstate.json -------------------------------------------------------------------------------- /time/unpack/Src/EditorState/NewTimeEntryScreen.editorstate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/Src/EditorState/NewTimeEntryScreen.editorstate.json -------------------------------------------------------------------------------- /time/unpack/Src/EditorState/TimelineScreen.editorstate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/Src/EditorState/TimelineScreen.editorstate.json -------------------------------------------------------------------------------- /time/unpack/Src/EditorState/ViewTimeEntryScreen.editorstate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/Src/EditorState/ViewTimeEntryScreen.editorstate.json -------------------------------------------------------------------------------- /time/unpack/Src/NewTimeEntryScreen.fx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/Src/NewTimeEntryScreen.fx.yaml -------------------------------------------------------------------------------- /time/unpack/Src/Themes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/Src/Themes.json -------------------------------------------------------------------------------- /time/unpack/Src/TimelineScreen.fx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/Src/TimelineScreen.fx.yaml -------------------------------------------------------------------------------- /time/unpack/Src/ViewTimeEntryScreen.fx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/Src/ViewTimeEntryScreen.fx.yaml -------------------------------------------------------------------------------- /time/unpack/pkgs/TableDefinitions/Bookable Resource Categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/TableDefinitions/Bookable Resource Categories.json -------------------------------------------------------------------------------- /time/unpack/pkgs/TableDefinitions/Bookable Resource Category Assns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/TableDefinitions/Bookable Resource Category Assns.json -------------------------------------------------------------------------------- /time/unpack/pkgs/TableDefinitions/Bookable Resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/TableDefinitions/Bookable Resources.json -------------------------------------------------------------------------------- /time/unpack/pkgs/TableDefinitions/Project Tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/TableDefinitions/Project Tasks.json -------------------------------------------------------------------------------- /time/unpack/pkgs/TableDefinitions/Project Team Members.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/TableDefinitions/Project Team Members.json -------------------------------------------------------------------------------- /time/unpack/pkgs/TableDefinitions/Projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/TableDefinitions/Projects.json -------------------------------------------------------------------------------- /time/unpack/pkgs/TableDefinitions/Teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/TableDefinitions/Teams.json -------------------------------------------------------------------------------- /time/unpack/pkgs/TableDefinitions/Time Entries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/TableDefinitions/Time Entries.json -------------------------------------------------------------------------------- /time/unpack/pkgs/TableDefinitions/Time Sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/TableDefinitions/Time Sources.json -------------------------------------------------------------------------------- /time/unpack/pkgs/TableDefinitions/Transaction Categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/TableDefinitions/Transaction Categories.json -------------------------------------------------------------------------------- /time/unpack/pkgs/TableDefinitions/User Settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/TableDefinitions/User Settings.json -------------------------------------------------------------------------------- /time/unpack/pkgs/TableDefinitions/Users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/TableDefinitions/Users.json -------------------------------------------------------------------------------- /time/unpack/pkgs/Wadl/Office365Users.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/Wadl/Office365Users.xml -------------------------------------------------------------------------------- /time/unpack/pkgs/Wadl/RecallTime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/Wadl/RecallTime.xml -------------------------------------------------------------------------------- /time/unpack/pkgs/Wadl/SubmitTime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/Wadl/SubmitTime.xml -------------------------------------------------------------------------------- /time/unpack/pkgs/button_2.1.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/button_2.1.0.xml -------------------------------------------------------------------------------- /time/unpack/pkgs/checkbox_2.1.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/checkbox_2.1.0.xml -------------------------------------------------------------------------------- /time/unpack/pkgs/circle_2.2.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/circle_2.2.0.xml -------------------------------------------------------------------------------- /time/unpack/pkgs/combobox_2.4.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/combobox_2.4.0.xml -------------------------------------------------------------------------------- /time/unpack/pkgs/datepicker_2.5.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/datepicker_2.5.0.xml -------------------------------------------------------------------------------- /time/unpack/pkgs/dropdown_2.3.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/dropdown_2.3.1.xml -------------------------------------------------------------------------------- /time/unpack/pkgs/form_2.1.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/form_2.1.0.xml -------------------------------------------------------------------------------- /time/unpack/pkgs/gallery_2.12.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/gallery_2.12.0.xml -------------------------------------------------------------------------------- /time/unpack/pkgs/groupContainer_1.1.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/groupContainer_1.1.0.xml -------------------------------------------------------------------------------- /time/unpack/pkgs/icon_2.4.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/icon_2.4.0.xml -------------------------------------------------------------------------------- /time/unpack/pkgs/image_2.2.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/image_2.2.0.xml -------------------------------------------------------------------------------- /time/unpack/pkgs/label_2.4.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/label_2.4.0.xml -------------------------------------------------------------------------------- /time/unpack/pkgs/rectangle_2.2.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/rectangle_2.2.0.xml -------------------------------------------------------------------------------- /time/unpack/pkgs/text_2.3.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Dynamics365-Project-Operations-PowerApps/HEAD/time/unpack/pkgs/text_2.3.1.xml --------------------------------------------------------------------------------