planpilot 2.4.0__tar.gz → 2.4.1__tar.gz
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.
- {planpilot-2.4.0 → planpilot-2.4.1}/PKG-INFO +1 -1
- {planpilot-2.4.0 → planpilot-2.4.1}/pyproject.toml +1 -1
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/.claude-plugin/plugin.json +3 -3
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/__init__.py +1 -1
- {planpilot-2.4.0 → planpilot-2.4.1}/LICENSE +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/README.md +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/.claude-plugin/marketplace.json +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/AGENTS.md +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/__main__.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/cli/__init__.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/cli/__main__.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/cli/app.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/cli/commands/__init__.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/cli/commands/clean.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/cli/commands/init.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/cli/commands/map_sync.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/cli/commands/sync.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/cli/common.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/cli/init/__init__.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/cli/init/validation.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/cli/parser.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/cli/persistence/__init__.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/cli/persistence/remote_plan.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/cli/persistence/sync_map.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/cli/progress/__init__.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/cli/progress/rich.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/cli/scaffold/__init__.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/cli/scaffold/config_builder.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/commands/prd.md +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/commands/spec.md +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/commands/sync.md +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/__init__.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/auth/__init__.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/auth/base.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/auth/factory.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/auth/preflight.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/auth/resolvers/__init__.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/auth/resolvers/env.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/auth/resolvers/gh_cli.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/auth/resolvers/static.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/clean/__init__.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/clean/deletion_planner.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/config/__init__.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/config/loader.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/config/scaffold.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/contracts/__init__.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/contracts/config.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/contracts/exceptions.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/contracts/init.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/contracts/item.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/contracts/plan.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/contracts/provider.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/contracts/renderer.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/contracts/sync.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/engine/__init__.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/engine/engine.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/engine/progress.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/engine/utils.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/init/__init__.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/init/validation.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/map_sync/__init__.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/map_sync/parser.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/map_sync/persistence.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/map_sync/reconciler.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/metadata.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/plan/__init__.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/plan/hasher.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/plan/loader.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/plan/validator.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/AGENTS.md +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/__init__.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/base.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/dry_run.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/factory.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/AGENTS.md +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/__init__.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/_retrying_transport.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/__init__.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/add_blocked_by.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/add_labels.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/add_project_item.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/add_sub_issue.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/async_base_client.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/base_model.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/client.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/close_issue.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/create_issue.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/create_label.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/delete_issue.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/enums.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/exceptions.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/fetch_org_project.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/fetch_project_fields.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/fetch_project_items.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/fetch_relations.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/fetch_repo.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/fetch_user_project.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/find_labels.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/fragments.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/get_issue.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/input_types.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/operations.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/remove_blocked_by.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/remove_labels.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/remove_sub_issue.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/search_issues.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/update_issue.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/update_project_field.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/item.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/mapper.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/models.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/operations/add_blocked_by.graphql +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/operations/add_labels.graphql +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/operations/add_project_item.graphql +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/operations/add_sub_issue.graphql +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/operations/close_issue.graphql +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/operations/create_issue.graphql +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/operations/create_label.graphql +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/operations/delete_issue.graphql +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/operations/fetch_org_project.graphql +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/operations/fetch_project_fields.graphql +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/operations/fetch_project_items.graphql +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/operations/fetch_relations.graphql +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/operations/fetch_repo.graphql +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/operations/fetch_user_project.graphql +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/operations/find_labels.graphql +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/operations/fragments.graphql +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/operations/get_issue.graphql +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/operations/remove_blocked_by.graphql +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/operations/remove_labels.graphql +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/operations/remove_sub_issue.graphql +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/operations/search_issues.graphql +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/operations/update_issue.graphql +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/operations/update_project_field.graphql +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/ops/__init__.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/ops/convert.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/ops/crud.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/ops/labels.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/ops/project.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/ops/relations.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/provider.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/schema.graphql +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/renderers/__init__.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/renderers/factory.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/renderers/markdown.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/targets/__init__.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/targets/github_project.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/py.typed +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/sdk.py +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/skills/INSTALL.agent.md +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/skills/INSTALL.md +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/skills/create-prd/SKILL.md +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/skills/create-tech-spec/SKILL.md +0 -0
- {planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/skills/plan-sync/SKILL.md +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "planpilot",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.1",
|
|
4
4
|
"description": "Claude Code skills and commands for planning workflows: create PRDs, tech specs, and sync plans to GitHub Issues + Projects v2",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Arye Kogan",
|
|
@@ -13,6 +13,6 @@
|
|
|
13
13
|
"keywords": ["planning", "github", "roadmap", "issues", "projects", "prd", "spec"],
|
|
14
14
|
"category": "workflow",
|
|
15
15
|
"tags": ["planning", "github-projects", "roadmap", "prd", "tech-spec", "skills", "commands"],
|
|
16
|
-
"skills": ["
|
|
17
|
-
"commands": ["
|
|
16
|
+
"skills": ["../skills/"],
|
|
17
|
+
"commands": ["../commands/"]
|
|
18
18
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/_retrying_transport.py
RENAMED
|
File without changes
|
{planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/__init__.py
RENAMED
|
File without changes
|
{planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/add_blocked_by.py
RENAMED
|
File without changes
|
{planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/add_labels.py
RENAMED
|
File without changes
|
|
File without changes
|
{planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/add_sub_issue.py
RENAMED
|
File without changes
|
|
File without changes
|
{planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/base_model.py
RENAMED
|
File without changes
|
{planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/client.py
RENAMED
|
File without changes
|
{planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/close_issue.py
RENAMED
|
File without changes
|
{planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/create_issue.py
RENAMED
|
File without changes
|
{planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/create_label.py
RENAMED
|
File without changes
|
{planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/delete_issue.py
RENAMED
|
File without changes
|
|
File without changes
|
{planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/exceptions.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/fetch_repo.py
RENAMED
|
File without changes
|
|
File without changes
|
{planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/find_labels.py
RENAMED
|
File without changes
|
{planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/fragments.py
RENAMED
|
File without changes
|
{planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/get_issue.py
RENAMED
|
File without changes
|
{planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/input_types.py
RENAMED
|
File without changes
|
{planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/operations.py
RENAMED
|
File without changes
|
|
File without changes
|
{planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/remove_labels.py
RENAMED
|
File without changes
|
|
File without changes
|
{planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/search_issues.py
RENAMED
|
File without changes
|
{planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/github_gql/update_issue.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/operations/fragments.graphql
RENAMED
|
File without changes
|
{planpilot-2.4.0 → planpilot-2.4.1}/src/planpilot/core/providers/github/operations/get_issue.graphql
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|