Skip to content

Commit

Permalink
Bugfix - Remove required ComponentDefinitionInput.codeNativeIntegrati…
Browse files Browse the repository at this point in the history
…onYAML reference (#118)
  • Loading branch information
pattra authored Oct 28, 2024
1 parent 45cfa1e commit 87dc0dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prismatic-io/prism",
"version": "7.2.0",
"version": "7.2.1",
"description": "Build, deploy, and support integrations in Prismatic from the comfort of your command line",
"keywords": ["prismatic", "cli"],
"homepage": "https://prismatic.io",
Expand Down
3 changes: 1 addition & 2 deletions src/utils/component/publish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { ComponentDefinition } from "./index.js";
import { fs } from "../../fs.js";
import { gqlRequest, gql } from "../../graphql.js";

const componentDefinitionShape: Record<keyof ComponentDefinition, true> = {
const componentDefinitionShape: Partial<Record<keyof ComponentDefinition, true>> = {
actions: true,
authorization: true,
connections: true,
Expand All @@ -18,7 +18,6 @@ const componentDefinitionShape: Record<keyof ComponentDefinition, true> = {
key: true,
public: true,
triggers: true,
codeNativeIntegrationYAML: true,
};

export const checkPackageSignature = async (
Expand Down

0 comments on commit 87dc0dc

Please sign in to comment.