@pipe2-ai/sdk 0.2.0 → 0.4.0
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/dist/generated/sdk.d.ts +95 -6
- package/dist/generated/sdk.js +66 -2
- package/package.json +1 -1
package/dist/generated/sdk.d.ts
CHANGED
|
@@ -764,6 +764,11 @@ export type Credit_History_Entry = {
|
|
|
764
764
|
amount: Scalars['Int']['output'];
|
|
765
765
|
created_at: Scalars['String']['output'];
|
|
766
766
|
description: Scalars['String']['output'];
|
|
767
|
+
pipeline_name?: Maybe<Scalars['String']['output']>;
|
|
768
|
+
pipeline_run_id?: Maybe<Scalars['String']['output']>;
|
|
769
|
+
pipeline_slug?: Maybe<Scalars['String']['output']>;
|
|
770
|
+
reservation_mc?: Maybe<Scalars['Int']['output']>;
|
|
771
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
767
772
|
type: Scalars['String']['output'];
|
|
768
773
|
};
|
|
769
774
|
/** columns and relationships of "credit_pack_versions" */
|
|
@@ -1022,6 +1027,13 @@ export type Ensure_Affiliate_Output = {
|
|
|
1022
1027
|
affiliate_id: Scalars['String']['output'];
|
|
1023
1028
|
success: Scalars['Boolean']['output'];
|
|
1024
1029
|
};
|
|
1030
|
+
export type Estimate_Pipeline_Cost_Output = {
|
|
1031
|
+
__typename?: 'estimate_pipeline_cost_output';
|
|
1032
|
+
estimated_mc: Scalars['Int']['output'];
|
|
1033
|
+
is_metered: Scalars['Boolean']['output'];
|
|
1034
|
+
pipeline_slug: Scalars['String']['output'];
|
|
1035
|
+
reservation_mc: Scalars['Int']['output'];
|
|
1036
|
+
};
|
|
1025
1037
|
/** columns and relationships of "executions_visibility" */
|
|
1026
1038
|
export type Executions_Visibility = {
|
|
1027
1039
|
__typename?: 'executions_visibility';
|
|
@@ -1842,11 +1854,12 @@ export type Pipelines = {
|
|
|
1842
1854
|
id: Scalars['uuid']['output'];
|
|
1843
1855
|
input_schema: Scalars['jsonb']['output'];
|
|
1844
1856
|
is_active: Scalars['Boolean']['output'];
|
|
1857
|
+
models: Array<Scalars['String']['output']>;
|
|
1845
1858
|
name: Scalars['String']['output'];
|
|
1846
1859
|
output_schema: Scalars['jsonb']['output'];
|
|
1847
1860
|
preview_url?: Maybe<Scalars['String']['output']>;
|
|
1848
1861
|
pricing: Scalars['jsonb']['output'];
|
|
1849
|
-
|
|
1862
|
+
providers: Array<Scalars['String']['output']>;
|
|
1850
1863
|
seo_content?: Maybe<Scalars['String']['output']>;
|
|
1851
1864
|
seo_faq?: Maybe<Scalars['jsonb']['output']>;
|
|
1852
1865
|
slug: Scalars['String']['output'];
|
|
@@ -1891,11 +1904,12 @@ export type Pipelines_Bool_Exp = {
|
|
|
1891
1904
|
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1892
1905
|
input_schema?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
1893
1906
|
is_active?: InputMaybe<Boolean_Comparison_Exp>;
|
|
1907
|
+
models?: InputMaybe<String_Array_Comparison_Exp>;
|
|
1894
1908
|
name?: InputMaybe<String_Comparison_Exp>;
|
|
1895
1909
|
output_schema?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
1896
1910
|
preview_url?: InputMaybe<String_Comparison_Exp>;
|
|
1897
1911
|
pricing?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
1898
|
-
|
|
1912
|
+
providers?: InputMaybe<String_Array_Comparison_Exp>;
|
|
1899
1913
|
seo_content?: InputMaybe<String_Comparison_Exp>;
|
|
1900
1914
|
seo_faq?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
1901
1915
|
slug?: InputMaybe<String_Comparison_Exp>;
|
|
@@ -1913,11 +1927,12 @@ export type Pipelines_Order_By = {
|
|
|
1913
1927
|
id?: InputMaybe<Order_By>;
|
|
1914
1928
|
input_schema?: InputMaybe<Order_By>;
|
|
1915
1929
|
is_active?: InputMaybe<Order_By>;
|
|
1930
|
+
models?: InputMaybe<Order_By>;
|
|
1916
1931
|
name?: InputMaybe<Order_By>;
|
|
1917
1932
|
output_schema?: InputMaybe<Order_By>;
|
|
1918
1933
|
preview_url?: InputMaybe<Order_By>;
|
|
1919
1934
|
pricing?: InputMaybe<Order_By>;
|
|
1920
|
-
|
|
1935
|
+
providers?: InputMaybe<Order_By>;
|
|
1921
1936
|
seo_content?: InputMaybe<Order_By>;
|
|
1922
1937
|
seo_faq?: InputMaybe<Order_By>;
|
|
1923
1938
|
slug?: InputMaybe<Order_By>;
|
|
@@ -1944,6 +1959,8 @@ export declare enum Pipelines_Select_Column {
|
|
|
1944
1959
|
/** column name */
|
|
1945
1960
|
IsActive = "is_active",
|
|
1946
1961
|
/** column name */
|
|
1962
|
+
Models = "models",
|
|
1963
|
+
/** column name */
|
|
1947
1964
|
Name = "name",
|
|
1948
1965
|
/** column name */
|
|
1949
1966
|
OutputSchema = "output_schema",
|
|
@@ -1952,7 +1969,7 @@ export declare enum Pipelines_Select_Column {
|
|
|
1952
1969
|
/** column name */
|
|
1953
1970
|
Pricing = "pricing",
|
|
1954
1971
|
/** column name */
|
|
1955
|
-
|
|
1972
|
+
Providers = "providers",
|
|
1956
1973
|
/** column name */
|
|
1957
1974
|
SeoContent = "seo_content",
|
|
1958
1975
|
/** column name */
|
|
@@ -1984,11 +2001,12 @@ export type Pipelines_Stream_Cursor_Value_Input = {
|
|
|
1984
2001
|
id?: InputMaybe<Scalars['uuid']['input']>;
|
|
1985
2002
|
input_schema?: InputMaybe<Scalars['jsonb']['input']>;
|
|
1986
2003
|
is_active?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2004
|
+
models?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1987
2005
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
1988
2006
|
output_schema?: InputMaybe<Scalars['jsonb']['input']>;
|
|
1989
2007
|
preview_url?: InputMaybe<Scalars['String']['input']>;
|
|
1990
2008
|
pricing?: InputMaybe<Scalars['jsonb']['input']>;
|
|
1991
|
-
|
|
2009
|
+
providers?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1992
2010
|
seo_content?: InputMaybe<Scalars['String']['input']>;
|
|
1993
2011
|
seo_faq?: InputMaybe<Scalars['jsonb']['input']>;
|
|
1994
2012
|
slug?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2320,6 +2338,8 @@ export type Query_Root = {
|
|
|
2320
2338
|
credit_packs_by_pk?: Maybe<Credit_Packs>;
|
|
2321
2339
|
/** Get currently authenticated user from JWT claims */
|
|
2322
2340
|
current_user: Current_User_Output;
|
|
2341
|
+
/** Read-only credit cost preview for a pipeline+input — used by CLI --estimate and FE cost previews */
|
|
2342
|
+
estimate_pipeline_cost?: Maybe<Estimate_Pipeline_Cost_Output>;
|
|
2323
2343
|
/** fetch data from the table: "executions_visibility" */
|
|
2324
2344
|
executions_visibility: Array<Executions_Visibility>;
|
|
2325
2345
|
/** Get user credit balance from TigerBeetle */
|
|
@@ -2418,6 +2438,10 @@ export type Query_RootCredit_PacksArgs = {
|
|
|
2418
2438
|
export type Query_RootCredit_Packs_By_PkArgs = {
|
|
2419
2439
|
id: Scalars['uuid']['input'];
|
|
2420
2440
|
};
|
|
2441
|
+
export type Query_RootEstimate_Pipeline_CostArgs = {
|
|
2442
|
+
input: Scalars['jsonb']['input'];
|
|
2443
|
+
pipeline_slug: Scalars['String']['input'];
|
|
2444
|
+
};
|
|
2421
2445
|
export type Query_RootExecutions_VisibilityArgs = {
|
|
2422
2446
|
distinct_on?: InputMaybe<Array<Executions_Visibility_Select_Column>>;
|
|
2423
2447
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -3492,6 +3516,11 @@ export type GetCreditHistoryQuery = {
|
|
|
3492
3516
|
amount: number;
|
|
3493
3517
|
description: string;
|
|
3494
3518
|
created_at: string;
|
|
3519
|
+
pipeline_run_id?: string | null;
|
|
3520
|
+
pipeline_slug?: string | null;
|
|
3521
|
+
pipeline_name?: string | null;
|
|
3522
|
+
status?: string | null;
|
|
3523
|
+
reservation_mc?: number | null;
|
|
3495
3524
|
}>;
|
|
3496
3525
|
};
|
|
3497
3526
|
export type GetNotificationsQueryVariables = Exact<{
|
|
@@ -3553,7 +3582,8 @@ export type GetPipelinesQuery = {
|
|
|
3553
3582
|
category: string;
|
|
3554
3583
|
icon_url?: string | null;
|
|
3555
3584
|
preview_url?: string | null;
|
|
3556
|
-
|
|
3585
|
+
providers: Array<string>;
|
|
3586
|
+
models: Array<string>;
|
|
3557
3587
|
input_schema: any;
|
|
3558
3588
|
ui_schema: any;
|
|
3559
3589
|
output_schema: any;
|
|
@@ -3565,6 +3595,54 @@ export type GetPipelinesQuery = {
|
|
|
3565
3595
|
cancellable: boolean;
|
|
3566
3596
|
}>;
|
|
3567
3597
|
};
|
|
3598
|
+
export type GetPipelinesListQueryVariables = Exact<{
|
|
3599
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3600
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
3601
|
+
}>;
|
|
3602
|
+
export type GetPipelinesListQuery = {
|
|
3603
|
+
__typename?: 'query_root';
|
|
3604
|
+
pipelines: Array<{
|
|
3605
|
+
__typename?: 'pipelines';
|
|
3606
|
+
id: any;
|
|
3607
|
+
slug: string;
|
|
3608
|
+
name: string;
|
|
3609
|
+
description?: string | null;
|
|
3610
|
+
category: string;
|
|
3611
|
+
icon_url?: string | null;
|
|
3612
|
+
preview_url?: string | null;
|
|
3613
|
+
providers: Array<string>;
|
|
3614
|
+
models: Array<string>;
|
|
3615
|
+
tags: Array<string>;
|
|
3616
|
+
hints: any;
|
|
3617
|
+
pricing: any;
|
|
3618
|
+
cancellable: boolean;
|
|
3619
|
+
}>;
|
|
3620
|
+
};
|
|
3621
|
+
export type GetPipelinesPricingQueryVariables = Exact<{
|
|
3622
|
+
slugs: Array<Scalars['String']['input']> | Scalars['String']['input'];
|
|
3623
|
+
}>;
|
|
3624
|
+
export type GetPipelinesPricingQuery = {
|
|
3625
|
+
__typename?: 'query_root';
|
|
3626
|
+
pipelines: Array<{
|
|
3627
|
+
__typename?: 'pipelines';
|
|
3628
|
+
slug: string;
|
|
3629
|
+
pricing: any;
|
|
3630
|
+
}>;
|
|
3631
|
+
};
|
|
3632
|
+
export type EstimatePipelineCostQueryVariables = Exact<{
|
|
3633
|
+
pipeline_slug: Scalars['String']['input'];
|
|
3634
|
+
input: Scalars['jsonb']['input'];
|
|
3635
|
+
}>;
|
|
3636
|
+
export type EstimatePipelineCostQuery = {
|
|
3637
|
+
__typename?: 'query_root';
|
|
3638
|
+
estimate_pipeline_cost?: {
|
|
3639
|
+
__typename?: 'estimate_pipeline_cost_output';
|
|
3640
|
+
pipeline_slug: string;
|
|
3641
|
+
reservation_mc: number;
|
|
3642
|
+
estimated_mc: number;
|
|
3643
|
+
is_metered: boolean;
|
|
3644
|
+
} | null;
|
|
3645
|
+
};
|
|
3568
3646
|
export type RunPipelineMutationVariables = Exact<{
|
|
3569
3647
|
pipeline_slug: Scalars['String']['input'];
|
|
3570
3648
|
input: Scalars['jsonb']['input'];
|
|
@@ -3609,6 +3687,7 @@ export type GetPipelineRunQuery = {
|
|
|
3609
3687
|
output_schema: any;
|
|
3610
3688
|
input_schema: any;
|
|
3611
3689
|
ui_schema: any;
|
|
3690
|
+
cancellable: boolean;
|
|
3612
3691
|
};
|
|
3613
3692
|
assets: Array<{
|
|
3614
3693
|
__typename?: 'assets';
|
|
@@ -3650,6 +3729,7 @@ export type GetPipelineRunsQuery = {
|
|
|
3650
3729
|
output_schema: any;
|
|
3651
3730
|
input_schema: any;
|
|
3652
3731
|
ui_schema: any;
|
|
3732
|
+
cancellable: boolean;
|
|
3653
3733
|
};
|
|
3654
3734
|
workflow_execution?: {
|
|
3655
3735
|
__typename?: 'executions_visibility';
|
|
@@ -3701,6 +3781,7 @@ export type GetPipelineRunsBySlugQuery = {
|
|
|
3701
3781
|
output_schema: any;
|
|
3702
3782
|
input_schema: any;
|
|
3703
3783
|
ui_schema: any;
|
|
3784
|
+
cancellable: boolean;
|
|
3704
3785
|
};
|
|
3705
3786
|
assets: Array<{
|
|
3706
3787
|
__typename?: 'assets';
|
|
@@ -3738,6 +3819,7 @@ export type GetActivePipelineRunsQuery = {
|
|
|
3738
3819
|
__typename?: 'pipelines';
|
|
3739
3820
|
name: string;
|
|
3740
3821
|
slug: string;
|
|
3822
|
+
cancellable: boolean;
|
|
3741
3823
|
};
|
|
3742
3824
|
}>;
|
|
3743
3825
|
active_count: {
|
|
@@ -3845,6 +3927,7 @@ export type WatchPipelineRunSubscription = {
|
|
|
3845
3927
|
output_schema: any;
|
|
3846
3928
|
input_schema: any;
|
|
3847
3929
|
ui_schema: any;
|
|
3930
|
+
cancellable: boolean;
|
|
3848
3931
|
};
|
|
3849
3932
|
assets: Array<{
|
|
3850
3933
|
__typename?: 'assets';
|
|
@@ -3984,6 +4067,9 @@ export declare const GetNotificationsDocument: DocumentNode;
|
|
|
3984
4067
|
export declare const MarkNotificationReadDocument: DocumentNode;
|
|
3985
4068
|
export declare const MarkAllNotificationsReadDocument: DocumentNode;
|
|
3986
4069
|
export declare const GetPipelinesDocument: DocumentNode;
|
|
4070
|
+
export declare const GetPipelinesListDocument: DocumentNode;
|
|
4071
|
+
export declare const GetPipelinesPricingDocument: DocumentNode;
|
|
4072
|
+
export declare const EstimatePipelineCostDocument: DocumentNode;
|
|
3987
4073
|
export declare const RunPipelineDocument: DocumentNode;
|
|
3988
4074
|
export declare const CancelPipelineRunDocument: DocumentNode;
|
|
3989
4075
|
export declare const GetPipelineRunDocument: DocumentNode;
|
|
@@ -4041,6 +4127,9 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
4041
4127
|
MarkNotificationRead(variables: MarkNotificationReadMutationVariables, options?: C): Promise<MarkNotificationReadMutation>;
|
|
4042
4128
|
MarkAllNotificationsRead(variables?: MarkAllNotificationsReadMutationVariables, options?: C): Promise<MarkAllNotificationsReadMutation>;
|
|
4043
4129
|
GetPipelines(variables?: GetPipelinesQueryVariables, options?: C): Promise<GetPipelinesQuery>;
|
|
4130
|
+
GetPipelinesList(variables?: GetPipelinesListQueryVariables, options?: C): Promise<GetPipelinesListQuery>;
|
|
4131
|
+
GetPipelinesPricing(variables: GetPipelinesPricingQueryVariables, options?: C): Promise<GetPipelinesPricingQuery>;
|
|
4132
|
+
EstimatePipelineCost(variables: EstimatePipelineCostQueryVariables, options?: C): Promise<EstimatePipelineCostQuery>;
|
|
4044
4133
|
RunPipeline(variables: RunPipelineMutationVariables, options?: C): Promise<RunPipelineMutation>;
|
|
4045
4134
|
CancelPipelineRun(variables: CancelPipelineRunMutationVariables, options?: C): Promise<CancelPipelineRunMutation>;
|
|
4046
4135
|
GetPipelineRun(variables: GetPipelineRunQueryVariables, options?: C): Promise<GetPipelineRunQuery>;
|
package/dist/generated/sdk.js
CHANGED
|
@@ -213,6 +213,8 @@ export var Pipelines_Select_Column;
|
|
|
213
213
|
/** column name */
|
|
214
214
|
Pipelines_Select_Column["IsActive"] = "is_active";
|
|
215
215
|
/** column name */
|
|
216
|
+
Pipelines_Select_Column["Models"] = "models";
|
|
217
|
+
/** column name */
|
|
216
218
|
Pipelines_Select_Column["Name"] = "name";
|
|
217
219
|
/** column name */
|
|
218
220
|
Pipelines_Select_Column["OutputSchema"] = "output_schema";
|
|
@@ -221,7 +223,7 @@ export var Pipelines_Select_Column;
|
|
|
221
223
|
/** column name */
|
|
222
224
|
Pipelines_Select_Column["Pricing"] = "pricing";
|
|
223
225
|
/** column name */
|
|
224
|
-
Pipelines_Select_Column["
|
|
226
|
+
Pipelines_Select_Column["Providers"] = "providers";
|
|
225
227
|
/** column name */
|
|
226
228
|
Pipelines_Select_Column["SeoContent"] = "seo_content";
|
|
227
229
|
/** column name */
|
|
@@ -678,6 +680,11 @@ export const GetCreditHistoryDocument = gql `
|
|
|
678
680
|
amount
|
|
679
681
|
description
|
|
680
682
|
created_at
|
|
683
|
+
pipeline_run_id
|
|
684
|
+
pipeline_slug
|
|
685
|
+
pipeline_name
|
|
686
|
+
status
|
|
687
|
+
reservation_mc
|
|
681
688
|
}
|
|
682
689
|
}
|
|
683
690
|
`;
|
|
@@ -724,7 +731,8 @@ export const GetPipelinesDocument = gql `
|
|
|
724
731
|
category
|
|
725
732
|
icon_url
|
|
726
733
|
preview_url
|
|
727
|
-
|
|
734
|
+
providers
|
|
735
|
+
models
|
|
728
736
|
input_schema
|
|
729
737
|
ui_schema
|
|
730
738
|
output_schema
|
|
@@ -737,6 +745,48 @@ export const GetPipelinesDocument = gql `
|
|
|
737
745
|
}
|
|
738
746
|
}
|
|
739
747
|
`;
|
|
748
|
+
export const GetPipelinesListDocument = gql `
|
|
749
|
+
query GetPipelinesList($limit: Int = 20, $offset: Int = 0) {
|
|
750
|
+
pipelines(
|
|
751
|
+
where: {is_active: {_eq: true}}
|
|
752
|
+
order_by: {sort_order: asc}
|
|
753
|
+
limit: $limit
|
|
754
|
+
offset: $offset
|
|
755
|
+
) {
|
|
756
|
+
id
|
|
757
|
+
slug
|
|
758
|
+
name
|
|
759
|
+
description
|
|
760
|
+
category
|
|
761
|
+
icon_url
|
|
762
|
+
preview_url
|
|
763
|
+
providers
|
|
764
|
+
models
|
|
765
|
+
tags
|
|
766
|
+
hints
|
|
767
|
+
pricing
|
|
768
|
+
cancellable
|
|
769
|
+
}
|
|
770
|
+
}
|
|
771
|
+
`;
|
|
772
|
+
export const GetPipelinesPricingDocument = gql `
|
|
773
|
+
query GetPipelinesPricing($slugs: [String!]!) {
|
|
774
|
+
pipelines(where: {slug: {_in: $slugs}}) {
|
|
775
|
+
slug
|
|
776
|
+
pricing
|
|
777
|
+
}
|
|
778
|
+
}
|
|
779
|
+
`;
|
|
780
|
+
export const EstimatePipelineCostDocument = gql `
|
|
781
|
+
query EstimatePipelineCost($pipeline_slug: String!, $input: jsonb!) {
|
|
782
|
+
estimate_pipeline_cost(pipeline_slug: $pipeline_slug, input: $input) {
|
|
783
|
+
pipeline_slug
|
|
784
|
+
reservation_mc
|
|
785
|
+
estimated_mc
|
|
786
|
+
is_metered
|
|
787
|
+
}
|
|
788
|
+
}
|
|
789
|
+
`;
|
|
740
790
|
export const RunPipelineDocument = gql `
|
|
741
791
|
mutation RunPipeline($pipeline_slug: String!, $input: jsonb!) {
|
|
742
792
|
run_pipeline(pipeline_slug: $pipeline_slug, input: $input) {
|
|
@@ -769,6 +819,7 @@ export const GetPipelineRunDocument = gql `
|
|
|
769
819
|
output_schema
|
|
770
820
|
input_schema
|
|
771
821
|
ui_schema
|
|
822
|
+
cancellable
|
|
772
823
|
}
|
|
773
824
|
assets {
|
|
774
825
|
id
|
|
@@ -800,6 +851,7 @@ export const GetPipelineRunsDocument = gql `
|
|
|
800
851
|
output_schema
|
|
801
852
|
input_schema
|
|
802
853
|
ui_schema
|
|
854
|
+
cancellable
|
|
803
855
|
}
|
|
804
856
|
status
|
|
805
857
|
input
|
|
@@ -847,6 +899,7 @@ export const GetPipelineRunsBySlugDocument = gql `
|
|
|
847
899
|
output_schema
|
|
848
900
|
input_schema
|
|
849
901
|
ui_schema
|
|
902
|
+
cancellable
|
|
850
903
|
}
|
|
851
904
|
input
|
|
852
905
|
output
|
|
@@ -886,6 +939,7 @@ export const GetActivePipelineRunsDocument = gql `
|
|
|
886
939
|
pipeline {
|
|
887
940
|
name
|
|
888
941
|
slug
|
|
942
|
+
cancellable
|
|
889
943
|
}
|
|
890
944
|
}
|
|
891
945
|
active_count: pipeline_runs_aggregate(
|
|
@@ -976,6 +1030,7 @@ export const WatchPipelineRunDocument = gql `
|
|
|
976
1030
|
output_schema
|
|
977
1031
|
input_schema
|
|
978
1032
|
ui_schema
|
|
1033
|
+
cancellable
|
|
979
1034
|
}
|
|
980
1035
|
assets {
|
|
981
1036
|
id
|
|
@@ -1180,6 +1235,15 @@ export function getSdk(requester) {
|
|
|
1180
1235
|
GetPipelines(variables, options) {
|
|
1181
1236
|
return requester(GetPipelinesDocument, variables, options);
|
|
1182
1237
|
},
|
|
1238
|
+
GetPipelinesList(variables, options) {
|
|
1239
|
+
return requester(GetPipelinesListDocument, variables, options);
|
|
1240
|
+
},
|
|
1241
|
+
GetPipelinesPricing(variables, options) {
|
|
1242
|
+
return requester(GetPipelinesPricingDocument, variables, options);
|
|
1243
|
+
},
|
|
1244
|
+
EstimatePipelineCost(variables, options) {
|
|
1245
|
+
return requester(EstimatePipelineCostDocument, variables, options);
|
|
1246
|
+
},
|
|
1183
1247
|
RunPipeline(variables, options) {
|
|
1184
1248
|
return requester(RunPipelineDocument, variables, options);
|
|
1185
1249
|
},
|