@walkeros/cli 3.0.0 → 3.0.2
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/CHANGELOG.md +16 -0
- package/dist/cli.js +75 -1
- package/dist/index.d.ts +113 -86
- package/dist/index.js +78 -2
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -698,7 +698,7 @@ declare function listFlows(options?: ListFlowsOptions): Promise<{
|
|
|
698
698
|
id: string;
|
|
699
699
|
name: string;
|
|
700
700
|
summary?: string | undefined;
|
|
701
|
-
|
|
701
|
+
settings?: {
|
|
702
702
|
id: string;
|
|
703
703
|
name: string;
|
|
704
704
|
platform: "web" | "server";
|
|
@@ -718,8 +718,9 @@ declare function getFlow(options: {
|
|
|
718
718
|
}): Promise<{
|
|
719
719
|
id: string;
|
|
720
720
|
name: string;
|
|
721
|
-
|
|
722
|
-
|
|
721
|
+
config: {
|
|
722
|
+
[x: string]: unknown;
|
|
723
|
+
version: 3;
|
|
723
724
|
$schema?: string | undefined;
|
|
724
725
|
include?: string[] | undefined;
|
|
725
726
|
variables?: {
|
|
@@ -735,7 +736,7 @@ declare function getFlow(options: {
|
|
|
735
736
|
[x: string]: unknown;
|
|
736
737
|
} | undefined;
|
|
737
738
|
};
|
|
738
|
-
|
|
739
|
+
settings?: {
|
|
739
740
|
id: string;
|
|
740
741
|
name: string;
|
|
741
742
|
platform: "web" | "server";
|
|
@@ -763,8 +764,9 @@ declare function createFlow(options: {
|
|
|
763
764
|
}): Promise<{
|
|
764
765
|
id: string;
|
|
765
766
|
name: string;
|
|
766
|
-
|
|
767
|
-
|
|
767
|
+
config: {
|
|
768
|
+
[x: string]: unknown;
|
|
769
|
+
version: 3;
|
|
768
770
|
$schema?: string | undefined;
|
|
769
771
|
include?: string[] | undefined;
|
|
770
772
|
variables?: {
|
|
@@ -780,7 +782,7 @@ declare function createFlow(options: {
|
|
|
780
782
|
[x: string]: unknown;
|
|
781
783
|
} | undefined;
|
|
782
784
|
};
|
|
783
|
-
|
|
785
|
+
settings?: {
|
|
784
786
|
id: string;
|
|
785
787
|
name: string;
|
|
786
788
|
platform: "web" | "server";
|
|
@@ -800,8 +802,9 @@ declare function updateFlow(options: {
|
|
|
800
802
|
}): Promise<{
|
|
801
803
|
id: string;
|
|
802
804
|
name: string;
|
|
803
|
-
|
|
804
|
-
|
|
805
|
+
config: {
|
|
806
|
+
[x: string]: unknown;
|
|
807
|
+
version: 3;
|
|
805
808
|
$schema?: string | undefined;
|
|
806
809
|
include?: string[] | undefined;
|
|
807
810
|
variables?: {
|
|
@@ -833,8 +836,9 @@ declare function duplicateFlow(options: {
|
|
|
833
836
|
}): Promise<{
|
|
834
837
|
id: string;
|
|
835
838
|
name: string;
|
|
836
|
-
|
|
837
|
-
|
|
839
|
+
config: {
|
|
840
|
+
[x: string]: unknown;
|
|
841
|
+
version: 3;
|
|
838
842
|
$schema?: string | undefined;
|
|
839
843
|
include?: string[] | undefined;
|
|
840
844
|
variables?: {
|
|
@@ -850,7 +854,7 @@ declare function duplicateFlow(options: {
|
|
|
850
854
|
[x: string]: unknown;
|
|
851
855
|
} | undefined;
|
|
852
856
|
};
|
|
853
|
-
|
|
857
|
+
settings?: {
|
|
854
858
|
id: string;
|
|
855
859
|
name: string;
|
|
856
860
|
platform: "web" | "server";
|
|
@@ -945,6 +949,12 @@ declare function createDeployCommand(config: string | undefined, options: Deploy
|
|
|
945
949
|
flow?: string;
|
|
946
950
|
}): Promise<void>;
|
|
947
951
|
|
|
952
|
+
interface FeedbackOptions {
|
|
953
|
+
anonymous?: boolean;
|
|
954
|
+
}
|
|
955
|
+
declare function feedback(text: string, options?: FeedbackOptions): Promise<void>;
|
|
956
|
+
declare function feedbackCommand(text: string): Promise<void>;
|
|
957
|
+
|
|
948
958
|
/**
|
|
949
959
|
* This file was auto-generated by openapi-typescript.
|
|
950
960
|
* Do not make direct changes to the file.
|
|
@@ -2071,7 +2081,7 @@ interface paths {
|
|
|
2071
2081
|
get: {
|
|
2072
2082
|
parameters: {
|
|
2073
2083
|
query?: {
|
|
2074
|
-
/** @description Comma-separated dot-paths to select specific fields (e.g., "
|
|
2084
|
+
/** @description Comma-separated dot-paths to select specific fields (e.g., "config.variables,config.flows.web.sources"). Always includes id, createdAt, updatedAt. */
|
|
2075
2085
|
fields?: string;
|
|
2076
2086
|
};
|
|
2077
2087
|
header?: never;
|
|
@@ -2413,7 +2423,7 @@ interface paths {
|
|
|
2413
2423
|
put?: never;
|
|
2414
2424
|
/**
|
|
2415
2425
|
* Start deployment
|
|
2416
|
-
* @description Start a new deployment for a flow. Returns 400
|
|
2426
|
+
* @description Start a new deployment for a flow. Returns 400 AMBIGUOUS_SETTINGS if the flow has multiple named settings — use the per-settings deploy endpoint instead.
|
|
2417
2427
|
*/
|
|
2418
2428
|
post: {
|
|
2419
2429
|
parameters: {
|
|
@@ -2682,7 +2692,7 @@ interface paths {
|
|
|
2682
2692
|
patch?: never;
|
|
2683
2693
|
trace?: never;
|
|
2684
2694
|
};
|
|
2685
|
-
'/api/projects/{projectId}/flows/{flowId}/
|
|
2695
|
+
'/api/projects/{projectId}/flows/{flowId}/settings': {
|
|
2686
2696
|
parameters: {
|
|
2687
2697
|
query?: never;
|
|
2688
2698
|
header?: never;
|
|
@@ -2690,8 +2700,8 @@ interface paths {
|
|
|
2690
2700
|
cookie?: never;
|
|
2691
2701
|
};
|
|
2692
2702
|
/**
|
|
2693
|
-
* List
|
|
2694
|
-
* @description List active named
|
|
2703
|
+
* List settings
|
|
2704
|
+
* @description List active named settings for a flow.
|
|
2695
2705
|
*/
|
|
2696
2706
|
get: {
|
|
2697
2707
|
parameters: {
|
|
@@ -2705,13 +2715,13 @@ interface paths {
|
|
|
2705
2715
|
};
|
|
2706
2716
|
requestBody?: never;
|
|
2707
2717
|
responses: {
|
|
2708
|
-
/** @description List of
|
|
2718
|
+
/** @description List of settings */
|
|
2709
2719
|
200: {
|
|
2710
2720
|
headers: {
|
|
2711
2721
|
[name: string]: unknown;
|
|
2712
2722
|
};
|
|
2713
2723
|
content: {
|
|
2714
|
-
'application/json': components['schemas']['
|
|
2724
|
+
'application/json': components['schemas']['ListSettingsResponse'];
|
|
2715
2725
|
};
|
|
2716
2726
|
};
|
|
2717
2727
|
/** @description Unauthorized */
|
|
@@ -2742,7 +2752,7 @@ interface paths {
|
|
|
2742
2752
|
patch?: never;
|
|
2743
2753
|
trace?: never;
|
|
2744
2754
|
};
|
|
2745
|
-
'/api/projects/{projectId}/flows/{flowId}/
|
|
2755
|
+
'/api/projects/{projectId}/flows/{flowId}/settings/{settingsId}': {
|
|
2746
2756
|
parameters: {
|
|
2747
2757
|
query?: never;
|
|
2748
2758
|
header?: never;
|
|
@@ -2750,8 +2760,8 @@ interface paths {
|
|
|
2750
2760
|
cookie?: never;
|
|
2751
2761
|
};
|
|
2752
2762
|
/**
|
|
2753
|
-
* Get
|
|
2754
|
-
* @description Get a single
|
|
2763
|
+
* Get settings
|
|
2764
|
+
* @description Get a single settings entry with its latest deployment.
|
|
2755
2765
|
*/
|
|
2756
2766
|
get: {
|
|
2757
2767
|
parameters: {
|
|
@@ -2760,19 +2770,19 @@ interface paths {
|
|
|
2760
2770
|
path: {
|
|
2761
2771
|
projectId: string;
|
|
2762
2772
|
flowId: string;
|
|
2763
|
-
|
|
2773
|
+
settingsId: string;
|
|
2764
2774
|
};
|
|
2765
2775
|
cookie?: never;
|
|
2766
2776
|
};
|
|
2767
2777
|
requestBody?: never;
|
|
2768
2778
|
responses: {
|
|
2769
|
-
/** @description
|
|
2779
|
+
/** @description Settings details with deployment */
|
|
2770
2780
|
200: {
|
|
2771
2781
|
headers: {
|
|
2772
2782
|
[name: string]: unknown;
|
|
2773
2783
|
};
|
|
2774
2784
|
content: {
|
|
2775
|
-
'application/json': components['schemas']['
|
|
2785
|
+
'application/json': components['schemas']['FlowSettingsDetail'];
|
|
2776
2786
|
};
|
|
2777
2787
|
};
|
|
2778
2788
|
/** @description Unauthorized */
|
|
@@ -2803,7 +2813,7 @@ interface paths {
|
|
|
2803
2813
|
patch?: never;
|
|
2804
2814
|
trace?: never;
|
|
2805
2815
|
};
|
|
2806
|
-
'/api/projects/{projectId}/flows/{flowId}/
|
|
2816
|
+
'/api/projects/{projectId}/flows/{flowId}/settings/{settingsId}/json': {
|
|
2807
2817
|
parameters: {
|
|
2808
2818
|
query?: never;
|
|
2809
2819
|
header?: never;
|
|
@@ -2811,8 +2821,8 @@ interface paths {
|
|
|
2811
2821
|
cookie?: never;
|
|
2812
2822
|
};
|
|
2813
2823
|
/**
|
|
2814
|
-
* Download
|
|
2815
|
-
* @description Download the named flow
|
|
2824
|
+
* Download settings JSON
|
|
2825
|
+
* @description Download the named flow settings as a self-contained Config JSON file. Includes parent variables and definitions.
|
|
2816
2826
|
*/
|
|
2817
2827
|
get: {
|
|
2818
2828
|
parameters: {
|
|
@@ -2821,19 +2831,19 @@ interface paths {
|
|
|
2821
2831
|
path: {
|
|
2822
2832
|
projectId: string;
|
|
2823
2833
|
flowId: string;
|
|
2824
|
-
|
|
2834
|
+
settingsId: string;
|
|
2825
2835
|
};
|
|
2826
2836
|
cookie?: never;
|
|
2827
2837
|
};
|
|
2828
2838
|
requestBody?: never;
|
|
2829
2839
|
responses: {
|
|
2830
|
-
/** @description Flow
|
|
2840
|
+
/** @description Flow Config JSON file */
|
|
2831
2841
|
200: {
|
|
2832
2842
|
headers: {
|
|
2833
2843
|
[name: string]: unknown;
|
|
2834
2844
|
};
|
|
2835
2845
|
content: {
|
|
2836
|
-
'application/json': components['schemas']['
|
|
2846
|
+
'application/json': components['schemas']['FlowConfig'];
|
|
2837
2847
|
};
|
|
2838
2848
|
};
|
|
2839
2849
|
/** @description Unauthorized */
|
|
@@ -2864,7 +2874,7 @@ interface paths {
|
|
|
2864
2874
|
patch?: never;
|
|
2865
2875
|
trace?: never;
|
|
2866
2876
|
};
|
|
2867
|
-
'/api/projects/{projectId}/flows/{flowId}/
|
|
2877
|
+
'/api/projects/{projectId}/flows/{flowId}/settings/{settingsId}/bundle': {
|
|
2868
2878
|
parameters: {
|
|
2869
2879
|
query?: never;
|
|
2870
2880
|
header?: never;
|
|
@@ -2872,8 +2882,8 @@ interface paths {
|
|
|
2872
2882
|
cookie?: never;
|
|
2873
2883
|
};
|
|
2874
2884
|
/**
|
|
2875
|
-
* Download
|
|
2876
|
-
* @description Download the compiled JS/MJS for the
|
|
2885
|
+
* Download settings bundle
|
|
2886
|
+
* @description Download the compiled JS/MJS for the settings' latest deployment. Redirects to a presigned download URL.
|
|
2877
2887
|
*/
|
|
2878
2888
|
get: {
|
|
2879
2889
|
parameters: {
|
|
@@ -2882,7 +2892,7 @@ interface paths {
|
|
|
2882
2892
|
path: {
|
|
2883
2893
|
projectId: string;
|
|
2884
2894
|
flowId: string;
|
|
2885
|
-
|
|
2895
|
+
settingsId: string;
|
|
2886
2896
|
};
|
|
2887
2897
|
cookie?: never;
|
|
2888
2898
|
};
|
|
@@ -2932,7 +2942,7 @@ interface paths {
|
|
|
2932
2942
|
patch?: never;
|
|
2933
2943
|
trace?: never;
|
|
2934
2944
|
};
|
|
2935
|
-
'/api/projects/{projectId}/flows/{flowId}/
|
|
2945
|
+
'/api/projects/{projectId}/flows/{flowId}/settings/{settingsId}/deploy': {
|
|
2936
2946
|
parameters: {
|
|
2937
2947
|
query?: never;
|
|
2938
2948
|
header?: never;
|
|
@@ -2940,8 +2950,8 @@ interface paths {
|
|
|
2940
2950
|
cookie?: never;
|
|
2941
2951
|
};
|
|
2942
2952
|
/**
|
|
2943
|
-
* Get latest
|
|
2944
|
-
* @description Get the latest deployment for a specific
|
|
2953
|
+
* Get latest settings deployment
|
|
2954
|
+
* @description Get the latest deployment for a specific settings entry.
|
|
2945
2955
|
*/
|
|
2946
2956
|
get: {
|
|
2947
2957
|
parameters: {
|
|
@@ -2950,7 +2960,7 @@ interface paths {
|
|
|
2950
2960
|
path: {
|
|
2951
2961
|
projectId: string;
|
|
2952
2962
|
flowId: string;
|
|
2953
|
-
|
|
2963
|
+
settingsId: string;
|
|
2954
2964
|
};
|
|
2955
2965
|
cookie?: never;
|
|
2956
2966
|
};
|
|
@@ -2962,7 +2972,7 @@ interface paths {
|
|
|
2962
2972
|
[name: string]: unknown;
|
|
2963
2973
|
};
|
|
2964
2974
|
content: {
|
|
2965
|
-
'application/json': components['schemas']['
|
|
2975
|
+
'application/json': components['schemas']['SettingsDeploymentResponse'];
|
|
2966
2976
|
};
|
|
2967
2977
|
};
|
|
2968
2978
|
/** @description Unauthorized */
|
|
@@ -2987,8 +2997,8 @@ interface paths {
|
|
|
2987
2997
|
};
|
|
2988
2998
|
put?: never;
|
|
2989
2999
|
/**
|
|
2990
|
-
* Deploy
|
|
2991
|
-
* @description Start a deployment for a specific
|
|
3000
|
+
* Deploy settings
|
|
3001
|
+
* @description Start a deployment for a specific settings entry. Detects platform from the settings.
|
|
2992
3002
|
*/
|
|
2993
3003
|
post: {
|
|
2994
3004
|
parameters: {
|
|
@@ -2997,7 +3007,7 @@ interface paths {
|
|
|
2997
3007
|
path: {
|
|
2998
3008
|
projectId: string;
|
|
2999
3009
|
flowId: string;
|
|
3000
|
-
|
|
3010
|
+
settingsId: string;
|
|
3001
3011
|
};
|
|
3002
3012
|
cookie?: never;
|
|
3003
3013
|
};
|
|
@@ -3009,7 +3019,7 @@ interface paths {
|
|
|
3009
3019
|
[name: string]: unknown;
|
|
3010
3020
|
};
|
|
3011
3021
|
content: {
|
|
3012
|
-
'application/json': components['schemas']['
|
|
3022
|
+
'application/json': components['schemas']['DeploySettingsResponse'];
|
|
3013
3023
|
};
|
|
3014
3024
|
};
|
|
3015
3025
|
/** @description Unauthorized */
|
|
@@ -3039,7 +3049,7 @@ interface paths {
|
|
|
3039
3049
|
'application/json': components['schemas']['ErrorResponse'];
|
|
3040
3050
|
};
|
|
3041
3051
|
};
|
|
3042
|
-
/** @description
|
|
3052
|
+
/** @description Settings orphaned */
|
|
3043
3053
|
422: {
|
|
3044
3054
|
headers: {
|
|
3045
3055
|
[name: string]: unknown;
|
|
@@ -3065,7 +3075,7 @@ interface paths {
|
|
|
3065
3075
|
patch?: never;
|
|
3066
3076
|
trace?: never;
|
|
3067
3077
|
};
|
|
3068
|
-
'/api/projects/{projectId}/flows/{flowId}/
|
|
3078
|
+
'/api/projects/{projectId}/flows/{flowId}/settings/{settingsId}/deployments/{deploymentId}': {
|
|
3069
3079
|
parameters: {
|
|
3070
3080
|
query?: never;
|
|
3071
3081
|
header?: never;
|
|
@@ -3073,8 +3083,8 @@ interface paths {
|
|
|
3073
3083
|
cookie?: never;
|
|
3074
3084
|
};
|
|
3075
3085
|
/**
|
|
3076
|
-
* Get
|
|
3077
|
-
* @description Get a specific deployment by ID, scoped to a
|
|
3086
|
+
* Get settings deployment detail
|
|
3087
|
+
* @description Get a specific deployment by ID, scoped to a settings entry.
|
|
3078
3088
|
*/
|
|
3079
3089
|
get: {
|
|
3080
3090
|
parameters: {
|
|
@@ -3083,7 +3093,7 @@ interface paths {
|
|
|
3083
3093
|
path: {
|
|
3084
3094
|
projectId: string;
|
|
3085
3095
|
flowId: string;
|
|
3086
|
-
|
|
3096
|
+
settingsId: string;
|
|
3087
3097
|
deploymentId: string;
|
|
3088
3098
|
};
|
|
3089
3099
|
cookie?: never;
|
|
@@ -3096,7 +3106,7 @@ interface paths {
|
|
|
3096
3106
|
[name: string]: unknown;
|
|
3097
3107
|
};
|
|
3098
3108
|
content: {
|
|
3099
|
-
'application/json': components['schemas']['
|
|
3109
|
+
'application/json': components['schemas']['SettingsDeploymentDetailResponse'];
|
|
3100
3110
|
};
|
|
3101
3111
|
};
|
|
3102
3112
|
/** @description Unauthorized */
|
|
@@ -3127,7 +3137,7 @@ interface paths {
|
|
|
3127
3137
|
patch?: never;
|
|
3128
3138
|
trace?: never;
|
|
3129
3139
|
};
|
|
3130
|
-
'/api/projects/{projectId}/flows/{flowId}/
|
|
3140
|
+
'/api/projects/{projectId}/flows/{flowId}/settings/{settingsId}/deployments/{deploymentId}/advance': {
|
|
3131
3141
|
parameters: {
|
|
3132
3142
|
query?: never;
|
|
3133
3143
|
header?: never;
|
|
@@ -3137,8 +3147,8 @@ interface paths {
|
|
|
3137
3147
|
get?: never;
|
|
3138
3148
|
put?: never;
|
|
3139
3149
|
/**
|
|
3140
|
-
* Advance
|
|
3141
|
-
* @description Advance the deployment state machine for a per-
|
|
3150
|
+
* Advance settings deployment
|
|
3151
|
+
* @description Advance the deployment state machine for a per-settings deployment.
|
|
3142
3152
|
*/
|
|
3143
3153
|
post: {
|
|
3144
3154
|
parameters: {
|
|
@@ -3147,7 +3157,7 @@ interface paths {
|
|
|
3147
3157
|
path: {
|
|
3148
3158
|
projectId: string;
|
|
3149
3159
|
flowId: string;
|
|
3150
|
-
|
|
3160
|
+
settingsId: string;
|
|
3151
3161
|
deploymentId: string;
|
|
3152
3162
|
};
|
|
3153
3163
|
cookie?: never;
|
|
@@ -3160,7 +3170,7 @@ interface paths {
|
|
|
3160
3170
|
[name: string]: unknown;
|
|
3161
3171
|
};
|
|
3162
3172
|
content: {
|
|
3163
|
-
'application/json': components['schemas']['
|
|
3173
|
+
'application/json': components['schemas']['AdvanceSettingsDeploymentResponse'];
|
|
3164
3174
|
};
|
|
3165
3175
|
};
|
|
3166
3176
|
/** @description Unauthorized */
|
|
@@ -3605,12 +3615,12 @@ interface paths {
|
|
|
3605
3615
|
put?: never;
|
|
3606
3616
|
/**
|
|
3607
3617
|
* Trigger flow bundle
|
|
3608
|
-
* @description Start a bundle job for a project flow. For multi-
|
|
3618
|
+
* @description Start a bundle job for a project flow. For multi-settings flows, specify the named flow via ?flow= query parameter.
|
|
3609
3619
|
*/
|
|
3610
3620
|
post: {
|
|
3611
3621
|
parameters: {
|
|
3612
3622
|
query?: {
|
|
3613
|
-
/** @description Named flow to bundle (required for multi-
|
|
3623
|
+
/** @description Named flow to bundle (required for multi-settings flows) */
|
|
3614
3624
|
flow?: string;
|
|
3615
3625
|
};
|
|
3616
3626
|
header?: never;
|
|
@@ -3649,7 +3659,7 @@ interface paths {
|
|
|
3649
3659
|
'application/json': components['schemas']['ErrorResponse'];
|
|
3650
3660
|
};
|
|
3651
3661
|
};
|
|
3652
|
-
/** @description Flow selection required for multi-
|
|
3662
|
+
/** @description Flow selection required for multi-settings flows */
|
|
3653
3663
|
422: {
|
|
3654
3664
|
headers: {
|
|
3655
3665
|
[name: string]: unknown;
|
|
@@ -4291,9 +4301,9 @@ interface components {
|
|
|
4291
4301
|
};
|
|
4292
4302
|
};
|
|
4293
4303
|
};
|
|
4294
|
-
|
|
4304
|
+
FlowConfig: {
|
|
4295
4305
|
/** @enum {number} */
|
|
4296
|
-
version:
|
|
4306
|
+
version: 3;
|
|
4297
4307
|
$schema?: string;
|
|
4298
4308
|
include?: string[];
|
|
4299
4309
|
variables?: {
|
|
@@ -4308,14 +4318,16 @@ interface components {
|
|
|
4308
4318
|
contract?: {
|
|
4309
4319
|
[key: string]: unknown;
|
|
4310
4320
|
};
|
|
4321
|
+
} & {
|
|
4322
|
+
[key: string]: unknown;
|
|
4311
4323
|
};
|
|
4312
4324
|
Flow: {
|
|
4313
4325
|
/** @example flow_a1b2c3d4 */
|
|
4314
4326
|
id: string;
|
|
4315
4327
|
/** @example my-website-flow */
|
|
4316
4328
|
name: string;
|
|
4317
|
-
|
|
4318
|
-
|
|
4329
|
+
config: components['schemas']['FlowConfig'];
|
|
4330
|
+
settings?: components['schemas']['FlowSettingsSummary'][];
|
|
4319
4331
|
/**
|
|
4320
4332
|
* Format: date-time
|
|
4321
4333
|
* @example 2026-01-26T14:30:00.000Z
|
|
@@ -4329,7 +4341,7 @@ interface components {
|
|
|
4329
4341
|
/** Format: date-time */
|
|
4330
4342
|
deletedAt?: string | null;
|
|
4331
4343
|
};
|
|
4332
|
-
|
|
4344
|
+
FlowSettingsSummary: {
|
|
4333
4345
|
/** @example cfg_a1b2c3d4 */
|
|
4334
4346
|
id: string;
|
|
4335
4347
|
name: string;
|
|
@@ -4355,7 +4367,7 @@ interface components {
|
|
|
4355
4367
|
/** @example my-website-flow */
|
|
4356
4368
|
name: string;
|
|
4357
4369
|
summary?: string;
|
|
4358
|
-
|
|
4370
|
+
settings?: components['schemas']['FlowSettingsListItem'][];
|
|
4359
4371
|
/**
|
|
4360
4372
|
* Format: date-time
|
|
4361
4373
|
* @example 2026-01-26T14:30:00.000Z
|
|
@@ -4369,7 +4381,7 @@ interface components {
|
|
|
4369
4381
|
/** Format: date-time */
|
|
4370
4382
|
deletedAt: string | null;
|
|
4371
4383
|
};
|
|
4372
|
-
|
|
4384
|
+
FlowSettingsListItem: {
|
|
4373
4385
|
/** @example cfg_a1b2c3d4 */
|
|
4374
4386
|
id: string;
|
|
4375
4387
|
name: string;
|
|
@@ -4464,7 +4476,7 @@ interface components {
|
|
|
4464
4476
|
*/
|
|
4465
4477
|
revokedAt: string | null;
|
|
4466
4478
|
};
|
|
4467
|
-
|
|
4479
|
+
FlowSettingsDetail: {
|
|
4468
4480
|
/** @example cfg_a1b2c3d4 */
|
|
4469
4481
|
id: string;
|
|
4470
4482
|
name: string;
|
|
@@ -4505,10 +4517,10 @@ interface components {
|
|
|
4505
4517
|
*/
|
|
4506
4518
|
updatedAt: string;
|
|
4507
4519
|
};
|
|
4508
|
-
|
|
4520
|
+
DeploySettingsResponse: {
|
|
4509
4521
|
deploymentId: string;
|
|
4510
4522
|
/** @example cfg_a1b2c3d4 */
|
|
4511
|
-
|
|
4523
|
+
settingsId: string;
|
|
4512
4524
|
status: string;
|
|
4513
4525
|
};
|
|
4514
4526
|
FlowDetailResponse: {
|
|
@@ -4516,8 +4528,8 @@ interface components {
|
|
|
4516
4528
|
id: string;
|
|
4517
4529
|
/** @example my-website-flow */
|
|
4518
4530
|
name: string;
|
|
4519
|
-
|
|
4520
|
-
|
|
4531
|
+
config: components['schemas']['FlowConfig'];
|
|
4532
|
+
settings?: components['schemas']['FlowSettingsEnriched'][];
|
|
4521
4533
|
/**
|
|
4522
4534
|
* Format: date-time
|
|
4523
4535
|
* @example 2026-01-26T14:30:00.000Z
|
|
@@ -4531,7 +4543,7 @@ interface components {
|
|
|
4531
4543
|
/** Format: date-time */
|
|
4532
4544
|
deletedAt: string | null;
|
|
4533
4545
|
};
|
|
4534
|
-
|
|
4546
|
+
FlowSettingsEnriched: {
|
|
4535
4547
|
id: string;
|
|
4536
4548
|
name: string;
|
|
4537
4549
|
/** @enum {string} */
|
|
@@ -4566,7 +4578,7 @@ interface components {
|
|
|
4566
4578
|
id: string;
|
|
4567
4579
|
/** @example my-website-flow */
|
|
4568
4580
|
name: string;
|
|
4569
|
-
|
|
4581
|
+
config: components['schemas']['FlowConfig'];
|
|
4570
4582
|
/**
|
|
4571
4583
|
* Format: date-time
|
|
4572
4584
|
* @example 2026-01-26T14:30:00.000Z
|
|
@@ -4675,7 +4687,7 @@ interface components {
|
|
|
4675
4687
|
source: {
|
|
4676
4688
|
type: string;
|
|
4677
4689
|
flowId?: string;
|
|
4678
|
-
|
|
4690
|
+
flowSettingsId?: string;
|
|
4679
4691
|
configHash?: string;
|
|
4680
4692
|
};
|
|
4681
4693
|
/** Format: date-time */
|
|
@@ -4784,7 +4796,7 @@ interface components {
|
|
|
4784
4796
|
/** @enum {string} */
|
|
4785
4797
|
type: 'flow';
|
|
4786
4798
|
flowId: string;
|
|
4787
|
-
|
|
4799
|
+
flowSettingsName: string;
|
|
4788
4800
|
}
|
|
4789
4801
|
| {
|
|
4790
4802
|
/** @enum {string} */
|
|
@@ -4800,7 +4812,7 @@ interface components {
|
|
|
4800
4812
|
source: {
|
|
4801
4813
|
type: string;
|
|
4802
4814
|
flowId?: string;
|
|
4803
|
-
|
|
4815
|
+
flowSettingsId?: string;
|
|
4804
4816
|
configHash?: string;
|
|
4805
4817
|
};
|
|
4806
4818
|
bundlePath: string | null;
|
|
@@ -4923,12 +4935,12 @@ interface components {
|
|
|
4923
4935
|
CreateFlowRequest: {
|
|
4924
4936
|
/** @example my-website-flow */
|
|
4925
4937
|
name: string;
|
|
4926
|
-
|
|
4938
|
+
config?: components['schemas']['FlowConfig'];
|
|
4927
4939
|
};
|
|
4928
4940
|
UpdateFlowRequest: {
|
|
4929
4941
|
/** @example my-website-flow */
|
|
4930
4942
|
name?: string;
|
|
4931
|
-
|
|
4943
|
+
config?: components['schemas']['FlowConfig'];
|
|
4932
4944
|
};
|
|
4933
4945
|
DuplicateFlowRequest: {
|
|
4934
4946
|
/** @example my-website-flow */
|
|
@@ -4954,13 +4966,13 @@ interface components {
|
|
|
4954
4966
|
type: 'web' | 'server';
|
|
4955
4967
|
status: string;
|
|
4956
4968
|
};
|
|
4957
|
-
|
|
4958
|
-
|
|
4969
|
+
ListSettingsResponse: {
|
|
4970
|
+
settings: components['schemas']['FlowSettingsSummary'][];
|
|
4959
4971
|
};
|
|
4960
|
-
|
|
4972
|
+
SettingsDeploymentResponse: {
|
|
4961
4973
|
id: string;
|
|
4962
4974
|
flowId: string;
|
|
4963
|
-
|
|
4975
|
+
settingsId: string;
|
|
4964
4976
|
/** @enum {string} */
|
|
4965
4977
|
type: 'web' | 'server';
|
|
4966
4978
|
status: string;
|
|
@@ -4972,10 +4984,10 @@ interface components {
|
|
|
4972
4984
|
/** Format: date-time */
|
|
4973
4985
|
updatedAt: string;
|
|
4974
4986
|
} | null;
|
|
4975
|
-
|
|
4987
|
+
SettingsDeploymentDetailResponse: {
|
|
4976
4988
|
id: string;
|
|
4977
4989
|
flowId: string;
|
|
4978
|
-
|
|
4990
|
+
settingsId: string;
|
|
4979
4991
|
status: string;
|
|
4980
4992
|
/** @enum {string} */
|
|
4981
4993
|
type: 'web' | 'server';
|
|
@@ -4987,7 +4999,7 @@ interface components {
|
|
|
4987
4999
|
/** Format: date-time */
|
|
4988
5000
|
updatedAt: string;
|
|
4989
5001
|
};
|
|
4990
|
-
|
|
5002
|
+
AdvanceSettingsDeploymentResponse: {
|
|
4991
5003
|
id: string;
|
|
4992
5004
|
flowId: string;
|
|
4993
5005
|
/** @enum {string} */
|
|
@@ -5010,7 +5022,7 @@ interface components {
|
|
|
5010
5022
|
GetVersionResponse: {
|
|
5011
5023
|
/** @example 1 */
|
|
5012
5024
|
version: number;
|
|
5013
|
-
content: components['schemas']['
|
|
5025
|
+
content: components['schemas']['FlowConfig'];
|
|
5014
5026
|
/**
|
|
5015
5027
|
* Format: date-time
|
|
5016
5028
|
* @example 2026-01-26T14:30:00.000Z
|
|
@@ -5085,6 +5097,21 @@ interface components {
|
|
|
5085
5097
|
|
|
5086
5098
|
declare function createApiClient(): openapi_fetch.Client<paths, `${string}/${string}`>;
|
|
5087
5099
|
|
|
5100
|
+
interface WalkerOSConfig {
|
|
5101
|
+
token: string;
|
|
5102
|
+
email: string;
|
|
5103
|
+
appUrl: string;
|
|
5104
|
+
anonymousFeedback?: boolean;
|
|
5105
|
+
}
|
|
5106
|
+
/**
|
|
5107
|
+
* Read the stored config, or null if not found
|
|
5108
|
+
*/
|
|
5109
|
+
declare function readConfig(): WalkerOSConfig | null;
|
|
5110
|
+
/**
|
|
5111
|
+
* Write config to disk with 0600 permissions
|
|
5112
|
+
*/
|
|
5113
|
+
declare function writeConfig(config: WalkerOSConfig): void;
|
|
5114
|
+
|
|
5088
5115
|
/**
|
|
5089
5116
|
* Load and parse JSON configuration file from local path or URL.
|
|
5090
5117
|
*
|
|
@@ -5103,4 +5130,4 @@ declare function createApiClient(): openapi_fetch.Client<paths, `${string}/${str
|
|
|
5103
5130
|
*/
|
|
5104
5131
|
declare function loadJsonConfig<T>(configPath: string): Promise<T>;
|
|
5105
5132
|
|
|
5106
|
-
export { type BuildOptions, type BundleStats, type CLIBuildOptions, type DeployOptions, type ExampleLookupResult, type ExampleMatch, type GlobalOptions, type ListDeploymentsOptions, type ListFlowsOptions, type MinifyOptions, type PushResult, type RunCommandOptions, type RunOptions, type RunResult, type SSEEvent, type SSEParseResult, type SimulationResult, type ValidateResult, type ValidationError, type ValidationType, type ValidationWarning, bundle, bundleCommand, bundleRemote, compareOutput, createApiClient, createDeployCommand, createDeployment, createDeploymentCommand, createFlow, createFlowCommand, createProject, createProjectCommand, deleteDeployment, deleteDeploymentCommand, deleteFlow, deleteFlowCommand, deleteProject, deleteProjectCommand, deploy, deployAuthenticatedFetch, deployCommand, duplicateFlow, duplicateFlowCommand, findExample, getAuthHeaders, getDeployment, getDeploymentBySlug, getDeploymentBySlugCommand, getDeploymentCommand, getFlow, getFlowCommand, getProject, getProjectCommand, getToken, listDeployments, listDeploymentsCommand, listFlows, listFlowsCommand, listProjects, listProjectsCommand, loadJsonConfig, loginCommand, logoutCommand, parseSSEEvents, push, pushCommand, requireProjectId, resolveBaseUrl, run, runCommand, simulate, simulateCommand, updateFlow, updateFlowCommand, updateProject, updateProjectCommand, validate, validateCommand, whoami, whoamiCommand };
|
|
5133
|
+
export { type BuildOptions, type BundleStats, type CLIBuildOptions, type DeployOptions, type ExampleLookupResult, type ExampleMatch, type FeedbackOptions, type GlobalOptions, type ListDeploymentsOptions, type ListFlowsOptions, type MinifyOptions, type PushResult, type RunCommandOptions, type RunOptions, type RunResult, type SSEEvent, type SSEParseResult, type SimulationResult, type ValidateResult, type ValidationError, type ValidationType, type ValidationWarning, type WalkerOSConfig, bundle, bundleCommand, bundleRemote, compareOutput, createApiClient, createDeployCommand, createDeployment, createDeploymentCommand, createFlow, createFlowCommand, createProject, createProjectCommand, deleteDeployment, deleteDeploymentCommand, deleteFlow, deleteFlowCommand, deleteProject, deleteProjectCommand, deploy, deployAuthenticatedFetch, deployCommand, duplicateFlow, duplicateFlowCommand, feedback, feedbackCommand, findExample, getAuthHeaders, getDeployment, getDeploymentBySlug, getDeploymentBySlugCommand, getDeploymentCommand, getFlow, getFlowCommand, getProject, getProjectCommand, getToken, listDeployments, listDeploymentsCommand, listFlows, listFlowsCommand, listProjects, listProjectsCommand, loadJsonConfig, loginCommand, logoutCommand, parseSSEEvents, push, pushCommand, readConfig, requireProjectId, resolveBaseUrl, run, runCommand, simulate, simulateCommand, updateFlow, updateFlowCommand, updateProject, updateProjectCommand, validate, validateCommand, whoami, whoamiCommand, writeConfig };
|