@code0-tech/sagittarius-graphql-types 0.0.0-56198dce107a9c09cc5eca0773f239d9c3eba598 → 0.0.0-65144a9920c6a8de3bcf24acdcb8eec4158cef73
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.
- package/index.d.ts +4 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -425,6 +425,8 @@ export interface Flow {
|
|
|
425
425
|
id?: Maybe<Scalars['FlowID']['output']>;
|
|
426
426
|
/** The input data type of the flow */
|
|
427
427
|
inputType?: Maybe<DataType>;
|
|
428
|
+
/** Name of the flow */
|
|
429
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
428
430
|
/** Nodes of the flow */
|
|
429
431
|
nodes?: Maybe<NodeFunctionConnection>;
|
|
430
432
|
/** The return data type of the flow */
|
|
@@ -481,6 +483,8 @@ export interface FlowEdge {
|
|
|
481
483
|
|
|
482
484
|
/** Input type for creating or updating a flow */
|
|
483
485
|
export interface FlowInput {
|
|
486
|
+
/** The name of the flow */
|
|
487
|
+
name: Scalars['String']['input'];
|
|
484
488
|
/** The settings of the flow */
|
|
485
489
|
settings?: InputMaybe<Array<FlowSettingInput>>;
|
|
486
490
|
/** The starting node of the flow */
|
package/package.json
CHANGED