@botpress/api 1.48.0 → 1.48.1

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.
@@ -1,5 +1,5 @@
1
1
  import * as opapi from '@bpinternal/opapi';
2
- export type State = opapi.State<'Bot' | 'Integration' | 'Interface' | 'Plugin' | 'Workspace' | 'WorkspaceMember' | 'Account' | 'Usage' | 'Issue' | 'IssueEvent' | 'Activity' | 'Version' | 'User' | 'Conversation' | 'Event' | 'Message' | 'State' | 'Task' | 'Workflow' | 'Table' | 'Column' | 'Row' | 'File', never, 'user' | 'conversation' | 'event' | 'message' | 'state' | 'hub' | 'action' | 'task' | 'workflow' | 'tag' | 'bot' | 'integration' | 'interface' | 'plugin' | 'workspace' | 'workspaceMember' | 'account' | 'usage' | 'quotas' | 'helper' | 'activity' | 'tables' | 'files'>;
2
+ export type State = opapi.State<'User' | 'Conversation' | 'Event' | 'Message' | 'State' | 'Task' | 'Workflow', never, 'user' | 'conversation' | 'event' | 'message' | 'state' | 'hub' | 'action' | 'task' | 'workflow' | 'tag'>;
3
3
  export declare const state: {
4
4
  operations: {
5
5
  createConversation: {
@@ -2513,18 +2513,6 @@ export declare const state: {
2513
2513
  trackAnalyticsResponse: true;
2514
2514
  };
2515
2515
  schemas: {
2516
- Bot: true;
2517
- Integration: true;
2518
- Interface: true;
2519
- Plugin: true;
2520
- Workspace: true;
2521
- WorkspaceMember: true;
2522
- Account: true;
2523
- Usage: true;
2524
- Issue: true;
2525
- IssueEvent: true;
2526
- Activity: true;
2527
- Version: true;
2528
2516
  User: true;
2529
2517
  Conversation: true;
2530
2518
  Event: true;
@@ -2532,2045 +2520,9 @@ export declare const state: {
2532
2520
  State: true;
2533
2521
  Task: true;
2534
2522
  Workflow: true;
2535
- Table: true;
2536
- Column: true;
2537
- Row: true;
2538
- File: true;
2539
2523
  };
2540
2524
  };
2541
2525
  schemas: {
2542
- Bot: {
2543
- section: "bot";
2544
- schema: {
2545
- type: "object";
2546
- properties: {
2547
- id: {
2548
- type: "string";
2549
- minLength: number;
2550
- maxLength: number;
2551
- description: string;
2552
- };
2553
- createdAt: {
2554
- type: "string";
2555
- format: string;
2556
- description: string;
2557
- };
2558
- updatedAt: {
2559
- type: "string";
2560
- format: string;
2561
- description: string;
2562
- };
2563
- signingSecret: {
2564
- type: "string";
2565
- maxLength: number;
2566
- description: string;
2567
- };
2568
- integrations: {
2569
- type: "object";
2570
- additionalProperties: {
2571
- type: "object";
2572
- properties: {
2573
- enabled: {
2574
- type: "boolean";
2575
- };
2576
- name: {
2577
- type: "string";
2578
- maxLength: number;
2579
- description: string;
2580
- };
2581
- version: {
2582
- type: "string";
2583
- maxLength: number;
2584
- description: string;
2585
- };
2586
- webhookUrl: {
2587
- type: "string";
2588
- maxLength: number;
2589
- };
2590
- webhookId: {
2591
- type: "string";
2592
- maxLength: number;
2593
- };
2594
- identifier: {
2595
- type: "string";
2596
- maxLength: number;
2597
- };
2598
- configurationType: {
2599
- type: "string";
2600
- maxLength: number;
2601
- nullable: true;
2602
- };
2603
- configuration: {
2604
- type: "object";
2605
- additionalProperties: true;
2606
- };
2607
- status: {
2608
- type: "string";
2609
- enum: string[];
2610
- };
2611
- statusReason: {
2612
- type: "string";
2613
- maxLength: number;
2614
- nullable: true;
2615
- };
2616
- disabledChannels: {
2617
- type: "array";
2618
- items: {
2619
- type: "string";
2620
- description: string;
2621
- };
2622
- description: string;
2623
- };
2624
- id: {
2625
- type: "string";
2626
- minLength: number;
2627
- maxLength: number;
2628
- description: string;
2629
- };
2630
- createdAt: {
2631
- type: "string";
2632
- format: string;
2633
- description: string;
2634
- };
2635
- updatedAt: {
2636
- type: "string";
2637
- format: string;
2638
- description: string;
2639
- };
2640
- title: {
2641
- type: "string";
2642
- minLength: number;
2643
- maxLength: number;
2644
- description: string;
2645
- };
2646
- description: {
2647
- type: "string";
2648
- maxLength: number;
2649
- description: string;
2650
- };
2651
- iconUrl: {
2652
- type: "string";
2653
- description: string;
2654
- };
2655
- public: {
2656
- type: "boolean";
2657
- description: string;
2658
- deprecated: true;
2659
- };
2660
- visibility: {
2661
- type: "string";
2662
- enum: string[];
2663
- description: string;
2664
- };
2665
- verificationStatus: {
2666
- type: "string";
2667
- enum: string[];
2668
- description: string;
2669
- };
2670
- };
2671
- required: string[];
2672
- additionalProperties: false;
2673
- };
2674
- description: string;
2675
- };
2676
- plugins: {
2677
- type: "object";
2678
- additionalProperties: {
2679
- type: "object";
2680
- properties: {
2681
- enabled: {
2682
- type: "boolean";
2683
- };
2684
- name: {
2685
- type: "string";
2686
- maxLength: number;
2687
- description: string;
2688
- };
2689
- version: {
2690
- type: "string";
2691
- maxLength: number;
2692
- description: string;
2693
- };
2694
- configuration: {
2695
- type: "object";
2696
- additionalProperties: true;
2697
- };
2698
- interfaces: {
2699
- type: "object";
2700
- additionalProperties: {
2701
- type: "object";
2702
- properties: {
2703
- integrationId: {
2704
- type: "string";
2705
- minLength: number;
2706
- maxLength: number;
2707
- };
2708
- integrationAlias: {
2709
- type: "string";
2710
- maxLength: number;
2711
- };
2712
- integrationInterfaceAlias: {
2713
- type: "string";
2714
- maxLength: number;
2715
- };
2716
- interfaceId: {
2717
- type: "string";
2718
- minLength: number;
2719
- maxLength: number;
2720
- };
2721
- };
2722
- required: string[];
2723
- additionalProperties: false;
2724
- };
2725
- description: string;
2726
- };
2727
- integrations: {
2728
- type: "object";
2729
- additionalProperties: {
2730
- type: "object";
2731
- properties: {
2732
- integrationId: {
2733
- type: "string";
2734
- minLength: number;
2735
- maxLength: number;
2736
- };
2737
- integrationAlias: {
2738
- type: "string";
2739
- maxLength: number;
2740
- };
2741
- };
2742
- required: string[];
2743
- additionalProperties: false;
2744
- };
2745
- description: string;
2746
- };
2747
- id: {
2748
- type: "string";
2749
- minLength: number;
2750
- maxLength: number;
2751
- description: string;
2752
- };
2753
- createdAt: {
2754
- type: "string";
2755
- format: string;
2756
- description: string;
2757
- };
2758
- updatedAt: {
2759
- type: "string";
2760
- format: string;
2761
- description: string;
2762
- };
2763
- title: {
2764
- type: "string";
2765
- minLength: number;
2766
- maxLength: number;
2767
- description: string;
2768
- };
2769
- description: {
2770
- type: "string";
2771
- maxLength: number;
2772
- description: string;
2773
- };
2774
- iconUrl: {
2775
- type: "string";
2776
- description: string;
2777
- };
2778
- readmeUrl: {
2779
- type: "string";
2780
- description: string;
2781
- };
2782
- public: {
2783
- type: "boolean";
2784
- description: string;
2785
- };
2786
- };
2787
- required: string[];
2788
- additionalProperties: false;
2789
- };
2790
- description: string;
2791
- };
2792
- maxExecutionTime: {
2793
- type: "number";
2794
- description: string;
2795
- };
2796
- user: {
2797
- type: "object";
2798
- properties: {
2799
- tags: {
2800
- type: "object";
2801
- additionalProperties: {
2802
- type: "object";
2803
- properties: {
2804
- title: {
2805
- type: "string";
2806
- maxLength: number;
2807
- description: string;
2808
- };
2809
- description: {
2810
- type: "string";
2811
- maxLength: number;
2812
- description: string;
2813
- };
2814
- };
2815
- description: string;
2816
- additionalProperties: false;
2817
- };
2818
- };
2819
- };
2820
- required: string[];
2821
- description: string;
2822
- additionalProperties: false;
2823
- };
2824
- conversation: {
2825
- type: "object";
2826
- properties: {
2827
- tags: {
2828
- type: "object";
2829
- additionalProperties: {
2830
- type: "object";
2831
- properties: {
2832
- title: {
2833
- type: "string";
2834
- maxLength: number;
2835
- description: string;
2836
- };
2837
- description: {
2838
- type: "string";
2839
- maxLength: number;
2840
- description: string;
2841
- };
2842
- };
2843
- description: string;
2844
- additionalProperties: false;
2845
- };
2846
- };
2847
- };
2848
- required: string[];
2849
- description: string;
2850
- additionalProperties: false;
2851
- };
2852
- message: {
2853
- type: "object";
2854
- properties: {
2855
- tags: {
2856
- type: "object";
2857
- additionalProperties: {
2858
- type: "object";
2859
- properties: {
2860
- title: {
2861
- type: "string";
2862
- maxLength: number;
2863
- description: string;
2864
- };
2865
- description: {
2866
- type: "string";
2867
- maxLength: number;
2868
- description: string;
2869
- };
2870
- };
2871
- description: string;
2872
- additionalProperties: false;
2873
- };
2874
- };
2875
- };
2876
- required: string[];
2877
- description: string;
2878
- additionalProperties: false;
2879
- };
2880
- states: {
2881
- type: "object";
2882
- additionalProperties: {
2883
- type: "object";
2884
- properties: {
2885
- type: {
2886
- type: "string";
2887
- enum: string[];
2888
- description: string;
2889
- };
2890
- schema: {
2891
- type: "object";
2892
- additionalProperties: true;
2893
- description: string;
2894
- };
2895
- expiry: {
2896
- type: "number";
2897
- minimum: number;
2898
- description: string;
2899
- };
2900
- };
2901
- required: string[];
2902
- additionalProperties: false;
2903
- };
2904
- description: string;
2905
- };
2906
- configuration: {
2907
- type: "object";
2908
- properties: {
2909
- data: {
2910
- type: "object";
2911
- additionalProperties: true;
2912
- description: string;
2913
- };
2914
- schema: {
2915
- type: "object";
2916
- additionalProperties: true;
2917
- description: string;
2918
- };
2919
- };
2920
- required: string[];
2921
- description: string;
2922
- additionalProperties: false;
2923
- };
2924
- events: {
2925
- type: "object";
2926
- additionalProperties: {
2927
- type: "object";
2928
- properties: {
2929
- title: {
2930
- type: "string";
2931
- maxLength: number;
2932
- description: string;
2933
- };
2934
- description: {
2935
- type: "string";
2936
- maxLength: number;
2937
- description: string;
2938
- };
2939
- schema: {
2940
- type: "object";
2941
- additionalProperties: true;
2942
- };
2943
- attributes: {
2944
- type: "object";
2945
- additionalProperties: {
2946
- type: "string";
2947
- maxLength: number;
2948
- };
2949
- description: string;
2950
- };
2951
- };
2952
- required: string[];
2953
- description: string;
2954
- additionalProperties: false;
2955
- };
2956
- description: string;
2957
- };
2958
- recurringEvents: {
2959
- type: "object";
2960
- additionalProperties: {
2961
- type: "object";
2962
- properties: {
2963
- schedule: {
2964
- type: "object";
2965
- properties: {
2966
- cron: {
2967
- type: "string";
2968
- maxLength: number;
2969
- };
2970
- };
2971
- required: string[];
2972
- additionalProperties: false;
2973
- };
2974
- type: {
2975
- type: "string";
2976
- maxLength: number;
2977
- };
2978
- payload: {
2979
- type: "object";
2980
- additionalProperties: true;
2981
- };
2982
- failedAttempts: {
2983
- type: "number";
2984
- description: string;
2985
- };
2986
- lastFailureReason: {
2987
- type: "string";
2988
- maxLength: number;
2989
- description: string;
2990
- nullable: true;
2991
- };
2992
- };
2993
- required: string[];
2994
- additionalProperties: false;
2995
- };
2996
- description: string;
2997
- };
2998
- subscriptions: {
2999
- type: "object";
3000
- properties: {
3001
- events: {
3002
- type: "object";
3003
- additionalProperties: {
3004
- type: "object";
3005
- additionalProperties: false;
3006
- };
3007
- nullable: true;
3008
- description: string;
3009
- };
3010
- };
3011
- required: string[];
3012
- description: string;
3013
- additionalProperties: false;
3014
- };
3015
- actions: {
3016
- type: "object";
3017
- additionalProperties: {
3018
- type: "object";
3019
- properties: {
3020
- title: {
3021
- type: "string";
3022
- maxLength: number;
3023
- description: string;
3024
- };
3025
- description: {
3026
- type: "string";
3027
- maxLength: number;
3028
- description: string;
3029
- };
3030
- billable: {
3031
- type: "boolean";
3032
- };
3033
- cacheable: {
3034
- type: "boolean";
3035
- };
3036
- input: {
3037
- type: "object";
3038
- properties: {
3039
- schema: {
3040
- type: "object";
3041
- additionalProperties: true;
3042
- };
3043
- };
3044
- required: string[];
3045
- additionalProperties: false;
3046
- };
3047
- output: {
3048
- type: "object";
3049
- properties: {
3050
- schema: {
3051
- type: "object";
3052
- additionalProperties: true;
3053
- };
3054
- };
3055
- required: string[];
3056
- additionalProperties: false;
3057
- };
3058
- attributes: {
3059
- type: "object";
3060
- additionalProperties: {
3061
- type: "string";
3062
- maxLength: number;
3063
- };
3064
- description: string;
3065
- };
3066
- };
3067
- required: string[];
3068
- description: string;
3069
- additionalProperties: false;
3070
- };
3071
- description: string;
3072
- };
3073
- tags: {
3074
- type: "object";
3075
- additionalProperties: {
3076
- type: "string";
3077
- };
3078
- description: string;
3079
- };
3080
- name: {
3081
- type: "string";
3082
- description: string;
3083
- };
3084
- deployedAt: {
3085
- type: "string";
3086
- format: string;
3087
- description: string;
3088
- };
3089
- dev: {
3090
- type: "boolean";
3091
- description: string;
3092
- };
3093
- createdBy: {
3094
- type: "string";
3095
- description: string;
3096
- };
3097
- alwaysAlive: {
3098
- type: "boolean";
3099
- description: string;
3100
- };
3101
- status: {
3102
- type: "string";
3103
- enum: string[];
3104
- description: string;
3105
- };
3106
- medias: {
3107
- type: "array";
3108
- items: {
3109
- type: "object";
3110
- properties: {
3111
- url: {
3112
- type: "string";
3113
- description: string;
3114
- };
3115
- name: {
3116
- type: "string";
3117
- description: string;
3118
- };
3119
- };
3120
- required: string[];
3121
- };
3122
- description: string;
3123
- };
3124
- };
3125
- required: string[];
3126
- additionalProperties: false;
3127
- };
3128
- };
3129
- Integration: {
3130
- section: "integration";
3131
- schema: {
3132
- type: "object";
3133
- properties: {
3134
- id: {
3135
- type: "string";
3136
- minLength: number;
3137
- maxLength: number;
3138
- description: string;
3139
- };
3140
- createdAt: {
3141
- type: "string";
3142
- format: string;
3143
- description: string;
3144
- };
3145
- updatedAt: {
3146
- type: "string";
3147
- format: string;
3148
- description: string;
3149
- };
3150
- identifier: {
3151
- type: "object";
3152
- properties: {
3153
- fallbackHandlerScript: {
3154
- type: "string";
3155
- maxLength: number;
3156
- description: string;
3157
- };
3158
- extractScript: {
3159
- type: "string";
3160
- maxLength: number;
3161
- description: string;
3162
- };
3163
- };
3164
- description: string;
3165
- additionalProperties: false;
3166
- };
3167
- sandbox: {
3168
- type: "object";
3169
- properties: {
3170
- identifierExtractScript: {
3171
- type: "string";
3172
- maxLength: number;
3173
- description: string;
3174
- };
3175
- messageExtractScript: {
3176
- type: "string";
3177
- maxLength: number;
3178
- description: string;
3179
- };
3180
- };
3181
- additionalProperties: false;
3182
- };
3183
- maxExecutionTime: {
3184
- type: "number";
3185
- description: string;
3186
- };
3187
- url: {
3188
- type: "string";
3189
- maxLength: number;
3190
- description: string;
3191
- };
3192
- name: {
3193
- type: "string";
3194
- maxLength: number;
3195
- description: string;
3196
- };
3197
- version: {
3198
- type: "string";
3199
- maxLength: number;
3200
- description: string;
3201
- };
3202
- interfaces: {
3203
- type: "object";
3204
- additionalProperties: {
3205
- type: "object";
3206
- properties: {
3207
- id: {
3208
- type: "string";
3209
- minLength: number;
3210
- maxLength: number;
3211
- description: string;
3212
- };
3213
- name: {
3214
- type: "string";
3215
- maxLength: number;
3216
- description: string;
3217
- };
3218
- version: {
3219
- type: "string";
3220
- maxLength: number;
3221
- description: string;
3222
- };
3223
- entities: {
3224
- type: "object";
3225
- additionalProperties: {
3226
- type: "object";
3227
- properties: {
3228
- name: {
3229
- type: "string";
3230
- maxLength: number;
3231
- };
3232
- };
3233
- required: string[];
3234
- additionalProperties: false;
3235
- };
3236
- };
3237
- actions: {
3238
- type: "object";
3239
- additionalProperties: {
3240
- type: "object";
3241
- properties: {
3242
- name: {
3243
- type: "string";
3244
- maxLength: number;
3245
- };
3246
- };
3247
- required: string[];
3248
- additionalProperties: false;
3249
- };
3250
- };
3251
- events: {
3252
- type: "object";
3253
- additionalProperties: {
3254
- type: "object";
3255
- properties: {
3256
- name: {
3257
- type: "string";
3258
- maxLength: number;
3259
- };
3260
- };
3261
- required: string[];
3262
- additionalProperties: false;
3263
- };
3264
- };
3265
- channels: {
3266
- type: "object";
3267
- additionalProperties: {
3268
- type: "object";
3269
- properties: {
3270
- name: {
3271
- type: "string";
3272
- maxLength: number;
3273
- };
3274
- };
3275
- required: string[];
3276
- additionalProperties: false;
3277
- };
3278
- };
3279
- };
3280
- required: string[];
3281
- additionalProperties: false;
3282
- };
3283
- };
3284
- configuration: {
3285
- type: "object";
3286
- properties: {
3287
- title: {
3288
- type: "string";
3289
- maxLength: number;
3290
- description: string;
3291
- };
3292
- description: {
3293
- type: "string";
3294
- maxLength: number;
3295
- description: string;
3296
- };
3297
- identifier: {
3298
- type: "object";
3299
- properties: {
3300
- linkTemplateScript: {
3301
- type: "string";
3302
- maxLength: number;
3303
- };
3304
- required: {
3305
- type: "boolean";
3306
- };
3307
- };
3308
- required: string[];
3309
- description: string;
3310
- additionalProperties: false;
3311
- };
3312
- schema: {
3313
- type: "object";
3314
- additionalProperties: true;
3315
- description: string;
3316
- };
3317
- };
3318
- required: string[];
3319
- description: string;
3320
- additionalProperties: false;
3321
- };
3322
- configurations: {
3323
- type: "object";
3324
- additionalProperties: {
3325
- type: "object";
3326
- properties: {
3327
- title: {
3328
- type: "string";
3329
- maxLength: number;
3330
- description: string;
3331
- };
3332
- description: {
3333
- type: "string";
3334
- maxLength: number;
3335
- description: string;
3336
- };
3337
- identifier: {
3338
- type: "object";
3339
- properties: {
3340
- linkTemplateScript: {
3341
- type: "string";
3342
- maxLength: number;
3343
- };
3344
- required: {
3345
- type: "boolean";
3346
- };
3347
- };
3348
- required: string[];
3349
- description: string;
3350
- additionalProperties: false;
3351
- };
3352
- schema: {
3353
- type: "object";
3354
- additionalProperties: true;
3355
- description: string;
3356
- };
3357
- };
3358
- required: string[];
3359
- description: string;
3360
- additionalProperties: false;
3361
- };
3362
- };
3363
- channels: {
3364
- type: "object";
3365
- additionalProperties: {
3366
- type: "object";
3367
- properties: {
3368
- title: {
3369
- type: "string";
3370
- maxLength: number;
3371
- description: string;
3372
- };
3373
- description: {
3374
- type: "string";
3375
- maxLength: number;
3376
- description: string;
3377
- };
3378
- messages: {
3379
- type: "object";
3380
- additionalProperties: {
3381
- type: "object";
3382
- properties: {
3383
- schema: {
3384
- type: "object";
3385
- additionalProperties: true;
3386
- };
3387
- };
3388
- required: string[];
3389
- description: string;
3390
- additionalProperties: false;
3391
- };
3392
- };
3393
- conversation: {
3394
- type: "object";
3395
- properties: {
3396
- tags: {
3397
- type: "object";
3398
- additionalProperties: {
3399
- type: "object";
3400
- properties: {
3401
- title: {
3402
- type: "string";
3403
- maxLength: number;
3404
- description: string;
3405
- };
3406
- description: {
3407
- type: "string";
3408
- maxLength: number;
3409
- description: string;
3410
- };
3411
- };
3412
- description: string;
3413
- additionalProperties: false;
3414
- };
3415
- };
3416
- creation: {
3417
- type: "object";
3418
- properties: {
3419
- enabled: {
3420
- type: "boolean";
3421
- description: string;
3422
- };
3423
- requiredTags: {
3424
- type: "array";
3425
- items: {
3426
- type: "string";
3427
- };
3428
- description: string;
3429
- };
3430
- };
3431
- required: string[];
3432
- description: string;
3433
- additionalProperties: false;
3434
- };
3435
- };
3436
- required: string[];
3437
- description: string;
3438
- additionalProperties: false;
3439
- };
3440
- message: {
3441
- type: "object";
3442
- properties: {
3443
- tags: {
3444
- type: "object";
3445
- additionalProperties: {
3446
- type: "object";
3447
- properties: {
3448
- title: {
3449
- type: "string";
3450
- maxLength: number;
3451
- description: string;
3452
- };
3453
- description: {
3454
- type: "string";
3455
- maxLength: number;
3456
- description: string;
3457
- };
3458
- };
3459
- description: string;
3460
- additionalProperties: false;
3461
- };
3462
- };
3463
- };
3464
- required: string[];
3465
- description: string;
3466
- additionalProperties: false;
3467
- };
3468
- };
3469
- required: string[];
3470
- description: string;
3471
- additionalProperties: false;
3472
- };
3473
- };
3474
- states: {
3475
- type: "object";
3476
- additionalProperties: {
3477
- type: "object";
3478
- properties: {
3479
- type: {
3480
- type: "string";
3481
- enum: string[];
3482
- description: string;
3483
- };
3484
- schema: {
3485
- type: "object";
3486
- additionalProperties: true;
3487
- description: string;
3488
- };
3489
- };
3490
- required: string[];
3491
- description: string;
3492
- additionalProperties: false;
3493
- };
3494
- };
3495
- events: {
3496
- type: "object";
3497
- additionalProperties: {
3498
- type: "object";
3499
- properties: {
3500
- title: {
3501
- type: "string";
3502
- maxLength: number;
3503
- description: string;
3504
- };
3505
- description: {
3506
- type: "string";
3507
- maxLength: number;
3508
- description: string;
3509
- };
3510
- schema: {
3511
- type: "object";
3512
- additionalProperties: true;
3513
- };
3514
- attributes: {
3515
- type: "object";
3516
- additionalProperties: {
3517
- type: "string";
3518
- maxLength: number;
3519
- };
3520
- description: string;
3521
- };
3522
- };
3523
- required: string[];
3524
- description: string;
3525
- additionalProperties: false;
3526
- };
3527
- };
3528
- actions: {
3529
- type: "object";
3530
- additionalProperties: {
3531
- type: "object";
3532
- properties: {
3533
- title: {
3534
- type: "string";
3535
- maxLength: number;
3536
- description: string;
3537
- };
3538
- description: {
3539
- type: "string";
3540
- maxLength: number;
3541
- description: string;
3542
- };
3543
- billable: {
3544
- type: "boolean";
3545
- };
3546
- cacheable: {
3547
- type: "boolean";
3548
- };
3549
- input: {
3550
- type: "object";
3551
- properties: {
3552
- schema: {
3553
- type: "object";
3554
- additionalProperties: true;
3555
- };
3556
- };
3557
- required: string[];
3558
- additionalProperties: false;
3559
- };
3560
- output: {
3561
- type: "object";
3562
- properties: {
3563
- schema: {
3564
- type: "object";
3565
- additionalProperties: true;
3566
- };
3567
- };
3568
- required: string[];
3569
- additionalProperties: false;
3570
- };
3571
- attributes: {
3572
- type: "object";
3573
- additionalProperties: {
3574
- type: "string";
3575
- maxLength: number;
3576
- };
3577
- description: string;
3578
- };
3579
- };
3580
- required: string[];
3581
- description: string;
3582
- additionalProperties: false;
3583
- };
3584
- };
3585
- user: {
3586
- type: "object";
3587
- properties: {
3588
- tags: {
3589
- type: "object";
3590
- additionalProperties: {
3591
- type: "object";
3592
- properties: {
3593
- title: {
3594
- type: "string";
3595
- maxLength: number;
3596
- description: string;
3597
- };
3598
- description: {
3599
- type: "string";
3600
- maxLength: number;
3601
- description: string;
3602
- };
3603
- };
3604
- description: string;
3605
- additionalProperties: false;
3606
- };
3607
- };
3608
- creation: {
3609
- type: "object";
3610
- properties: {
3611
- enabled: {
3612
- type: "boolean";
3613
- description: string;
3614
- };
3615
- requiredTags: {
3616
- type: "array";
3617
- items: {
3618
- type: "string";
3619
- };
3620
- description: string;
3621
- };
3622
- };
3623
- required: string[];
3624
- description: string;
3625
- additionalProperties: false;
3626
- };
3627
- };
3628
- required: string[];
3629
- description: string;
3630
- additionalProperties: false;
3631
- };
3632
- entities: {
3633
- type: "object";
3634
- additionalProperties: {
3635
- type: "object";
3636
- properties: {
3637
- title: {
3638
- type: "string";
3639
- maxLength: number;
3640
- description: string;
3641
- };
3642
- description: {
3643
- type: "string";
3644
- maxLength: number;
3645
- description: string;
3646
- };
3647
- schema: {
3648
- type: "object";
3649
- additionalProperties: true;
3650
- };
3651
- };
3652
- required: string[];
3653
- description: string;
3654
- additionalProperties: false;
3655
- };
3656
- };
3657
- attributes: {
3658
- type: "object";
3659
- additionalProperties: {
3660
- type: "string";
3661
- maxLength: number;
3662
- };
3663
- description: string;
3664
- };
3665
- dev: {
3666
- type: "boolean";
3667
- description: string;
3668
- };
3669
- title: {
3670
- type: "string";
3671
- minLength: number;
3672
- maxLength: number;
3673
- description: string;
3674
- };
3675
- description: {
3676
- type: "string";
3677
- maxLength: number;
3678
- description: string;
3679
- };
3680
- iconUrl: {
3681
- type: "string";
3682
- description: string;
3683
- };
3684
- readmeUrl: {
3685
- type: "string";
3686
- description: string;
3687
- };
3688
- public: {
3689
- type: "boolean";
3690
- description: string;
3691
- deprecated: true;
3692
- };
3693
- visibility: {
3694
- type: "string";
3695
- enum: string[];
3696
- description: string;
3697
- };
3698
- verificationStatus: {
3699
- type: "string";
3700
- enum: string[];
3701
- description: string;
3702
- };
3703
- secrets: {
3704
- type: "array";
3705
- items: {
3706
- type: "string";
3707
- };
3708
- description: string;
3709
- };
3710
- };
3711
- required: string[];
3712
- additionalProperties: false;
3713
- };
3714
- };
3715
- Interface: {
3716
- section: "interface";
3717
- schema: {
3718
- type: "object";
3719
- properties: {
3720
- id: {
3721
- type: "string";
3722
- minLength: number;
3723
- maxLength: number;
3724
- description: string;
3725
- };
3726
- createdAt: {
3727
- type: "string";
3728
- format: string;
3729
- description: string;
3730
- };
3731
- updatedAt: {
3732
- type: "string";
3733
- format: string;
3734
- description: string;
3735
- };
3736
- name: {
3737
- type: "string";
3738
- maxLength: number;
3739
- description: string;
3740
- };
3741
- version: {
3742
- type: "string";
3743
- maxLength: number;
3744
- description: string;
3745
- };
3746
- entities: {
3747
- type: "object";
3748
- additionalProperties: {
3749
- type: "object";
3750
- properties: {
3751
- title: {
3752
- type: "string";
3753
- maxLength: number;
3754
- description: string;
3755
- };
3756
- description: {
3757
- type: "string";
3758
- maxLength: number;
3759
- description: string;
3760
- };
3761
- schema: {
3762
- type: "object";
3763
- additionalProperties: true;
3764
- };
3765
- };
3766
- required: string[];
3767
- description: string;
3768
- additionalProperties: false;
3769
- };
3770
- };
3771
- events: {
3772
- type: "object";
3773
- additionalProperties: {
3774
- type: "object";
3775
- properties: {
3776
- title: {
3777
- type: "string";
3778
- maxLength: number;
3779
- description: string;
3780
- };
3781
- description: {
3782
- type: "string";
3783
- maxLength: number;
3784
- description: string;
3785
- };
3786
- schema: {
3787
- type: "object";
3788
- additionalProperties: true;
3789
- };
3790
- attributes: {
3791
- type: "object";
3792
- additionalProperties: {
3793
- type: "string";
3794
- maxLength: number;
3795
- };
3796
- description: string;
3797
- };
3798
- };
3799
- required: string[];
3800
- description: string;
3801
- additionalProperties: false;
3802
- };
3803
- };
3804
- actions: {
3805
- type: "object";
3806
- additionalProperties: {
3807
- type: "object";
3808
- properties: {
3809
- title: {
3810
- type: "string";
3811
- maxLength: number;
3812
- description: string;
3813
- };
3814
- description: {
3815
- type: "string";
3816
- maxLength: number;
3817
- description: string;
3818
- };
3819
- billable: {
3820
- type: "boolean";
3821
- };
3822
- cacheable: {
3823
- type: "boolean";
3824
- };
3825
- input: {
3826
- type: "object";
3827
- properties: {
3828
- schema: {
3829
- type: "object";
3830
- additionalProperties: true;
3831
- };
3832
- };
3833
- required: string[];
3834
- additionalProperties: false;
3835
- };
3836
- output: {
3837
- type: "object";
3838
- properties: {
3839
- schema: {
3840
- type: "object";
3841
- additionalProperties: true;
3842
- };
3843
- };
3844
- required: string[];
3845
- additionalProperties: false;
3846
- };
3847
- attributes: {
3848
- type: "object";
3849
- additionalProperties: {
3850
- type: "string";
3851
- maxLength: number;
3852
- };
3853
- description: string;
3854
- };
3855
- };
3856
- required: string[];
3857
- description: string;
3858
- additionalProperties: false;
3859
- };
3860
- };
3861
- channels: {
3862
- type: "object";
3863
- additionalProperties: {
3864
- type: "object";
3865
- properties: {
3866
- title: {
3867
- type: "string";
3868
- maxLength: number;
3869
- description: string;
3870
- };
3871
- description: {
3872
- type: "string";
3873
- maxLength: number;
3874
- description: string;
3875
- };
3876
- messages: {
3877
- type: "object";
3878
- additionalProperties: {
3879
- type: "object";
3880
- properties: {
3881
- schema: {
3882
- type: "object";
3883
- additionalProperties: true;
3884
- };
3885
- };
3886
- required: string[];
3887
- description: string;
3888
- additionalProperties: false;
3889
- };
3890
- };
3891
- };
3892
- required: string[];
3893
- additionalProperties: false;
3894
- };
3895
- };
3896
- nameTemplate: {
3897
- type: "object";
3898
- properties: {
3899
- script: {
3900
- type: "string";
3901
- maxLength: number;
3902
- };
3903
- language: {
3904
- type: "string";
3905
- maxLength: number;
3906
- };
3907
- };
3908
- required: string[];
3909
- description: string;
3910
- additionalProperties: false;
3911
- };
3912
- attributes: {
3913
- type: "object";
3914
- additionalProperties: {
3915
- type: "string";
3916
- maxLength: number;
3917
- };
3918
- description: string;
3919
- };
3920
- title: {
3921
- type: "string";
3922
- minLength: number;
3923
- maxLength: number;
3924
- description: string;
3925
- };
3926
- description: {
3927
- type: "string";
3928
- maxLength: number;
3929
- description: string;
3930
- };
3931
- iconUrl: {
3932
- type: "string";
3933
- description: string;
3934
- };
3935
- readmeUrl: {
3936
- type: "string";
3937
- description: string;
3938
- };
3939
- public: {
3940
- type: "boolean";
3941
- description: string;
3942
- };
3943
- };
3944
- required: string[];
3945
- additionalProperties: false;
3946
- };
3947
- };
3948
- Plugin: {
3949
- section: "plugin";
3950
- schema: {
3951
- type: "object";
3952
- properties: {
3953
- id: {
3954
- type: "string";
3955
- minLength: number;
3956
- maxLength: number;
3957
- description: string;
3958
- };
3959
- name: {
3960
- type: "string";
3961
- maxLength: number;
3962
- description: string;
3963
- };
3964
- version: {
3965
- type: "string";
3966
- maxLength: number;
3967
- description: string;
3968
- };
3969
- createdAt: {
3970
- type: "string";
3971
- format: string;
3972
- description: string;
3973
- };
3974
- updatedAt: {
3975
- type: "string";
3976
- format: string;
3977
- description: string;
3978
- };
3979
- configuration: {
3980
- type: "object";
3981
- properties: {
3982
- title: {
3983
- type: "string";
3984
- maxLength: number;
3985
- description: string;
3986
- };
3987
- description: {
3988
- type: "string";
3989
- maxLength: number;
3990
- description: string;
3991
- };
3992
- schema: {
3993
- type: "object";
3994
- additionalProperties: true;
3995
- description: string;
3996
- };
3997
- };
3998
- required: string[];
3999
- description: string;
4000
- additionalProperties: false;
4001
- };
4002
- states: {
4003
- type: "object";
4004
- additionalProperties: {
4005
- type: "object";
4006
- properties: {
4007
- type: {
4008
- type: "string";
4009
- enum: string[];
4010
- description: string;
4011
- };
4012
- schema: {
4013
- type: "object";
4014
- additionalProperties: true;
4015
- description: string;
4016
- };
4017
- expiry: {
4018
- type: "number";
4019
- minimum: number;
4020
- description: string;
4021
- };
4022
- };
4023
- required: string[];
4024
- additionalProperties: false;
4025
- };
4026
- };
4027
- events: {
4028
- type: "object";
4029
- additionalProperties: {
4030
- type: "object";
4031
- properties: {
4032
- title: {
4033
- type: "string";
4034
- maxLength: number;
4035
- description: string;
4036
- };
4037
- description: {
4038
- type: "string";
4039
- maxLength: number;
4040
- description: string;
4041
- };
4042
- schema: {
4043
- type: "object";
4044
- additionalProperties: true;
4045
- };
4046
- attributes: {
4047
- type: "object";
4048
- additionalProperties: {
4049
- type: "string";
4050
- maxLength: number;
4051
- };
4052
- description: string;
4053
- };
4054
- };
4055
- required: string[];
4056
- description: string;
4057
- additionalProperties: false;
4058
- };
4059
- };
4060
- actions: {
4061
- type: "object";
4062
- additionalProperties: {
4063
- type: "object";
4064
- properties: {
4065
- title: {
4066
- type: "string";
4067
- maxLength: number;
4068
- description: string;
4069
- };
4070
- description: {
4071
- type: "string";
4072
- maxLength: number;
4073
- description: string;
4074
- };
4075
- billable: {
4076
- type: "boolean";
4077
- };
4078
- cacheable: {
4079
- type: "boolean";
4080
- };
4081
- input: {
4082
- type: "object";
4083
- properties: {
4084
- schema: {
4085
- type: "object";
4086
- additionalProperties: true;
4087
- };
4088
- };
4089
- required: string[];
4090
- additionalProperties: false;
4091
- };
4092
- output: {
4093
- type: "object";
4094
- properties: {
4095
- schema: {
4096
- type: "object";
4097
- additionalProperties: true;
4098
- };
4099
- };
4100
- required: string[];
4101
- additionalProperties: false;
4102
- };
4103
- attributes: {
4104
- type: "object";
4105
- additionalProperties: {
4106
- type: "string";
4107
- maxLength: number;
4108
- };
4109
- description: string;
4110
- };
4111
- };
4112
- required: string[];
4113
- description: string;
4114
- additionalProperties: false;
4115
- };
4116
- };
4117
- dependencies: {
4118
- type: "object";
4119
- properties: {
4120
- interfaces: {
4121
- type: "object";
4122
- additionalProperties: {
4123
- type: "object";
4124
- properties: {
4125
- id: {
4126
- type: "string";
4127
- minLength: number;
4128
- maxLength: number;
4129
- };
4130
- name: {
4131
- type: "string";
4132
- maxLength: number;
4133
- };
4134
- version: {
4135
- type: "string";
4136
- maxLength: number;
4137
- };
4138
- };
4139
- required: string[];
4140
- additionalProperties: false;
4141
- };
4142
- };
4143
- integrations: {
4144
- type: "object";
4145
- additionalProperties: {
4146
- type: "object";
4147
- properties: {
4148
- id: {
4149
- type: "string";
4150
- minLength: number;
4151
- maxLength: number;
4152
- };
4153
- name: {
4154
- type: "string";
4155
- maxLength: number;
4156
- };
4157
- version: {
4158
- type: "string";
4159
- maxLength: number;
4160
- };
4161
- };
4162
- required: string[];
4163
- additionalProperties: false;
4164
- };
4165
- };
4166
- };
4167
- required: string[];
4168
- additionalProperties: false;
4169
- };
4170
- user: {
4171
- type: "object";
4172
- properties: {
4173
- tags: {
4174
- type: "object";
4175
- additionalProperties: {
4176
- type: "object";
4177
- properties: {
4178
- title: {
4179
- type: "string";
4180
- maxLength: number;
4181
- description: string;
4182
- };
4183
- description: {
4184
- type: "string";
4185
- maxLength: number;
4186
- description: string;
4187
- };
4188
- };
4189
- description: string;
4190
- additionalProperties: false;
4191
- };
4192
- };
4193
- };
4194
- required: string[];
4195
- description: string;
4196
- additionalProperties: false;
4197
- };
4198
- conversation: {
4199
- type: "object";
4200
- properties: {
4201
- tags: {
4202
- type: "object";
4203
- additionalProperties: {
4204
- type: "object";
4205
- properties: {
4206
- title: {
4207
- type: "string";
4208
- maxLength: number;
4209
- description: string;
4210
- };
4211
- description: {
4212
- type: "string";
4213
- maxLength: number;
4214
- description: string;
4215
- };
4216
- };
4217
- description: string;
4218
- additionalProperties: false;
4219
- };
4220
- };
4221
- };
4222
- required: string[];
4223
- description: string;
4224
- additionalProperties: false;
4225
- };
4226
- attributes: {
4227
- type: "object";
4228
- additionalProperties: {
4229
- type: "string";
4230
- maxLength: number;
4231
- };
4232
- description: string;
4233
- };
4234
- title: {
4235
- type: "string";
4236
- minLength: number;
4237
- maxLength: number;
4238
- description: string;
4239
- };
4240
- description: {
4241
- type: "string";
4242
- maxLength: number;
4243
- description: string;
4244
- };
4245
- iconUrl: {
4246
- type: "string";
4247
- description: string;
4248
- };
4249
- readmeUrl: {
4250
- type: "string";
4251
- description: string;
4252
- };
4253
- public: {
4254
- type: "boolean";
4255
- description: string;
4256
- };
4257
- };
4258
- required: string[];
4259
- additionalProperties: false;
4260
- };
4261
- };
4262
- Workspace: {
4263
- section: "workspace";
4264
- schema: {
4265
- type: "object";
4266
- properties: {
4267
- id: {
4268
- type: "string";
4269
- };
4270
- name: {
4271
- type: "string";
4272
- };
4273
- ownerId: {
4274
- type: "string";
4275
- };
4276
- createdAt: {
4277
- type: "string";
4278
- };
4279
- updatedAt: {
4280
- type: "string";
4281
- };
4282
- botCount: {
4283
- type: "number";
4284
- };
4285
- billingVersion: {
4286
- type: "string";
4287
- enum: string[];
4288
- };
4289
- plan: {
4290
- type: "string";
4291
- enum: string[];
4292
- };
4293
- blocked: {
4294
- type: "boolean";
4295
- };
4296
- spendingLimit: {
4297
- type: "number";
4298
- };
4299
- about: {
4300
- default: string;
4301
- type: "string";
4302
- };
4303
- profilePicture: {
4304
- default: string;
4305
- type: "string";
4306
- };
4307
- contactEmail: {
4308
- default: string;
4309
- type: "string";
4310
- };
4311
- website: {
4312
- default: string;
4313
- type: "string";
4314
- };
4315
- socialAccounts: {
4316
- default: never[];
4317
- type: "array";
4318
- items: {
4319
- type: "string";
4320
- };
4321
- };
4322
- isPublic: {
4323
- type: "boolean";
4324
- };
4325
- handle: {
4326
- type: "string";
4327
- };
4328
- activeTrialId: {
4329
- type: "string";
4330
- nullable: true;
4331
- };
4332
- };
4333
- required: string[];
4334
- additionalProperties: false;
4335
- };
4336
- };
4337
- WorkspaceMember: {
4338
- section: "workspaceMember";
4339
- schema: {
4340
- type: "object";
4341
- properties: {
4342
- id: {
4343
- type: "string";
4344
- };
4345
- userId: {
4346
- type: "string";
4347
- format: string;
4348
- };
4349
- email: {
4350
- type: "string";
4351
- };
4352
- createdAt: {
4353
- type: "string";
4354
- };
4355
- role: {
4356
- type: "string";
4357
- enum: string[];
4358
- };
4359
- profilePicture: {
4360
- type: "string";
4361
- };
4362
- displayName: {
4363
- type: "string";
4364
- maxLength: number;
4365
- };
4366
- };
4367
- required: string[];
4368
- additionalProperties: false;
4369
- };
4370
- };
4371
- Account: {
4372
- section: "account";
4373
- schema: {
4374
- type: "object";
4375
- properties: {
4376
- id: {
4377
- type: "string";
4378
- };
4379
- email: {
4380
- type: "string";
4381
- };
4382
- displayName: {
4383
- type: "string";
4384
- maxLength: number;
4385
- };
4386
- emailVerified: {
4387
- type: "boolean";
4388
- };
4389
- profilePicture: {
4390
- type: "string";
4391
- };
4392
- createdAt: {
4393
- type: "string";
4394
- format: string;
4395
- description: string;
4396
- };
4397
- };
4398
- required: string[];
4399
- additionalProperties: false;
4400
- };
4401
- };
4402
- Usage: {
4403
- section: "usage";
4404
- schema: {
4405
- type: "object";
4406
- properties: {
4407
- id: {
4408
- type: "string";
4409
- description: string;
4410
- };
4411
- period: {
4412
- type: "string";
4413
- description: string;
4414
- };
4415
- value: {
4416
- type: "number";
4417
- description: string;
4418
- };
4419
- quota: {
4420
- type: "number";
4421
- description: string;
4422
- };
4423
- type: {
4424
- type: "string";
4425
- enum: string[];
4426
- description: string;
4427
- };
4428
- };
4429
- required: string[];
4430
- additionalProperties: false;
4431
- };
4432
- };
4433
- Issue: {
4434
- section: "bot";
4435
- schema: {
4436
- type: "object";
4437
- properties: {
4438
- id: {
4439
- type: "string";
4440
- };
4441
- code: {
4442
- type: "string";
4443
- };
4444
- createdAt: {
4445
- type: "string";
4446
- format: string;
4447
- };
4448
- lastSeenAt: {
4449
- type: "string";
4450
- format: string;
4451
- };
4452
- title: {
4453
- type: "string";
4454
- };
4455
- description: {
4456
- type: "string";
4457
- };
4458
- groupedData: {
4459
- type: "object";
4460
- additionalProperties: {
4461
- type: "object";
4462
- properties: {
4463
- raw: {
4464
- type: "string";
4465
- };
4466
- pretty: {
4467
- type: "string";
4468
- };
4469
- };
4470
- required: string[];
4471
- additionalProperties: false;
4472
- };
4473
- };
4474
- eventsCount: {
4475
- type: "number";
4476
- };
4477
- category: {
4478
- type: "string";
4479
- enum: string[];
4480
- };
4481
- resolutionLink: {
4482
- type: "string";
4483
- nullable: true;
4484
- };
4485
- };
4486
- required: string[];
4487
- additionalProperties: false;
4488
- };
4489
- };
4490
- IssueEvent: {
4491
- section: "bot";
4492
- schema: {
4493
- type: "object";
4494
- properties: {
4495
- id: {
4496
- type: "string";
4497
- };
4498
- createdAt: {
4499
- type: "string";
4500
- format: string;
4501
- };
4502
- data: {
4503
- type: "object";
4504
- additionalProperties: {
4505
- type: "object";
4506
- properties: {
4507
- raw: {
4508
- type: "string";
4509
- };
4510
- pretty: {
4511
- type: "string";
4512
- };
4513
- };
4514
- required: string[];
4515
- additionalProperties: false;
4516
- };
4517
- };
4518
- };
4519
- required: string[];
4520
- additionalProperties: false;
4521
- };
4522
- };
4523
- Activity: {
4524
- section: "activity";
4525
- schema: {
4526
- type: "object";
4527
- properties: {
4528
- id: {
4529
- type: "string";
4530
- };
4531
- description: {
4532
- type: "string";
4533
- };
4534
- taskId: {
4535
- type: "string";
4536
- };
4537
- category: {
4538
- type: "string";
4539
- enum: string[];
4540
- };
4541
- data: {
4542
- type: "object";
4543
- additionalProperties: true;
4544
- };
4545
- createdAt: {
4546
- type: "string";
4547
- format: string;
4548
- description: string;
4549
- };
4550
- };
4551
- required: string[];
4552
- additionalProperties: false;
4553
- };
4554
- };
4555
- Version: {
4556
- section: "bot";
4557
- schema: {
4558
- type: "object";
4559
- properties: {
4560
- id: {
4561
- type: "string";
4562
- };
4563
- name: {
4564
- type: "string";
4565
- };
4566
- description: {
4567
- type: "string";
4568
- };
4569
- };
4570
- required: string[];
4571
- additionalProperties: false;
4572
- };
4573
- };
4574
2526
  User: {
4575
2527
  section: "user";
4576
2528
  schema: {
@@ -4816,524 +2768,101 @@ export declare const state: {
4816
2768
  format: string;
4817
2769
  description: string;
4818
2770
  };
4819
- botId: {
4820
- type: "string";
4821
- minLength: number;
4822
- maxLength: number;
4823
- description: string;
4824
- };
4825
- conversationId: {
4826
- type: "string";
4827
- minLength: number;
4828
- maxLength: number;
4829
- description: string;
4830
- };
4831
- userId: {
4832
- type: "string";
4833
- minLength: number;
4834
- maxLength: number;
4835
- description: string;
4836
- };
4837
- name: {
4838
- type: "string";
4839
- maxLength: number;
4840
- description: string;
4841
- };
4842
- type: {
4843
- type: "string";
4844
- enum: string[];
4845
- description: string;
4846
- };
4847
- payload: {
4848
- type: "object";
4849
- additionalProperties: true;
4850
- description: string;
4851
- };
4852
- };
4853
- required: string[];
4854
- description: string;
4855
- additionalProperties: false;
4856
- };
4857
- };
4858
- Task: {
4859
- section: "task";
4860
- schema: {
4861
- type: "object";
4862
- properties: {
4863
- id: {
4864
- type: "string";
4865
- minLength: number;
4866
- maxLength: number;
4867
- description: string;
4868
- };
4869
- title: {
4870
- type: "string";
4871
- maxLength: number;
4872
- description: string;
4873
- };
4874
- description: {
4875
- type: "string";
4876
- maxLength: number;
4877
- description: string;
4878
- };
4879
- type: {
4880
- type: "string";
4881
- description: string;
4882
- };
4883
- data: {
4884
- type: "object";
4885
- additionalProperties: true;
4886
- description: string;
4887
- };
4888
- status: {
4889
- type: "string";
4890
- enum: string[];
4891
- description: string;
4892
- };
4893
- parentTaskId: {
4894
- type: "string";
4895
- minLength: number;
4896
- maxLength: number;
4897
- description: string;
4898
- };
4899
- conversationId: {
4900
- type: "string";
4901
- minLength: number;
4902
- maxLength: number;
4903
- description: string;
4904
- };
4905
- userId: {
4906
- type: "string";
4907
- minLength: number;
4908
- maxLength: number;
4909
- description: string;
4910
- };
4911
- timeoutAt: {
4912
- type: "string";
4913
- format: string;
4914
- description: string;
4915
- };
4916
- createdAt: {
4917
- type: "string";
4918
- format: string;
4919
- description: string;
4920
- };
4921
- updatedAt: {
4922
- type: "string";
4923
- format: string;
4924
- description: string;
4925
- };
4926
- failureReason: {
4927
- type: "string";
4928
- maxLength: number;
4929
- description: string;
4930
- };
4931
- tags: {
4932
- type: "object";
4933
- additionalProperties: {
4934
- type: "string";
4935
- };
4936
- description: string;
4937
- };
4938
- };
4939
- required: string[];
4940
- description: string;
4941
- additionalProperties: false;
4942
- };
4943
- };
4944
- Workflow: {
4945
- section: "workflow";
4946
- schema: {
4947
- type: "object";
4948
- properties: {
4949
- id: {
4950
- type: "string";
4951
- minLength: number;
4952
- maxLength: number;
4953
- description: string;
4954
- };
4955
- name: {
4956
- type: "string";
4957
- maxLength: number;
4958
- description: string;
4959
- };
4960
- status: {
4961
- type: "string";
4962
- enum: string[];
4963
- description: string;
4964
- };
4965
- input: {
4966
- type: "object";
4967
- additionalProperties: true;
4968
- description: string;
4969
- };
4970
- output: {
4971
- type: "object";
4972
- additionalProperties: true;
4973
- description: string;
4974
- };
4975
- parentWorkflowId: {
4976
- type: "string";
4977
- minLength: number;
4978
- maxLength: number;
4979
- description: string;
4980
- };
4981
- conversationId: {
4982
- type: "string";
4983
- minLength: number;
4984
- maxLength: number;
4985
- description: string;
4986
- };
4987
- userId: {
4988
- type: "string";
4989
- minLength: number;
4990
- maxLength: number;
4991
- description: string;
4992
- };
4993
- createdAt: {
4994
- type: "string";
4995
- format: string;
4996
- description: string;
4997
- };
4998
- updatedAt: {
4999
- type: "string";
5000
- format: string;
5001
- description: string;
5002
- };
5003
- completedAt: {
5004
- type: "string";
5005
- format: string;
5006
- description: string;
5007
- };
5008
- failureReason: {
5009
- type: "string";
5010
- maxLength: number;
5011
- description: string;
5012
- };
5013
- timeoutAt: {
5014
- type: "string";
5015
- format: string;
5016
- description: string;
5017
- };
5018
- tags: {
5019
- type: "object";
5020
- additionalProperties: {
5021
- type: "string";
5022
- };
5023
- description: string;
5024
- };
5025
- };
5026
- required: string[];
5027
- description: string;
5028
- additionalProperties: false;
5029
- };
5030
- };
5031
- Table: {
5032
- section: "tables";
5033
- schema: {
5034
- type: "object";
5035
- properties: {
5036
- id: {
5037
- type: "string";
5038
- description: string;
5039
- };
5040
- name: {
5041
- description: string;
5042
- type: "string";
5043
- minLength: number;
5044
- };
5045
- factor: {
5046
- default: number;
5047
- type: "number";
5048
- minimum: number;
5049
- maximum: number;
5050
- description: string;
5051
- };
5052
- frozen: {
5053
- type: "boolean";
5054
- description: string;
5055
- };
5056
- schema: {
5057
- type: "object";
5058
- properties: {
5059
- $schema: {
5060
- type: "string";
5061
- };
5062
- properties: {
5063
- type: "object";
5064
- additionalProperties: {
5065
- type: "object";
5066
- properties: {
5067
- type: {
5068
- type: "string";
5069
- enum: string[];
5070
- };
5071
- format: {
5072
- type: "string";
5073
- enum: string[];
5074
- };
5075
- description: {
5076
- type: "string";
5077
- };
5078
- pattern: {
5079
- type: "string";
5080
- description: string;
5081
- };
5082
- enum: {
5083
- type: "array";
5084
- items: {
5085
- type: "string";
5086
- };
5087
- description: string;
5088
- };
5089
- items: {
5090
- type: "object";
5091
- properties: {
5092
- type: {
5093
- type: "string";
5094
- enum: string[];
5095
- };
5096
- };
5097
- required: string[];
5098
- additionalProperties: true;
5099
- description: string;
5100
- };
5101
- nullable: {
5102
- default: boolean;
5103
- type: "boolean";
5104
- };
5105
- properties: {
5106
- type: "object";
5107
- additionalProperties: {
5108
- type: "object";
5109
- properties: {
5110
- type: {
5111
- type: "string";
5112
- enum: string[];
5113
- };
5114
- };
5115
- required: string[];
5116
- additionalProperties: true;
5117
- };
5118
- };
5119
- "x-zui": {
5120
- type: "object";
5121
- properties: {
5122
- index: {
5123
- type: "integer";
5124
- };
5125
- id: {
5126
- type: "string";
5127
- description: string;
5128
- };
5129
- searchable: {
5130
- type: "boolean";
5131
- description: string;
5132
- };
5133
- hidden: {
5134
- type: "boolean";
5135
- description: string;
5136
- };
5137
- order: {
5138
- type: "number";
5139
- description: string;
5140
- };
5141
- width: {
5142
- type: "number";
5143
- description: string;
5144
- };
5145
- schemaId: {
5146
- type: "string";
5147
- description: string;
5148
- };
5149
- computed: {
5150
- type: "object";
5151
- properties: {
5152
- action: {
5153
- type: "string";
5154
- enum: string[];
5155
- };
5156
- dependencies: {
5157
- default: never[];
5158
- type: "array";
5159
- items: {
5160
- type: "string";
5161
- };
5162
- };
5163
- prompt: {
5164
- type: "string";
5165
- description: string;
5166
- };
5167
- code: {
5168
- type: "string";
5169
- description: string;
5170
- };
5171
- model: {
5172
- default: string;
5173
- type: "string";
5174
- maxLength: number;
5175
- description: string;
5176
- };
5177
- workflowId: {
5178
- type: "string";
5179
- maxLength: number;
5180
- description: string;
5181
- };
5182
- enabled: {
5183
- type: "boolean";
5184
- };
5185
- };
5186
- required: string[];
5187
- additionalProperties: false;
5188
- };
5189
- typings: {
5190
- type: "string";
5191
- description: string;
5192
- };
5193
- };
5194
- required: string[];
5195
- additionalProperties: false;
5196
- };
5197
- };
5198
- required: string[];
5199
- additionalProperties: false;
5200
- };
5201
- description: string;
5202
- };
5203
- additionalProperties: {
5204
- type: "boolean";
5205
- enum: boolean[];
5206
- description: string;
5207
- };
5208
- required: {
5209
- type: "array";
5210
- items: {
5211
- type: "string";
5212
- };
5213
- description: string;
5214
- };
5215
- type: {
5216
- type: "string";
5217
- enum: string[];
5218
- };
5219
- };
5220
- required: string[];
5221
- additionalProperties: false;
5222
- };
5223
- tags: {
5224
- type: "object";
5225
- additionalProperties: {
5226
- type: "string";
5227
- };
2771
+ botId: {
2772
+ type: "string";
2773
+ minLength: number;
2774
+ maxLength: number;
5228
2775
  description: string;
5229
2776
  };
5230
- isComputeEnabled: {
5231
- type: "boolean";
2777
+ conversationId: {
2778
+ type: "string";
2779
+ minLength: number;
2780
+ maxLength: number;
5232
2781
  description: string;
5233
2782
  };
5234
- createdAt: {
2783
+ userId: {
5235
2784
  type: "string";
5236
- format: string;
2785
+ minLength: number;
2786
+ maxLength: number;
5237
2787
  description: string;
5238
2788
  };
5239
- updatedAt: {
2789
+ name: {
5240
2790
  type: "string";
5241
- format: string;
2791
+ maxLength: number;
2792
+ description: string;
2793
+ };
2794
+ type: {
2795
+ type: "string";
2796
+ enum: string[];
2797
+ description: string;
2798
+ };
2799
+ payload: {
2800
+ type: "object";
2801
+ additionalProperties: true;
5242
2802
  description: string;
5243
2803
  };
5244
2804
  };
5245
2805
  required: string[];
2806
+ description: string;
5246
2807
  additionalProperties: false;
5247
2808
  };
5248
2809
  };
5249
- Column: {
5250
- section: "tables";
2810
+ Task: {
2811
+ section: "task";
5251
2812
  schema: {
5252
2813
  type: "object";
5253
2814
  properties: {
5254
2815
  id: {
5255
2816
  type: "string";
2817
+ minLength: number;
2818
+ maxLength: number;
5256
2819
  description: string;
5257
2820
  };
5258
- name: {
2821
+ title: {
5259
2822
  type: "string";
5260
- minLength: number;
5261
2823
  maxLength: number;
5262
2824
  description: string;
5263
2825
  };
5264
2826
  description: {
5265
2827
  type: "string";
2828
+ maxLength: number;
5266
2829
  description: string;
5267
2830
  };
5268
- searchable: {
5269
- type: "boolean";
2831
+ type: {
2832
+ type: "string";
5270
2833
  description: string;
5271
2834
  };
5272
- type: {
2835
+ data: {
2836
+ type: "object";
2837
+ additionalProperties: true;
2838
+ description: string;
2839
+ };
2840
+ status: {
5273
2841
  type: "string";
5274
2842
  enum: string[];
5275
2843
  description: string;
5276
2844
  };
5277
- typings: {
2845
+ parentTaskId: {
5278
2846
  type: "string";
2847
+ minLength: number;
2848
+ maxLength: number;
5279
2849
  description: string;
5280
2850
  };
5281
- computed: {
5282
- type: "object";
5283
- properties: {
5284
- action: {
5285
- type: "string";
5286
- enum: string[];
5287
- };
5288
- dependencies: {
5289
- default: never[];
5290
- type: "array";
5291
- items: {
5292
- type: "string";
5293
- };
5294
- };
5295
- prompt: {
5296
- type: "string";
5297
- description: string;
5298
- };
5299
- code: {
5300
- type: "string";
5301
- description: string;
5302
- };
5303
- model: {
5304
- default: string;
5305
- type: "string";
5306
- maxLength: number;
5307
- description: string;
5308
- };
5309
- workflowId: {
5310
- type: "string";
5311
- maxLength: number;
5312
- description: string;
5313
- };
5314
- enabled: {
5315
- type: "boolean";
5316
- };
5317
- };
5318
- required: string[];
5319
- additionalProperties: false;
2851
+ conversationId: {
2852
+ type: "string";
2853
+ minLength: number;
2854
+ maxLength: number;
2855
+ description: string;
5320
2856
  };
5321
- schema: {
5322
- type: "object";
5323
- additionalProperties: true;
2857
+ userId: {
2858
+ type: "string";
2859
+ minLength: number;
2860
+ maxLength: number;
2861
+ description: string;
5324
2862
  };
5325
- };
5326
- required: string[];
5327
- additionalProperties: false;
5328
- };
5329
- };
5330
- Row: {
5331
- section: "tables";
5332
- schema: {
5333
- type: "object";
5334
- properties: {
5335
- id: {
5336
- type: "number";
2863
+ timeoutAt: {
2864
+ type: "string";
2865
+ format: string;
5337
2866
  description: string;
5338
2867
  };
5339
2868
  createdAt: {
@@ -5346,148 +2875,108 @@ export declare const state: {
5346
2875
  format: string;
5347
2876
  description: string;
5348
2877
  };
5349
- computed: {
2878
+ failureReason: {
2879
+ type: "string";
2880
+ maxLength: number;
2881
+ description: string;
2882
+ };
2883
+ tags: {
5350
2884
  type: "object";
5351
2885
  additionalProperties: {
5352
- type: "object";
5353
- properties: {
5354
- status: {
5355
- type: "string";
5356
- };
5357
- error: {
5358
- type: "string";
5359
- };
5360
- updatedBy: {
5361
- type: "string";
5362
- };
5363
- updatedAt: {
5364
- type: "string";
5365
- };
5366
- };
5367
- required: string[];
5368
- additionalProperties: false;
5369
- };
5370
- };
5371
- stale: {
5372
- type: "array";
5373
- items: {
5374
2886
  type: "string";
5375
2887
  };
5376
2888
  description: string;
5377
2889
  };
5378
- similarity: {
5379
- type: "number";
5380
- description: string;
5381
- };
5382
2890
  };
5383
2891
  required: string[];
5384
- additionalProperties: true;
2892
+ description: string;
2893
+ additionalProperties: false;
5385
2894
  };
5386
2895
  };
5387
- File: {
5388
- section: "files";
2896
+ Workflow: {
2897
+ section: "workflow";
5389
2898
  schema: {
5390
2899
  type: "object";
5391
2900
  properties: {
5392
2901
  id: {
5393
2902
  type: "string";
2903
+ minLength: number;
2904
+ maxLength: number;
5394
2905
  description: string;
5395
2906
  };
5396
- botId: {
2907
+ name: {
5397
2908
  type: "string";
2909
+ maxLength: number;
5398
2910
  description: string;
5399
2911
  };
5400
- key: {
2912
+ status: {
5401
2913
  type: "string";
2914
+ enum: string[];
5402
2915
  description: string;
5403
2916
  };
5404
- url: {
5405
- type: "string";
2917
+ input: {
2918
+ type: "object";
2919
+ additionalProperties: true;
5406
2920
  description: string;
5407
2921
  };
5408
- size: {
5409
- type: "number";
2922
+ output: {
2923
+ type: "object";
2924
+ additionalProperties: true;
5410
2925
  description: string;
5411
- nullable: true;
5412
2926
  };
5413
- contentType: {
2927
+ parentWorkflowId: {
5414
2928
  type: "string";
2929
+ minLength: number;
2930
+ maxLength: number;
5415
2931
  description: string;
5416
2932
  };
5417
- tags: {
5418
- type: "object";
5419
- additionalProperties: {
5420
- type: "string";
5421
- maxLength: number;
5422
- };
2933
+ conversationId: {
2934
+ type: "string";
2935
+ minLength: number;
2936
+ maxLength: number;
5423
2937
  description: string;
5424
2938
  };
5425
- metadata: {
5426
- type: "object";
5427
- additionalProperties: {
5428
- nullable: true;
5429
- };
2939
+ userId: {
2940
+ type: "string";
2941
+ minLength: number;
2942
+ maxLength: number;
5430
2943
  description: string;
5431
2944
  };
5432
2945
  createdAt: {
5433
2946
  type: "string";
2947
+ format: string;
5434
2948
  description: string;
5435
2949
  };
5436
2950
  updatedAt: {
5437
2951
  type: "string";
2952
+ format: string;
5438
2953
  description: string;
5439
2954
  };
5440
- accessPolicies: {
5441
- type: "array";
5442
- items: {
5443
- type: "string";
5444
- enum: string[];
5445
- };
5446
- description: string;
5447
- };
5448
- index: {
5449
- type: "boolean";
5450
- description: string;
5451
- };
5452
- status: {
2955
+ completedAt: {
5453
2956
  type: "string";
5454
- enum: string[];
2957
+ format: string;
5455
2958
  description: string;
5456
2959
  };
5457
- failedStatusReason: {
2960
+ failureReason: {
5458
2961
  type: "string";
2962
+ maxLength: number;
5459
2963
  description: string;
5460
2964
  };
5461
- expiresAt: {
2965
+ timeoutAt: {
5462
2966
  type: "string";
2967
+ format: string;
5463
2968
  description: string;
5464
2969
  };
5465
- owner: {
2970
+ tags: {
5466
2971
  type: "object";
5467
- properties: {
5468
- type: {
5469
- type: "string";
5470
- enum: string[];
5471
- };
5472
- id: {
5473
- type: "string";
5474
- description: string;
5475
- };
5476
- name: {
5477
- type: "string";
5478
- description: string;
5479
- };
2972
+ additionalProperties: {
2973
+ type: "string";
5480
2974
  };
5481
- required: string[];
5482
- additionalProperties: false;
5483
- };
5484
- indexingStack: {
5485
- type: "string";
5486
- enum: string[];
5487
2975
  description: string;
5488
2976
  };
5489
2977
  };
5490
2978
  required: string[];
2979
+ description: string;
5491
2980
  additionalProperties: false;
5492
2981
  };
5493
2982
  };
@@ -5523,8 +3012,8 @@ export declare const state: {
5523
3012
  operations: string[];
5524
3013
  schema: string;
5525
3014
  } | {
5526
- title: string;
5527
3015
  description: string;
3016
+ title: string;
5528
3017
  name: "hub";
5529
3018
  operations: never[];
5530
3019
  schema?: undefined;
@@ -5552,84 +3041,6 @@ export declare const state: {
5552
3041
  name: "tag";
5553
3042
  operations: string[];
5554
3043
  schema?: undefined;
5555
- } | {
5556
- title: string;
5557
- description: string;
5558
- name: "bot";
5559
- operations: never[];
5560
- schema: string;
5561
- } | {
5562
- title: string;
5563
- description: string;
5564
- name: "integration";
5565
- operations: never[];
5566
- schema: string;
5567
- } | {
5568
- title: string;
5569
- description: string;
5570
- name: "interface";
5571
- operations: never[];
5572
- schema: string;
5573
- } | {
5574
- title: string;
5575
- description: string;
5576
- name: "plugin";
5577
- operations: never[];
5578
- schema: string;
5579
- } | {
5580
- title: string;
5581
- description: string;
5582
- name: "workspace";
5583
- operations: never[];
5584
- schema: string;
5585
- } | {
5586
- title: string;
5587
- description: string;
5588
- name: "workspaceMember";
5589
- operations: never[];
5590
- schema: string;
5591
- } | {
5592
- title: string;
5593
- description: string;
5594
- name: "account";
5595
- operations: never[];
5596
- schema: string;
5597
- } | {
5598
- title: string;
5599
- description: string;
5600
- name: "usage";
5601
- operations: never[];
5602
- schema: string;
5603
- } | {
5604
- title: string;
5605
- description: string;
5606
- name: "quotas";
5607
- operations: never[];
5608
- schema?: undefined;
5609
- } | {
5610
- title: string;
5611
- description: string;
5612
- name: "helper";
5613
- operations: never[];
5614
- schema?: undefined;
5615
- } | {
5616
- title: string;
5617
- description: string;
5618
- name: "activity";
5619
- operations: never[];
5620
- schema: string;
5621
- } | {
5622
- title: string;
5623
- description: string;
5624
- name: "tables";
5625
- operations: never[];
5626
- schema: string;
5627
- } | {
5628
- title: string;
5629
- description: string;
5630
- name: "files";
5631
- operations: never[];
5632
- schema: string;
5633
3044
  })[];
5634
3045
  options: {
5635
3046
  allowUnions: false;