commandbar 1.7.3 → 1.8.4
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/build/commandbar-js/src/index.js +1 -1
- package/package.json +2 -2
- package/src/snippet.ts +1 -0
- package/build/internal/src/client/AddContextOptions.d.ts +0 -123
- package/build/internal/src/client/AnalyticsEventTypes.d.ts +0 -1
- package/build/internal/src/client/CommandBarClientSDK.d.ts +0 -376
- package/build/internal/src/client/CommandBarProxySDK.d.ts +0 -49
- package/build/internal/src/client/CommandBarSDK.d.ts +0 -65
- package/build/internal/src/client/EventHandler.d.ts +0 -207
- package/build/internal/src/client/OrgConfig.d.ts +0 -5
- package/build/internal/src/client/SDKConfig.d.ts +0 -13
- package/build/internal/src/client/SentryReporter.d.ts +0 -62
- package/build/internal/src/client/globals.d.ts +0 -20
- package/build/internal/src/client/proxy.d.ts +0 -15
- package/build/internal/src/client/symbols.d.ts +0 -41
- package/build/internal/src/middleware/CommandFromClientV.d.ts +0 -290
- package/build/internal/src/middleware/ICommandFromClientType.d.ts +0 -5
- package/build/internal/src/middleware/IResourceSettings.d.ts +0 -3
- package/build/internal/src/middleware/OrganizationV.d.ts +0 -177
- package/build/internal/src/middleware/ResourceSettingsV.d.ts +0 -91
- package/build/internal/src/middleware/checklist.d.ts +0 -740
- package/build/internal/src/middleware/command.d.ts +0 -6678
- package/build/internal/src/middleware/commandCategory.d.ts +0 -192
- package/build/internal/src/middleware/confetti.d.ts +0 -16
- package/build/internal/src/middleware/context.d.ts +0 -40
- package/build/internal/src/middleware/dashboardFlags.d.ts +0 -9
- package/build/internal/src/middleware/detailPreview.d.ts +0 -24
- package/build/internal/src/middleware/environment.d.ts +0 -11
- package/build/internal/src/middleware/generics.d.ts +0 -40
- package/build/internal/src/middleware/guide.d.ts +0 -37
- package/build/internal/src/middleware/helpDocsIntegration.d.ts +0 -66
- package/build/internal/src/middleware/helpDocsSync.d.ts +0 -42
- package/build/internal/src/middleware/helpers/actions.d.ts +0 -84
- package/build/internal/src/middleware/helpers/argument.d.ts +0 -448
- package/build/internal/src/middleware/helpers/commandTemplate.d.ts +0 -225
- package/build/internal/src/middleware/helpers/endUser.d.ts +0 -11
- package/build/internal/src/middleware/helpers/goals.d.ts +0 -26
- package/build/internal/src/middleware/helpers/optionGroup.d.ts +0 -2
- package/build/internal/src/middleware/helpers/rules.d.ts +0 -260
- package/build/internal/src/middleware/helpers/tags.d.ts +0 -7
- package/build/internal/src/middleware/historyEvent.d.ts +0 -21
- package/build/internal/src/middleware/network.d.ts +0 -4
- package/build/internal/src/middleware/nudge.d.ts +0 -1057
- package/build/internal/src/middleware/organization.d.ts +0 -978
- package/build/internal/src/middleware/placeholder.d.ts +0 -47
- package/build/internal/src/middleware/profile.d.ts +0 -11
- package/build/internal/src/middleware/releases.d.ts +0 -261
- package/build/internal/src/middleware/skin.d.ts +0 -94
- package/build/internal/src/middleware/tab.d.ts +0 -27
- package/build/internal/src/middleware/types.d.ts +0 -155
- package/build/internal/src/middleware/user.d.ts +0 -15
- package/build/internal/src/util/Disposable.d.ts +0 -17
- package/build/internal/src/util/LocalStorage.d.ts +0 -6
- package/build/internal/src/util/Logger.d.ts +0 -18
- package/build/internal/src/util/dispatchCustomEvent.d.ts +0 -2
| @@ -1,448 +0,0 @@ | |
| 1 | 
            -
            /*******************************************************************************/
         | 
| 2 | 
            -
            import * as t from 'io-ts';
         | 
| 3 | 
            -
            /*******************************************************************************/
         | 
| 4 | 
            -
            export declare const ConditionOperatorV: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
         | 
| 5 | 
            -
            export declare const ConditionV: t.TypeC<{
         | 
| 6 | 
            -
                field: t.StringC;
         | 
| 7 | 
            -
                operator: t.UnionC<[t.LiteralC<"==">, t.LiteralC<"!=">, t.LiteralC<"isTruthy">, t.LiteralC<"isFalsy">]>;
         | 
| 8 | 
            -
                value: t.UnionC<[t.StringC, t.UndefinedC]>;
         | 
| 9 | 
            -
            }>;
         | 
| 10 | 
            -
            export declare const ContextArgumentV: t.IntersectionC<[t.TypeC<{
         | 
| 11 | 
            -
                type: t.LiteralC<"context">;
         | 
| 12 | 
            -
                value: t.StringC;
         | 
| 13 | 
            -
                order_key: t.NumberC;
         | 
| 14 | 
            -
            }>, t.PartialC<{
         | 
| 15 | 
            -
                label: t.StringC;
         | 
| 16 | 
            -
                chosen: t.UnionC<[t.StringC, t.NumberC]>;
         | 
| 17 | 
            -
                selected: t.ArrayC<t.AnyC>;
         | 
| 18 | 
            -
                input_type: t.StringC;
         | 
| 19 | 
            -
                preselected_key: t.StringC;
         | 
| 20 | 
            -
                label_field: t.StringC;
         | 
| 21 | 
            -
                loaded: t.ArrayC<t.AnyC>;
         | 
| 22 | 
            -
                allow_create: t.BooleanC;
         | 
| 23 | 
            -
                allow_create_label: t.StringC;
         | 
| 24 | 
            -
                show_in_record_action_list: t.BooleanC;
         | 
| 25 | 
            -
                show_in_default_list: t.BooleanC;
         | 
| 26 | 
            -
                auto_choose: t.BooleanC;
         | 
| 27 | 
            -
                is_private: t.BooleanC;
         | 
| 28 | 
            -
            }>]>;
         | 
| 29 | 
            -
            export declare const SetArgumentV: t.IntersectionC<[t.TypeC<{
         | 
| 30 | 
            -
                type: t.LiteralC<"set">;
         | 
| 31 | 
            -
                value: t.UnionC<[t.ArrayC<t.StringC>, t.ArrayC<t.NumberC>, t.ArrayC<t.UnknownRecordC>]>;
         | 
| 32 | 
            -
                order_key: t.NumberC;
         | 
| 33 | 
            -
            }>, t.PartialC<{
         | 
| 34 | 
            -
                label: t.StringC;
         | 
| 35 | 
            -
                chosen: t.UnionC<[t.StringC, t.NumberC]>;
         | 
| 36 | 
            -
                selected: t.ArrayC<t.AnyC>;
         | 
| 37 | 
            -
                input_type: t.StringC;
         | 
| 38 | 
            -
                preselected_key: t.StringC;
         | 
| 39 | 
            -
                label_field: t.StringC;
         | 
| 40 | 
            -
                loaded: t.ArrayC<t.AnyC>;
         | 
| 41 | 
            -
                allow_create: t.BooleanC;
         | 
| 42 | 
            -
                allow_create_label: t.StringC;
         | 
| 43 | 
            -
                auto_choose: t.BooleanC;
         | 
| 44 | 
            -
                is_private: t.BooleanC;
         | 
| 45 | 
            -
            }>]>;
         | 
| 46 | 
            -
            export declare const DashboardV: t.IntersectionC<[t.TypeC<{
         | 
| 47 | 
            -
                source: t.StringC;
         | 
| 48 | 
            -
            }>, t.PartialC<{
         | 
| 49 | 
            -
                title: t.StringC;
         | 
| 50 | 
            -
                description: t.StringC;
         | 
| 51 | 
            -
                url: t.StringC;
         | 
| 52 | 
            -
            }>]>;
         | 
| 53 | 
            -
            export declare const DashboardArgumentV: t.IntersectionC<[t.TypeC<{
         | 
| 54 | 
            -
                type: t.UnionC<[t.LiteralC<"video">, t.LiteralC<"html">]>;
         | 
| 55 | 
            -
                value: t.IntersectionC<[t.TypeC<{
         | 
| 56 | 
            -
                    source: t.StringC;
         | 
| 57 | 
            -
                }>, t.PartialC<{
         | 
| 58 | 
            -
                    title: t.StringC;
         | 
| 59 | 
            -
                    description: t.StringC;
         | 
| 60 | 
            -
                    url: t.StringC;
         | 
| 61 | 
            -
                }>]>;
         | 
| 62 | 
            -
                order_key: t.NumberC;
         | 
| 63 | 
            -
            }>, t.PartialC<{
         | 
| 64 | 
            -
                label: t.StringC;
         | 
| 65 | 
            -
                chosen: t.UnionC<[t.StringC, t.NumberC]>;
         | 
| 66 | 
            -
                selected: t.ArrayC<t.AnyC>;
         | 
| 67 | 
            -
                input_type: t.StringC;
         | 
| 68 | 
            -
                preselected_key: t.StringC;
         | 
| 69 | 
            -
                label_field: t.StringC;
         | 
| 70 | 
            -
                loaded: t.ArrayC<t.AnyC>;
         | 
| 71 | 
            -
                allow_create: t.BooleanC;
         | 
| 72 | 
            -
                allow_create_label: t.StringC;
         | 
| 73 | 
            -
                is_private: t.BooleanC;
         | 
| 74 | 
            -
                auto_choose: t.BooleanC;
         | 
| 75 | 
            -
            }>]>;
         | 
| 76 | 
            -
            export declare const DynamicArgumentV: t.IntersectionC<[t.TypeC<{
         | 
| 77 | 
            -
                type: t.LiteralC<"provided">;
         | 
| 78 | 
            -
                value: t.UnionC<[t.LiteralC<"text">, t.LiteralC<"time">]>;
         | 
| 79 | 
            -
                order_key: t.NumberC;
         | 
| 80 | 
            -
            }>, t.PartialC<{
         | 
| 81 | 
            -
                label: t.StringC;
         | 
| 82 | 
            -
                chosen: t.UnionC<[t.StringC, t.NumberC]>;
         | 
| 83 | 
            -
                selected: t.ArrayC<t.AnyC>;
         | 
| 84 | 
            -
                input_type: t.StringC;
         | 
| 85 | 
            -
                preselected_key: t.StringC;
         | 
| 86 | 
            -
                label_field: t.StringC;
         | 
| 87 | 
            -
                loaded: t.ArrayC<t.AnyC>;
         | 
| 88 | 
            -
                dateTimeArgumentTypeId: t.NumberC;
         | 
| 89 | 
            -
                allow_create: t.BooleanC;
         | 
| 90 | 
            -
                allow_create_label: t.StringC;
         | 
| 91 | 
            -
                auto_choose: t.BooleanC;
         | 
| 92 | 
            -
                is_private: t.BooleanC;
         | 
| 93 | 
            -
            }>]>;
         | 
| 94 | 
            -
            export declare const DependentArgumentV: t.IntersectionC<[t.TypeC<{
         | 
| 95 | 
            -
                type: t.LiteralC<"dependent">;
         | 
| 96 | 
            -
                value: t.StringC;
         | 
| 97 | 
            -
                order_key: t.NumberC;
         | 
| 98 | 
            -
            }>, t.PartialC<{
         | 
| 99 | 
            -
                label: t.StringC;
         | 
| 100 | 
            -
                chosen: t.UnionC<[t.StringC, t.NumberC]>;
         | 
| 101 | 
            -
                selected: t.ArrayC<t.AnyC>;
         | 
| 102 | 
            -
                input_type: t.StringC;
         | 
| 103 | 
            -
                preselected_key: t.StringC;
         | 
| 104 | 
            -
                label_field: t.StringC;
         | 
| 105 | 
            -
                loaded: t.ArrayC<t.AnyC>;
         | 
| 106 | 
            -
                allow_create: t.BooleanC;
         | 
| 107 | 
            -
                allow_create_label: t.StringC;
         | 
| 108 | 
            -
                auto_choose: t.BooleanC;
         | 
| 109 | 
            -
                is_private: t.BooleanC;
         | 
| 110 | 
            -
            }>]>;
         | 
| 111 | 
            -
            export declare const FunctionArgumentV: t.IntersectionC<[t.TypeC<{
         | 
| 112 | 
            -
                type: t.LiteralC<"function">;
         | 
| 113 | 
            -
                value: t.StringC;
         | 
| 114 | 
            -
                order_key: t.NumberC;
         | 
| 115 | 
            -
            }>, t.PartialC<{
         | 
| 116 | 
            -
                label: t.StringC;
         | 
| 117 | 
            -
                chosen: t.UnionC<[t.StringC, t.NumberC]>;
         | 
| 118 | 
            -
                selected: t.ArrayC<t.AnyC>;
         | 
| 119 | 
            -
                input_type: t.StringC;
         | 
| 120 | 
            -
                preselected_key: t.StringC;
         | 
| 121 | 
            -
                label_field: t.StringC;
         | 
| 122 | 
            -
                loaded: t.ArrayC<t.AnyC>;
         | 
| 123 | 
            -
                allow_create: t.BooleanC;
         | 
| 124 | 
            -
                allow_create_label: t.StringC;
         | 
| 125 | 
            -
                auto_choose: t.BooleanC;
         | 
| 126 | 
            -
                is_private: t.BooleanC;
         | 
| 127 | 
            -
            }>]>;
         | 
| 128 | 
            -
            export declare const ArgumentTypeV: t.UnionC<[t.IntersectionC<[t.TypeC<{
         | 
| 129 | 
            -
                type: t.LiteralC<"context">;
         | 
| 130 | 
            -
                value: t.StringC;
         | 
| 131 | 
            -
                order_key: t.NumberC;
         | 
| 132 | 
            -
            }>, t.PartialC<{
         | 
| 133 | 
            -
                label: t.StringC;
         | 
| 134 | 
            -
                chosen: t.UnionC<[t.StringC, t.NumberC]>;
         | 
| 135 | 
            -
                selected: t.ArrayC<t.AnyC>;
         | 
| 136 | 
            -
                input_type: t.StringC;
         | 
| 137 | 
            -
                preselected_key: t.StringC;
         | 
| 138 | 
            -
                label_field: t.StringC;
         | 
| 139 | 
            -
                loaded: t.ArrayC<t.AnyC>;
         | 
| 140 | 
            -
                allow_create: t.BooleanC;
         | 
| 141 | 
            -
                allow_create_label: t.StringC;
         | 
| 142 | 
            -
                show_in_record_action_list: t.BooleanC;
         | 
| 143 | 
            -
                show_in_default_list: t.BooleanC;
         | 
| 144 | 
            -
                auto_choose: t.BooleanC;
         | 
| 145 | 
            -
                is_private: t.BooleanC;
         | 
| 146 | 
            -
            }>]>, t.IntersectionC<[t.TypeC<{
         | 
| 147 | 
            -
                type: t.LiteralC<"set">;
         | 
| 148 | 
            -
                value: t.UnionC<[t.ArrayC<t.StringC>, t.ArrayC<t.NumberC>, t.ArrayC<t.UnknownRecordC>]>;
         | 
| 149 | 
            -
                order_key: t.NumberC;
         | 
| 150 | 
            -
            }>, t.PartialC<{
         | 
| 151 | 
            -
                label: t.StringC;
         | 
| 152 | 
            -
                chosen: t.UnionC<[t.StringC, t.NumberC]>;
         | 
| 153 | 
            -
                selected: t.ArrayC<t.AnyC>;
         | 
| 154 | 
            -
                input_type: t.StringC;
         | 
| 155 | 
            -
                preselected_key: t.StringC;
         | 
| 156 | 
            -
                label_field: t.StringC;
         | 
| 157 | 
            -
                loaded: t.ArrayC<t.AnyC>;
         | 
| 158 | 
            -
                allow_create: t.BooleanC;
         | 
| 159 | 
            -
                allow_create_label: t.StringC;
         | 
| 160 | 
            -
                auto_choose: t.BooleanC;
         | 
| 161 | 
            -
                is_private: t.BooleanC;
         | 
| 162 | 
            -
            }>]>, t.IntersectionC<[t.TypeC<{
         | 
| 163 | 
            -
                type: t.LiteralC<"provided">;
         | 
| 164 | 
            -
                value: t.UnionC<[t.LiteralC<"text">, t.LiteralC<"time">]>;
         | 
| 165 | 
            -
                order_key: t.NumberC;
         | 
| 166 | 
            -
            }>, t.PartialC<{
         | 
| 167 | 
            -
                label: t.StringC;
         | 
| 168 | 
            -
                chosen: t.UnionC<[t.StringC, t.NumberC]>;
         | 
| 169 | 
            -
                selected: t.ArrayC<t.AnyC>;
         | 
| 170 | 
            -
                input_type: t.StringC;
         | 
| 171 | 
            -
                preselected_key: t.StringC;
         | 
| 172 | 
            -
                label_field: t.StringC;
         | 
| 173 | 
            -
                loaded: t.ArrayC<t.AnyC>;
         | 
| 174 | 
            -
                dateTimeArgumentTypeId: t.NumberC;
         | 
| 175 | 
            -
                allow_create: t.BooleanC;
         | 
| 176 | 
            -
                allow_create_label: t.StringC;
         | 
| 177 | 
            -
                auto_choose: t.BooleanC;
         | 
| 178 | 
            -
                is_private: t.BooleanC;
         | 
| 179 | 
            -
            }>]>, t.IntersectionC<[t.TypeC<{
         | 
| 180 | 
            -
                type: t.LiteralC<"dependent">;
         | 
| 181 | 
            -
                value: t.StringC;
         | 
| 182 | 
            -
                order_key: t.NumberC;
         | 
| 183 | 
            -
            }>, t.PartialC<{
         | 
| 184 | 
            -
                label: t.StringC;
         | 
| 185 | 
            -
                chosen: t.UnionC<[t.StringC, t.NumberC]>;
         | 
| 186 | 
            -
                selected: t.ArrayC<t.AnyC>;
         | 
| 187 | 
            -
                input_type: t.StringC;
         | 
| 188 | 
            -
                preselected_key: t.StringC;
         | 
| 189 | 
            -
                label_field: t.StringC;
         | 
| 190 | 
            -
                loaded: t.ArrayC<t.AnyC>;
         | 
| 191 | 
            -
                allow_create: t.BooleanC;
         | 
| 192 | 
            -
                allow_create_label: t.StringC;
         | 
| 193 | 
            -
                auto_choose: t.BooleanC;
         | 
| 194 | 
            -
                is_private: t.BooleanC;
         | 
| 195 | 
            -
            }>]>, t.IntersectionC<[t.TypeC<{
         | 
| 196 | 
            -
                type: t.LiteralC<"function">;
         | 
| 197 | 
            -
                value: t.StringC;
         | 
| 198 | 
            -
                order_key: t.NumberC;
         | 
| 199 | 
            -
            }>, t.PartialC<{
         | 
| 200 | 
            -
                label: t.StringC;
         | 
| 201 | 
            -
                chosen: t.UnionC<[t.StringC, t.NumberC]>;
         | 
| 202 | 
            -
                selected: t.ArrayC<t.AnyC>;
         | 
| 203 | 
            -
                input_type: t.StringC;
         | 
| 204 | 
            -
                preselected_key: t.StringC;
         | 
| 205 | 
            -
                label_field: t.StringC;
         | 
| 206 | 
            -
                loaded: t.ArrayC<t.AnyC>;
         | 
| 207 | 
            -
                allow_create: t.BooleanC;
         | 
| 208 | 
            -
                allow_create_label: t.StringC;
         | 
| 209 | 
            -
                auto_choose: t.BooleanC;
         | 
| 210 | 
            -
                is_private: t.BooleanC;
         | 
| 211 | 
            -
            }>]>, t.IntersectionC<[t.TypeC<{
         | 
| 212 | 
            -
                type: t.UnionC<[t.LiteralC<"video">, t.LiteralC<"html">]>;
         | 
| 213 | 
            -
                value: t.IntersectionC<[t.TypeC<{
         | 
| 214 | 
            -
                    source: t.StringC;
         | 
| 215 | 
            -
                }>, t.PartialC<{
         | 
| 216 | 
            -
                    title: t.StringC;
         | 
| 217 | 
            -
                    description: t.StringC;
         | 
| 218 | 
            -
                    url: t.StringC;
         | 
| 219 | 
            -
                }>]>;
         | 
| 220 | 
            -
                order_key: t.NumberC;
         | 
| 221 | 
            -
            }>, t.PartialC<{
         | 
| 222 | 
            -
                label: t.StringC;
         | 
| 223 | 
            -
                chosen: t.UnionC<[t.StringC, t.NumberC]>;
         | 
| 224 | 
            -
                selected: t.ArrayC<t.AnyC>;
         | 
| 225 | 
            -
                input_type: t.StringC;
         | 
| 226 | 
            -
                preselected_key: t.StringC;
         | 
| 227 | 
            -
                label_field: t.StringC;
         | 
| 228 | 
            -
                loaded: t.ArrayC<t.AnyC>;
         | 
| 229 | 
            -
                allow_create: t.BooleanC;
         | 
| 230 | 
            -
                allow_create_label: t.StringC;
         | 
| 231 | 
            -
                is_private: t.BooleanC;
         | 
| 232 | 
            -
                auto_choose: t.BooleanC;
         | 
| 233 | 
            -
            }>]>]>;
         | 
| 234 | 
            -
            export declare const ArgumentMapV: t.RecordC<t.StringC, t.UnionC<[t.IntersectionC<[t.TypeC<{
         | 
| 235 | 
            -
                type: t.LiteralC<"context">;
         | 
| 236 | 
            -
                value: t.StringC;
         | 
| 237 | 
            -
                order_key: t.NumberC;
         | 
| 238 | 
            -
            }>, t.PartialC<{
         | 
| 239 | 
            -
                label: t.StringC;
         | 
| 240 | 
            -
                chosen: t.UnionC<[t.StringC, t.NumberC]>;
         | 
| 241 | 
            -
                selected: t.ArrayC<t.AnyC>;
         | 
| 242 | 
            -
                input_type: t.StringC;
         | 
| 243 | 
            -
                preselected_key: t.StringC;
         | 
| 244 | 
            -
                label_field: t.StringC;
         | 
| 245 | 
            -
                loaded: t.ArrayC<t.AnyC>;
         | 
| 246 | 
            -
                allow_create: t.BooleanC;
         | 
| 247 | 
            -
                allow_create_label: t.StringC;
         | 
| 248 | 
            -
                show_in_record_action_list: t.BooleanC;
         | 
| 249 | 
            -
                show_in_default_list: t.BooleanC;
         | 
| 250 | 
            -
                auto_choose: t.BooleanC;
         | 
| 251 | 
            -
                is_private: t.BooleanC;
         | 
| 252 | 
            -
            }>]>, t.IntersectionC<[t.TypeC<{
         | 
| 253 | 
            -
                type: t.LiteralC<"set">;
         | 
| 254 | 
            -
                value: t.UnionC<[t.ArrayC<t.StringC>, t.ArrayC<t.NumberC>, t.ArrayC<t.UnknownRecordC>]>;
         | 
| 255 | 
            -
                order_key: t.NumberC;
         | 
| 256 | 
            -
            }>, t.PartialC<{
         | 
| 257 | 
            -
                label: t.StringC;
         | 
| 258 | 
            -
                chosen: t.UnionC<[t.StringC, t.NumberC]>;
         | 
| 259 | 
            -
                selected: t.ArrayC<t.AnyC>;
         | 
| 260 | 
            -
                input_type: t.StringC;
         | 
| 261 | 
            -
                preselected_key: t.StringC;
         | 
| 262 | 
            -
                label_field: t.StringC;
         | 
| 263 | 
            -
                loaded: t.ArrayC<t.AnyC>;
         | 
| 264 | 
            -
                allow_create: t.BooleanC;
         | 
| 265 | 
            -
                allow_create_label: t.StringC;
         | 
| 266 | 
            -
                auto_choose: t.BooleanC;
         | 
| 267 | 
            -
                is_private: t.BooleanC;
         | 
| 268 | 
            -
            }>]>, t.IntersectionC<[t.TypeC<{
         | 
| 269 | 
            -
                type: t.LiteralC<"provided">;
         | 
| 270 | 
            -
                value: t.UnionC<[t.LiteralC<"text">, t.LiteralC<"time">]>;
         | 
| 271 | 
            -
                order_key: t.NumberC;
         | 
| 272 | 
            -
            }>, t.PartialC<{
         | 
| 273 | 
            -
                label: t.StringC;
         | 
| 274 | 
            -
                chosen: t.UnionC<[t.StringC, t.NumberC]>;
         | 
| 275 | 
            -
                selected: t.ArrayC<t.AnyC>;
         | 
| 276 | 
            -
                input_type: t.StringC;
         | 
| 277 | 
            -
                preselected_key: t.StringC;
         | 
| 278 | 
            -
                label_field: t.StringC;
         | 
| 279 | 
            -
                loaded: t.ArrayC<t.AnyC>;
         | 
| 280 | 
            -
                dateTimeArgumentTypeId: t.NumberC;
         | 
| 281 | 
            -
                allow_create: t.BooleanC;
         | 
| 282 | 
            -
                allow_create_label: t.StringC;
         | 
| 283 | 
            -
                auto_choose: t.BooleanC;
         | 
| 284 | 
            -
                is_private: t.BooleanC;
         | 
| 285 | 
            -
            }>]>, t.IntersectionC<[t.TypeC<{
         | 
| 286 | 
            -
                type: t.LiteralC<"dependent">;
         | 
| 287 | 
            -
                value: t.StringC;
         | 
| 288 | 
            -
                order_key: t.NumberC;
         | 
| 289 | 
            -
            }>, t.PartialC<{
         | 
| 290 | 
            -
                label: t.StringC;
         | 
| 291 | 
            -
                chosen: t.UnionC<[t.StringC, t.NumberC]>;
         | 
| 292 | 
            -
                selected: t.ArrayC<t.AnyC>;
         | 
| 293 | 
            -
                input_type: t.StringC;
         | 
| 294 | 
            -
                preselected_key: t.StringC;
         | 
| 295 | 
            -
                label_field: t.StringC;
         | 
| 296 | 
            -
                loaded: t.ArrayC<t.AnyC>;
         | 
| 297 | 
            -
                allow_create: t.BooleanC;
         | 
| 298 | 
            -
                allow_create_label: t.StringC;
         | 
| 299 | 
            -
                auto_choose: t.BooleanC;
         | 
| 300 | 
            -
                is_private: t.BooleanC;
         | 
| 301 | 
            -
            }>]>, t.IntersectionC<[t.TypeC<{
         | 
| 302 | 
            -
                type: t.LiteralC<"function">;
         | 
| 303 | 
            -
                value: t.StringC;
         | 
| 304 | 
            -
                order_key: t.NumberC;
         | 
| 305 | 
            -
            }>, t.PartialC<{
         | 
| 306 | 
            -
                label: t.StringC;
         | 
| 307 | 
            -
                chosen: t.UnionC<[t.StringC, t.NumberC]>;
         | 
| 308 | 
            -
                selected: t.ArrayC<t.AnyC>;
         | 
| 309 | 
            -
                input_type: t.StringC;
         | 
| 310 | 
            -
                preselected_key: t.StringC;
         | 
| 311 | 
            -
                label_field: t.StringC;
         | 
| 312 | 
            -
                loaded: t.ArrayC<t.AnyC>;
         | 
| 313 | 
            -
                allow_create: t.BooleanC;
         | 
| 314 | 
            -
                allow_create_label: t.StringC;
         | 
| 315 | 
            -
                auto_choose: t.BooleanC;
         | 
| 316 | 
            -
                is_private: t.BooleanC;
         | 
| 317 | 
            -
            }>]>, t.IntersectionC<[t.TypeC<{
         | 
| 318 | 
            -
                type: t.UnionC<[t.LiteralC<"video">, t.LiteralC<"html">]>;
         | 
| 319 | 
            -
                value: t.IntersectionC<[t.TypeC<{
         | 
| 320 | 
            -
                    source: t.StringC;
         | 
| 321 | 
            -
                }>, t.PartialC<{
         | 
| 322 | 
            -
                    title: t.StringC;
         | 
| 323 | 
            -
                    description: t.StringC;
         | 
| 324 | 
            -
                    url: t.StringC;
         | 
| 325 | 
            -
                }>]>;
         | 
| 326 | 
            -
                order_key: t.NumberC;
         | 
| 327 | 
            -
            }>, t.PartialC<{
         | 
| 328 | 
            -
                label: t.StringC;
         | 
| 329 | 
            -
                chosen: t.UnionC<[t.StringC, t.NumberC]>;
         | 
| 330 | 
            -
                selected: t.ArrayC<t.AnyC>;
         | 
| 331 | 
            -
                input_type: t.StringC;
         | 
| 332 | 
            -
                preselected_key: t.StringC;
         | 
| 333 | 
            -
                label_field: t.StringC;
         | 
| 334 | 
            -
                loaded: t.ArrayC<t.AnyC>;
         | 
| 335 | 
            -
                allow_create: t.BooleanC;
         | 
| 336 | 
            -
                allow_create_label: t.StringC;
         | 
| 337 | 
            -
                is_private: t.BooleanC;
         | 
| 338 | 
            -
                auto_choose: t.BooleanC;
         | 
| 339 | 
            -
            }>]>]>>;
         | 
| 340 | 
            -
            export declare const StepArgumentTypeV: t.IntersectionC<[t.TypeC<{
         | 
| 341 | 
            -
                userDefinedName: t.StringC;
         | 
| 342 | 
            -
                userDefinedValue: t.StringC;
         | 
| 343 | 
            -
            }>, t.UnionC<[t.IntersectionC<[t.TypeC<{
         | 
| 344 | 
            -
                type: t.LiteralC<"context">;
         | 
| 345 | 
            -
                value: t.StringC;
         | 
| 346 | 
            -
                order_key: t.NumberC;
         | 
| 347 | 
            -
            }>, t.PartialC<{
         | 
| 348 | 
            -
                label: t.StringC;
         | 
| 349 | 
            -
                chosen: t.UnionC<[t.StringC, t.NumberC]>;
         | 
| 350 | 
            -
                selected: t.ArrayC<t.AnyC>;
         | 
| 351 | 
            -
                input_type: t.StringC;
         | 
| 352 | 
            -
                preselected_key: t.StringC;
         | 
| 353 | 
            -
                label_field: t.StringC;
         | 
| 354 | 
            -
                loaded: t.ArrayC<t.AnyC>;
         | 
| 355 | 
            -
                allow_create: t.BooleanC;
         | 
| 356 | 
            -
                allow_create_label: t.StringC;
         | 
| 357 | 
            -
                show_in_record_action_list: t.BooleanC;
         | 
| 358 | 
            -
                show_in_default_list: t.BooleanC;
         | 
| 359 | 
            -
                auto_choose: t.BooleanC;
         | 
| 360 | 
            -
                is_private: t.BooleanC;
         | 
| 361 | 
            -
            }>]>, t.IntersectionC<[t.TypeC<{
         | 
| 362 | 
            -
                type: t.LiteralC<"set">;
         | 
| 363 | 
            -
                value: t.UnionC<[t.ArrayC<t.StringC>, t.ArrayC<t.NumberC>, t.ArrayC<t.UnknownRecordC>]>;
         | 
| 364 | 
            -
                order_key: t.NumberC;
         | 
| 365 | 
            -
            }>, t.PartialC<{
         | 
| 366 | 
            -
                label: t.StringC;
         | 
| 367 | 
            -
                chosen: t.UnionC<[t.StringC, t.NumberC]>;
         | 
| 368 | 
            -
                selected: t.ArrayC<t.AnyC>;
         | 
| 369 | 
            -
                input_type: t.StringC;
         | 
| 370 | 
            -
                preselected_key: t.StringC;
         | 
| 371 | 
            -
                label_field: t.StringC;
         | 
| 372 | 
            -
                loaded: t.ArrayC<t.AnyC>;
         | 
| 373 | 
            -
                allow_create: t.BooleanC;
         | 
| 374 | 
            -
                allow_create_label: t.StringC;
         | 
| 375 | 
            -
                auto_choose: t.BooleanC;
         | 
| 376 | 
            -
                is_private: t.BooleanC;
         | 
| 377 | 
            -
            }>]>, t.IntersectionC<[t.TypeC<{
         | 
| 378 | 
            -
                type: t.LiteralC<"provided">;
         | 
| 379 | 
            -
                value: t.UnionC<[t.LiteralC<"text">, t.LiteralC<"time">]>;
         | 
| 380 | 
            -
                order_key: t.NumberC;
         | 
| 381 | 
            -
            }>, t.PartialC<{
         | 
| 382 | 
            -
                label: t.StringC;
         | 
| 383 | 
            -
                chosen: t.UnionC<[t.StringC, t.NumberC]>;
         | 
| 384 | 
            -
                selected: t.ArrayC<t.AnyC>;
         | 
| 385 | 
            -
                input_type: t.StringC;
         | 
| 386 | 
            -
                preselected_key: t.StringC;
         | 
| 387 | 
            -
                label_field: t.StringC;
         | 
| 388 | 
            -
                loaded: t.ArrayC<t.AnyC>;
         | 
| 389 | 
            -
                dateTimeArgumentTypeId: t.NumberC;
         | 
| 390 | 
            -
                allow_create: t.BooleanC;
         | 
| 391 | 
            -
                allow_create_label: t.StringC;
         | 
| 392 | 
            -
                auto_choose: t.BooleanC;
         | 
| 393 | 
            -
                is_private: t.BooleanC;
         | 
| 394 | 
            -
            }>]>, t.IntersectionC<[t.TypeC<{
         | 
| 395 | 
            -
                type: t.LiteralC<"dependent">;
         | 
| 396 | 
            -
                value: t.StringC;
         | 
| 397 | 
            -
                order_key: t.NumberC;
         | 
| 398 | 
            -
            }>, t.PartialC<{
         | 
| 399 | 
            -
                label: t.StringC;
         | 
| 400 | 
            -
                chosen: t.UnionC<[t.StringC, t.NumberC]>;
         | 
| 401 | 
            -
                selected: t.ArrayC<t.AnyC>;
         | 
| 402 | 
            -
                input_type: t.StringC;
         | 
| 403 | 
            -
                preselected_key: t.StringC;
         | 
| 404 | 
            -
                label_field: t.StringC;
         | 
| 405 | 
            -
                loaded: t.ArrayC<t.AnyC>;
         | 
| 406 | 
            -
                allow_create: t.BooleanC;
         | 
| 407 | 
            -
                allow_create_label: t.StringC;
         | 
| 408 | 
            -
                auto_choose: t.BooleanC;
         | 
| 409 | 
            -
                is_private: t.BooleanC;
         | 
| 410 | 
            -
            }>]>, t.IntersectionC<[t.TypeC<{
         | 
| 411 | 
            -
                type: t.LiteralC<"function">;
         | 
| 412 | 
            -
                value: t.StringC;
         | 
| 413 | 
            -
                order_key: t.NumberC;
         | 
| 414 | 
            -
            }>, t.PartialC<{
         | 
| 415 | 
            -
                label: t.StringC;
         | 
| 416 | 
            -
                chosen: t.UnionC<[t.StringC, t.NumberC]>;
         | 
| 417 | 
            -
                selected: t.ArrayC<t.AnyC>;
         | 
| 418 | 
            -
                input_type: t.StringC;
         | 
| 419 | 
            -
                preselected_key: t.StringC;
         | 
| 420 | 
            -
                label_field: t.StringC;
         | 
| 421 | 
            -
                loaded: t.ArrayC<t.AnyC>;
         | 
| 422 | 
            -
                allow_create: t.BooleanC;
         | 
| 423 | 
            -
                allow_create_label: t.StringC;
         | 
| 424 | 
            -
                auto_choose: t.BooleanC;
         | 
| 425 | 
            -
                is_private: t.BooleanC;
         | 
| 426 | 
            -
            }>]>, t.IntersectionC<[t.TypeC<{
         | 
| 427 | 
            -
                type: t.UnionC<[t.LiteralC<"video">, t.LiteralC<"html">]>;
         | 
| 428 | 
            -
                value: t.IntersectionC<[t.TypeC<{
         | 
| 429 | 
            -
                    source: t.StringC;
         | 
| 430 | 
            -
                }>, t.PartialC<{
         | 
| 431 | 
            -
                    title: t.StringC;
         | 
| 432 | 
            -
                    description: t.StringC;
         | 
| 433 | 
            -
                    url: t.StringC;
         | 
| 434 | 
            -
                }>]>;
         | 
| 435 | 
            -
                order_key: t.NumberC;
         | 
| 436 | 
            -
            }>, t.PartialC<{
         | 
| 437 | 
            -
                label: t.StringC;
         | 
| 438 | 
            -
                chosen: t.UnionC<[t.StringC, t.NumberC]>;
         | 
| 439 | 
            -
                selected: t.ArrayC<t.AnyC>;
         | 
| 440 | 
            -
                input_type: t.StringC;
         | 
| 441 | 
            -
                preselected_key: t.StringC;
         | 
| 442 | 
            -
                label_field: t.StringC;
         | 
| 443 | 
            -
                loaded: t.ArrayC<t.AnyC>;
         | 
| 444 | 
            -
                allow_create: t.BooleanC;
         | 
| 445 | 
            -
                allow_create_label: t.StringC;
         | 
| 446 | 
            -
                is_private: t.BooleanC;
         | 
| 447 | 
            -
                auto_choose: t.BooleanC;
         | 
| 448 | 
            -
            }>]>]>]>;
         | 
| @@ -1,225 +0,0 @@ | |
| 1 | 
            -
            /*******************************************************************************/
         | 
| 2 | 
            -
            import * as t from 'io-ts';
         | 
| 3 | 
            -
            /*******************************************************************************/
         | 
| 4 | 
            -
            export declare const TemplateOptionsV: t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
         | 
| 5 | 
            -
                commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
         | 
| 6 | 
            -
                object: t.StringC;
         | 
| 7 | 
            -
                hoverTooltip: t.BooleanC;
         | 
| 8 | 
            -
                operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
         | 
| 9 | 
            -
            }>]>;
         | 
| 10 | 
            -
            export declare const AdminTemplateV: t.IntersectionC<[t.TypeC<{
         | 
| 11 | 
            -
                type: t.LiteralC<"admin">;
         | 
| 12 | 
            -
                /*******************************************************************************/
         | 
| 13 | 
            -
                value: t.StringC;
         | 
| 14 | 
            -
            }>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
         | 
| 15 | 
            -
                commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
         | 
| 16 | 
            -
                object: t.StringC;
         | 
| 17 | 
            -
                hoverTooltip: t.BooleanC;
         | 
| 18 | 
            -
                operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
         | 
| 19 | 
            -
            }>]>]>;
         | 
| 20 | 
            -
            export declare const CallbackTemplateV: t.IntersectionC<[t.TypeC<{
         | 
| 21 | 
            -
                type: t.LiteralC<"callback">;
         | 
| 22 | 
            -
                value: t.StringC;
         | 
| 23 | 
            -
            }>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
         | 
| 24 | 
            -
                commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
         | 
| 25 | 
            -
                object: t.StringC;
         | 
| 26 | 
            -
                hoverTooltip: t.BooleanC;
         | 
| 27 | 
            -
                operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
         | 
| 28 | 
            -
            }>]>]>;
         | 
| 29 | 
            -
            export declare const LinkTemplateV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
         | 
| 30 | 
            -
                type: t.LiteralC<"link">;
         | 
| 31 | 
            -
                value: t.StringC;
         | 
| 32 | 
            -
            }>, t.PartialC<{
         | 
| 33 | 
            -
                operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
         | 
| 34 | 
            -
            }>]>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
         | 
| 35 | 
            -
                commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
         | 
| 36 | 
            -
                object: t.StringC;
         | 
| 37 | 
            -
                hoverTooltip: t.BooleanC;
         | 
| 38 | 
            -
                operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
         | 
| 39 | 
            -
            }>]>]>;
         | 
| 40 | 
            -
            export declare const ClickTemplateV: t.IntersectionC<[t.TypeC<{
         | 
| 41 | 
            -
                type: t.UnionC<[t.LiteralC<"click">, t.LiteralC<"clickBySelector">, t.LiteralC<"clickByXpath">]>;
         | 
| 42 | 
            -
                value: t.ArrayC<t.StringC>;
         | 
| 43 | 
            -
            }>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
         | 
| 44 | 
            -
                commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
         | 
| 45 | 
            -
                object: t.StringC;
         | 
| 46 | 
            -
                hoverTooltip: t.BooleanC;
         | 
| 47 | 
            -
                operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
         | 
| 48 | 
            -
            }>]>]>;
         | 
| 49 | 
            -
            export declare const BuiltInTemplateV: t.IntersectionC<[t.TypeC<{
         | 
| 50 | 
            -
                type: t.LiteralC<"builtin">;
         | 
| 51 | 
            -
                value: t.StringC;
         | 
| 52 | 
            -
            }>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
         | 
| 53 | 
            -
                commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
         | 
| 54 | 
            -
                object: t.StringC;
         | 
| 55 | 
            -
                hoverTooltip: t.BooleanC;
         | 
| 56 | 
            -
                operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
         | 
| 57 | 
            -
            }>]>]>;
         | 
| 58 | 
            -
            export declare const WebhookTemplateV: t.IntersectionC<[t.TypeC<{
         | 
| 59 | 
            -
                type: t.LiteralC<"webhook">;
         | 
| 60 | 
            -
                value: t.StringC;
         | 
| 61 | 
            -
            }>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
         | 
| 62 | 
            -
                commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
         | 
| 63 | 
            -
                object: t.StringC;
         | 
| 64 | 
            -
                hoverTooltip: t.BooleanC;
         | 
| 65 | 
            -
                operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
         | 
| 66 | 
            -
            }>]>]>;
         | 
| 67 | 
            -
            export declare const ScriptTemplateV: t.IntersectionC<[t.TypeC<{
         | 
| 68 | 
            -
                type: t.LiteralC<"script">;
         | 
| 69 | 
            -
                value: t.StringC;
         | 
| 70 | 
            -
            }>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
         | 
| 71 | 
            -
                commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
         | 
| 72 | 
            -
                object: t.StringC;
         | 
| 73 | 
            -
                hoverTooltip: t.BooleanC;
         | 
| 74 | 
            -
                operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
         | 
| 75 | 
            -
            }>]>]>;
         | 
| 76 | 
            -
            export declare const RequestTemplateV: t.IntersectionC<[t.TypeC<{
         | 
| 77 | 
            -
                type: t.LiteralC<"request">;
         | 
| 78 | 
            -
                value: t.IntersectionC<[t.TypeC<{
         | 
| 79 | 
            -
                    method: t.UnionC<[t.LiteralC<"get">, t.LiteralC<"delete">, t.LiteralC<"head">, t.LiteralC<"options">, t.LiteralC<"post">, t.LiteralC<"put">, t.LiteralC<"patch">]>;
         | 
| 80 | 
            -
                    url: t.StringC;
         | 
| 81 | 
            -
                }>, t.PartialC<{
         | 
| 82 | 
            -
                    headers: t.UnknownRecordC;
         | 
| 83 | 
            -
                    body: t.UnknownRecordC;
         | 
| 84 | 
            -
                    onSend: t.StringC;
         | 
| 85 | 
            -
                    onSuccess: t.StringC;
         | 
| 86 | 
            -
                    onError: t.StringC;
         | 
| 87 | 
            -
                }>]>;
         | 
| 88 | 
            -
            }>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
         | 
| 89 | 
            -
                commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
         | 
| 90 | 
            -
                object: t.StringC;
         | 
| 91 | 
            -
                hoverTooltip: t.BooleanC;
         | 
| 92 | 
            -
                operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
         | 
| 93 | 
            -
            }>]>]>;
         | 
| 94 | 
            -
            export declare const AppcuesTemplateV: t.IntersectionC<[t.TypeC<{
         | 
| 95 | 
            -
                type: t.LiteralC<"appcues">;
         | 
| 96 | 
            -
                value: t.StringC;
         | 
| 97 | 
            -
            }>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
         | 
| 98 | 
            -
                commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
         | 
| 99 | 
            -
                object: t.StringC;
         | 
| 100 | 
            -
                hoverTooltip: t.BooleanC;
         | 
| 101 | 
            -
                operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
         | 
| 102 | 
            -
            }>]>]>;
         | 
| 103 | 
            -
            export declare const VideoTemplateV: t.IntersectionC<[t.TypeC<{
         | 
| 104 | 
            -
                type: t.LiteralC<"video">;
         | 
| 105 | 
            -
                value: t.StringC;
         | 
| 106 | 
            -
            }>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
         | 
| 107 | 
            -
                commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
         | 
| 108 | 
            -
                object: t.StringC;
         | 
| 109 | 
            -
                hoverTooltip: t.BooleanC;
         | 
| 110 | 
            -
                operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
         | 
| 111 | 
            -
            }>]>]>;
         | 
| 112 | 
            -
            export declare const HelpDocTemplateV: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
         | 
| 113 | 
            -
                type: t.LiteralC<"helpdoc">;
         | 
| 114 | 
            -
                value: t.StringC;
         | 
| 115 | 
            -
            }>, t.PartialC<{
         | 
| 116 | 
            -
                operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.LiteralC<"help_explorer">, t.UndefinedC]>;
         | 
| 117 | 
            -
            }>]>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
         | 
| 118 | 
            -
                commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
         | 
| 119 | 
            -
                object: t.StringC;
         | 
| 120 | 
            -
                hoverTooltip: t.BooleanC;
         | 
| 121 | 
            -
                operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
         | 
| 122 | 
            -
            }>]>]>;
         | 
| 123 | 
            -
            export declare const TemplateV: t.UnionC<[t.IntersectionC<[t.TypeC<{
         | 
| 124 | 
            -
                type: t.LiteralC<"admin">;
         | 
| 125 | 
            -
                /*******************************************************************************/
         | 
| 126 | 
            -
                value: t.StringC;
         | 
| 127 | 
            -
            }>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
         | 
| 128 | 
            -
                commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
         | 
| 129 | 
            -
                object: t.StringC;
         | 
| 130 | 
            -
                hoverTooltip: t.BooleanC;
         | 
| 131 | 
            -
                operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
         | 
| 132 | 
            -
            }>]>]>, t.IntersectionC<[t.TypeC<{
         | 
| 133 | 
            -
                type: t.LiteralC<"callback">;
         | 
| 134 | 
            -
                value: t.StringC;
         | 
| 135 | 
            -
            }>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
         | 
| 136 | 
            -
                commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
         | 
| 137 | 
            -
                object: t.StringC;
         | 
| 138 | 
            -
                hoverTooltip: t.BooleanC;
         | 
| 139 | 
            -
                operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
         | 
| 140 | 
            -
            }>]>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
         | 
| 141 | 
            -
                type: t.LiteralC<"link">;
         | 
| 142 | 
            -
                value: t.StringC;
         | 
| 143 | 
            -
            }>, t.PartialC<{
         | 
| 144 | 
            -
                operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.UndefinedC]>;
         | 
| 145 | 
            -
            }>]>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
         | 
| 146 | 
            -
                commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
         | 
| 147 | 
            -
                object: t.StringC;
         | 
| 148 | 
            -
                hoverTooltip: t.BooleanC;
         | 
| 149 | 
            -
                operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
         | 
| 150 | 
            -
            }>]>]>, t.IntersectionC<[t.TypeC<{
         | 
| 151 | 
            -
                type: t.UnionC<[t.LiteralC<"click">, t.LiteralC<"clickBySelector">, t.LiteralC<"clickByXpath">]>;
         | 
| 152 | 
            -
                value: t.ArrayC<t.StringC>;
         | 
| 153 | 
            -
            }>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
         | 
| 154 | 
            -
                commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
         | 
| 155 | 
            -
                object: t.StringC;
         | 
| 156 | 
            -
                hoverTooltip: t.BooleanC;
         | 
| 157 | 
            -
                operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
         | 
| 158 | 
            -
            }>]>]>, t.IntersectionC<[t.TypeC<{
         | 
| 159 | 
            -
                type: t.LiteralC<"builtin">;
         | 
| 160 | 
            -
                value: t.StringC;
         | 
| 161 | 
            -
            }>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
         | 
| 162 | 
            -
                commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
         | 
| 163 | 
            -
                object: t.StringC;
         | 
| 164 | 
            -
                hoverTooltip: t.BooleanC;
         | 
| 165 | 
            -
                operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
         | 
| 166 | 
            -
            }>]>]>, t.IntersectionC<[t.TypeC<{
         | 
| 167 | 
            -
                type: t.LiteralC<"webhook">;
         | 
| 168 | 
            -
                value: t.StringC;
         | 
| 169 | 
            -
            }>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
         | 
| 170 | 
            -
                commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
         | 
| 171 | 
            -
                object: t.StringC;
         | 
| 172 | 
            -
                hoverTooltip: t.BooleanC;
         | 
| 173 | 
            -
                operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
         | 
| 174 | 
            -
            }>]>]>, t.IntersectionC<[t.TypeC<{
         | 
| 175 | 
            -
                type: t.LiteralC<"script">;
         | 
| 176 | 
            -
                value: t.StringC;
         | 
| 177 | 
            -
            }>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
         | 
| 178 | 
            -
                commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
         | 
| 179 | 
            -
                object: t.StringC;
         | 
| 180 | 
            -
                hoverTooltip: t.BooleanC;
         | 
| 181 | 
            -
                operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
         | 
| 182 | 
            -
            }>]>]>, t.IntersectionC<[t.TypeC<{
         | 
| 183 | 
            -
                type: t.LiteralC<"request">;
         | 
| 184 | 
            -
                value: t.IntersectionC<[t.TypeC<{
         | 
| 185 | 
            -
                    method: t.UnionC<[t.LiteralC<"get">, t.LiteralC<"delete">, t.LiteralC<"head">, t.LiteralC<"options">, t.LiteralC<"post">, t.LiteralC<"put">, t.LiteralC<"patch">]>;
         | 
| 186 | 
            -
                    url: t.StringC;
         | 
| 187 | 
            -
                }>, t.PartialC<{
         | 
| 188 | 
            -
                    headers: t.UnknownRecordC;
         | 
| 189 | 
            -
                    body: t.UnknownRecordC;
         | 
| 190 | 
            -
                    onSend: t.StringC;
         | 
| 191 | 
            -
                    onSuccess: t.StringC;
         | 
| 192 | 
            -
                    onError: t.StringC;
         | 
| 193 | 
            -
                }>]>;
         | 
| 194 | 
            -
            }>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
         | 
| 195 | 
            -
                commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
         | 
| 196 | 
            -
                object: t.StringC;
         | 
| 197 | 
            -
                hoverTooltip: t.BooleanC;
         | 
| 198 | 
            -
                operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
         | 
| 199 | 
            -
            }>]>]>, t.IntersectionC<[t.TypeC<{
         | 
| 200 | 
            -
                type: t.LiteralC<"appcues">;
         | 
| 201 | 
            -
                value: t.StringC;
         | 
| 202 | 
            -
            }>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
         | 
| 203 | 
            -
                commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
         | 
| 204 | 
            -
                object: t.StringC;
         | 
| 205 | 
            -
                hoverTooltip: t.BooleanC;
         | 
| 206 | 
            -
                operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
         | 
| 207 | 
            -
            }>]>]>, t.IntersectionC<[t.TypeC<{
         | 
| 208 | 
            -
                type: t.LiteralC<"video">;
         | 
| 209 | 
            -
                value: t.StringC;
         | 
| 210 | 
            -
            }>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
         | 
| 211 | 
            -
                commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
         | 
| 212 | 
            -
                object: t.StringC;
         | 
| 213 | 
            -
                hoverTooltip: t.BooleanC;
         | 
| 214 | 
            -
                operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
         | 
| 215 | 
            -
            }>]>]>, t.IntersectionC<[t.IntersectionC<[t.TypeC<{
         | 
| 216 | 
            -
                type: t.LiteralC<"helpdoc">;
         | 
| 217 | 
            -
                value: t.StringC;
         | 
| 218 | 
            -
            }>, t.PartialC<{
         | 
| 219 | 
            -
                operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"blank">, t.LiteralC<"help_explorer">, t.UndefinedC]>;
         | 
| 220 | 
            -
            }>]>, t.IntersectionC<[t.TypeC<{}>, t.PartialC<{
         | 
| 221 | 
            -
                commandType: t.UnionC<[t.LiteralC<"independent">, t.LiteralC<"object">, t.LiteralC<"help">]>;
         | 
| 222 | 
            -
                object: t.StringC;
         | 
| 223 | 
            -
                hoverTooltip: t.BooleanC;
         | 
| 224 | 
            -
                operation: t.UnionC<[t.LiteralC<"router">, t.LiteralC<"self">, t.LiteralC<"help_explorer">, t.LiteralC<"blank">, t.UndefinedC]>;
         | 
| 225 | 
            -
            }>]>]>]>;
         | 
| @@ -1,11 +0,0 @@ | |
| 1 | 
            -
            import * as t from 'io-ts';
         | 
| 2 | 
            -
            export declare const EndUserV: t.TypeC<{
         | 
| 3 | 
            -
                username: t.StringC;
         | 
| 4 | 
            -
                slug: t.StringC;
         | 
| 5 | 
            -
                organization: t.StringC;
         | 
| 6 | 
            -
                has_access: t.BooleanC;
         | 
| 7 | 
            -
                has_opened: t.BooleanC;
         | 
| 8 | 
            -
                hotkeys_debug: t.BooleanC;
         | 
| 9 | 
            -
                hmac: t.UnionC<[t.StringC, t.UndefinedC]>;
         | 
| 10 | 
            -
                identifier: t.StringC;
         | 
| 11 | 
            -
            }>;
         |