We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Related: #285
We recently introduced metadata in Step, which is used to auto-generate documentation. The StepRelationshipMetadata currently has a _class property with the type string. We should change that to be RelationshipClass from @jupiterone/data-model. See here: https://github.com/JupiterOne/sdk/blob/master/packages/integration-sdk-core/src/types/step.ts#L83
Step
StepRelationshipMetadata
_class
string
RelationshipClass
@jupiterone/data-model
Old:
export interface StepRelationshipMetadata extends StepGraphObjectMetadata { _class: string; sourceType: string; targetType: string; }
New:
import { RelationshipClass } from '@jupiterone/data-model'; export interface StepRelationshipMetadata extends StepGraphObjectMetadata { _class: RelationshipClass; sourceType: string; targetType: string; }
The text was updated successfully, but these errors were encountered:
72dfc3a
Merge pull request #302 from JupiterOne/301-relationshipclass-step
8854ee7
Fixes #301 - StepRelationshipMetadata in Step should require
Merge pull request #313 from JupiterOne/311-mock-find-entity
7af0eda
Fixes #301 - Register inputEntities & inputRelationships in mockJobState
austinkelleher
No branches or pull requests
Related: #285
We recently introduced metadata in
Step
, which is used to auto-generate documentation. TheStepRelationshipMetadata
currently has a_class
property with the typestring
. We should change that to beRelationshipClass
from@jupiterone/data-model
. See here: https://github.com/JupiterOne/sdk/blob/master/packages/integration-sdk-core/src/types/step.ts#L83Old:
New:
The text was updated successfully, but these errors were encountered: