@marketrix.ai/widget 3.2.195 → 3.2.197
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/sdk/index.d.ts +377 -0
- package/dist/src/sdk/index.d.ts.map +1 -1
- package/dist/src/sdk/routes.d.ts +377 -0
- package/dist/src/sdk/routes.d.ts.map +1 -1
- package/dist/src/sdk/schema.d.ts +146 -0
- package/dist/src/sdk/schema.d.ts.map +1 -1
- package/dist/widget.mjs +63 -63
- package/dist/widget.mjs.map +1 -1
- package/package.json +1 -1
package/dist/src/sdk/index.d.ts
CHANGED
|
@@ -2004,6 +2004,349 @@ export declare const sdk: {
|
|
|
2004
2004
|
started_at: import("zod").ZodCoercedDate<unknown>;
|
|
2005
2005
|
completed_at: import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>;
|
|
2006
2006
|
}, import("zod/v4/core").$strip>>, Record<never, never>>;
|
|
2007
|
+
connectionGet: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
2008
|
+
provider: import("zod").ZodEnum<{
|
|
2009
|
+
slack: "slack";
|
|
2010
|
+
github: "github";
|
|
2011
|
+
teams: "teams";
|
|
2012
|
+
jira: "jira";
|
|
2013
|
+
}>;
|
|
2014
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2015
|
+
id: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2016
|
+
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2017
|
+
updated_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2018
|
+
workspace_id: import("zod").ZodNumber;
|
|
2019
|
+
provider: import("zod").ZodEnum<{
|
|
2020
|
+
slack: "slack";
|
|
2021
|
+
github: "github";
|
|
2022
|
+
teams: "teams";
|
|
2023
|
+
jira: "jira";
|
|
2024
|
+
}>;
|
|
2025
|
+
status: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
2026
|
+
connected: "connected";
|
|
2027
|
+
disconnected: "disconnected";
|
|
2028
|
+
}>>;
|
|
2029
|
+
provider_data: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
2030
|
+
connected_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
2031
|
+
}, import("zod/v4/core").$strip>>, Record<never, never>>;
|
|
2032
|
+
connectionDelete: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
2033
|
+
provider: import("zod").ZodEnum<{
|
|
2034
|
+
slack: "slack";
|
|
2035
|
+
github: "github";
|
|
2036
|
+
teams: "teams";
|
|
2037
|
+
jira: "jira";
|
|
2038
|
+
}>;
|
|
2039
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2040
|
+
success: import("zod").ZodBoolean;
|
|
2041
|
+
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
2042
|
+
connectionRefresh: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
2043
|
+
provider: import("zod").ZodEnum<{
|
|
2044
|
+
slack: "slack";
|
|
2045
|
+
github: "github";
|
|
2046
|
+
teams: "teams";
|
|
2047
|
+
jira: "jira";
|
|
2048
|
+
}>;
|
|
2049
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2050
|
+
id: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2051
|
+
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2052
|
+
updated_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2053
|
+
workspace_id: import("zod").ZodNumber;
|
|
2054
|
+
provider: import("zod").ZodEnum<{
|
|
2055
|
+
slack: "slack";
|
|
2056
|
+
github: "github";
|
|
2057
|
+
teams: "teams";
|
|
2058
|
+
jira: "jira";
|
|
2059
|
+
}>;
|
|
2060
|
+
status: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
2061
|
+
connected: "connected";
|
|
2062
|
+
disconnected: "disconnected";
|
|
2063
|
+
}>>;
|
|
2064
|
+
provider_data: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
2065
|
+
connected_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
2066
|
+
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
2067
|
+
triggerCreate: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
2068
|
+
connection_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2069
|
+
provider: import("zod").ZodEnum<{
|
|
2070
|
+
slack: "slack";
|
|
2071
|
+
timer: "timer";
|
|
2072
|
+
github: "github";
|
|
2073
|
+
teams: "teams";
|
|
2074
|
+
jira: "jira";
|
|
2075
|
+
}>;
|
|
2076
|
+
name: import("zod").ZodString;
|
|
2077
|
+
source_config: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
2078
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2079
|
+
id: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2080
|
+
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2081
|
+
updated_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2082
|
+
workspace_id: import("zod").ZodNumber;
|
|
2083
|
+
connection_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2084
|
+
provider: import("zod").ZodEnum<{
|
|
2085
|
+
slack: "slack";
|
|
2086
|
+
timer: "timer";
|
|
2087
|
+
github: "github";
|
|
2088
|
+
teams: "teams";
|
|
2089
|
+
jira: "jira";
|
|
2090
|
+
}>;
|
|
2091
|
+
name: import("zod").ZodString;
|
|
2092
|
+
source_config: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
2093
|
+
webhook_id: import("zod").ZodString;
|
|
2094
|
+
webhook_secret: import("zod").ZodString;
|
|
2095
|
+
enabled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
2096
|
+
last_triggered_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
2097
|
+
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
2098
|
+
triggerGet: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
2099
|
+
trigger_id: import("zod").ZodCoercedNumber<unknown>;
|
|
2100
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2101
|
+
id: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2102
|
+
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2103
|
+
updated_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2104
|
+
workspace_id: import("zod").ZodNumber;
|
|
2105
|
+
connection_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2106
|
+
provider: import("zod").ZodEnum<{
|
|
2107
|
+
slack: "slack";
|
|
2108
|
+
timer: "timer";
|
|
2109
|
+
github: "github";
|
|
2110
|
+
teams: "teams";
|
|
2111
|
+
jira: "jira";
|
|
2112
|
+
}>;
|
|
2113
|
+
name: import("zod").ZodString;
|
|
2114
|
+
source_config: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
2115
|
+
webhook_id: import("zod").ZodString;
|
|
2116
|
+
webhook_secret: import("zod").ZodString;
|
|
2117
|
+
enabled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
2118
|
+
last_triggered_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
2119
|
+
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
2120
|
+
triggerSearch: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
2121
|
+
provider: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
2122
|
+
slack: "slack";
|
|
2123
|
+
timer: "timer";
|
|
2124
|
+
github: "github";
|
|
2125
|
+
teams: "teams";
|
|
2126
|
+
jira: "jira";
|
|
2127
|
+
}>>;
|
|
2128
|
+
connection_id: import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>;
|
|
2129
|
+
limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>>;
|
|
2130
|
+
offset: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>>;
|
|
2131
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2132
|
+
items: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2133
|
+
id: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2134
|
+
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2135
|
+
updated_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2136
|
+
workspace_id: import("zod").ZodNumber;
|
|
2137
|
+
connection_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2138
|
+
provider: import("zod").ZodEnum<{
|
|
2139
|
+
slack: "slack";
|
|
2140
|
+
timer: "timer";
|
|
2141
|
+
github: "github";
|
|
2142
|
+
teams: "teams";
|
|
2143
|
+
jira: "jira";
|
|
2144
|
+
}>;
|
|
2145
|
+
name: import("zod").ZodString;
|
|
2146
|
+
source_config: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
2147
|
+
webhook_id: import("zod").ZodString;
|
|
2148
|
+
webhook_secret: import("zod").ZodString;
|
|
2149
|
+
enabled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
2150
|
+
last_triggered_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
2151
|
+
}, import("zod/v4/core").$strip>>;
|
|
2152
|
+
total: import("zod").ZodNumber;
|
|
2153
|
+
limit: import("zod").ZodNumber;
|
|
2154
|
+
offset: import("zod").ZodNumber;
|
|
2155
|
+
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
2156
|
+
triggerUpdate: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
2157
|
+
trigger_id: import("zod").ZodCoercedNumber<unknown>;
|
|
2158
|
+
name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2159
|
+
source_config: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
2160
|
+
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2161
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2162
|
+
id: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2163
|
+
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2164
|
+
updated_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2165
|
+
workspace_id: import("zod").ZodNumber;
|
|
2166
|
+
connection_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2167
|
+
provider: import("zod").ZodEnum<{
|
|
2168
|
+
slack: "slack";
|
|
2169
|
+
timer: "timer";
|
|
2170
|
+
github: "github";
|
|
2171
|
+
teams: "teams";
|
|
2172
|
+
jira: "jira";
|
|
2173
|
+
}>;
|
|
2174
|
+
name: import("zod").ZodString;
|
|
2175
|
+
source_config: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
2176
|
+
webhook_id: import("zod").ZodString;
|
|
2177
|
+
webhook_secret: import("zod").ZodString;
|
|
2178
|
+
enabled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
2179
|
+
last_triggered_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
2180
|
+
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
2181
|
+
triggerDelete: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
2182
|
+
trigger_id: import("zod").ZodCoercedNumber<unknown>;
|
|
2183
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2184
|
+
success: import("zod").ZodBoolean;
|
|
2185
|
+
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
2186
|
+
triggerToggle: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
2187
|
+
trigger_id: import("zod").ZodCoercedNumber<unknown>;
|
|
2188
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2189
|
+
id: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2190
|
+
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2191
|
+
updated_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2192
|
+
workspace_id: import("zod").ZodNumber;
|
|
2193
|
+
connection_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2194
|
+
provider: import("zod").ZodEnum<{
|
|
2195
|
+
slack: "slack";
|
|
2196
|
+
timer: "timer";
|
|
2197
|
+
github: "github";
|
|
2198
|
+
teams: "teams";
|
|
2199
|
+
jira: "jira";
|
|
2200
|
+
}>;
|
|
2201
|
+
name: import("zod").ZodString;
|
|
2202
|
+
source_config: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
2203
|
+
webhook_id: import("zod").ZodString;
|
|
2204
|
+
webhook_secret: import("zod").ZodString;
|
|
2205
|
+
enabled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
2206
|
+
last_triggered_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
2207
|
+
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
2208
|
+
actionCreate: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
2209
|
+
connection_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2210
|
+
provider: import("zod").ZodEnum<{
|
|
2211
|
+
slack: "slack";
|
|
2212
|
+
github: "github";
|
|
2213
|
+
teams: "teams";
|
|
2214
|
+
jira: "jira";
|
|
2215
|
+
internal: "internal";
|
|
2216
|
+
}>;
|
|
2217
|
+
name: import("zod").ZodString;
|
|
2218
|
+
type: import("zod").ZodString;
|
|
2219
|
+
target_config: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
2220
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2221
|
+
id: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2222
|
+
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2223
|
+
updated_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2224
|
+
workspace_id: import("zod").ZodNumber;
|
|
2225
|
+
connection_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2226
|
+
provider: import("zod").ZodEnum<{
|
|
2227
|
+
slack: "slack";
|
|
2228
|
+
github: "github";
|
|
2229
|
+
teams: "teams";
|
|
2230
|
+
jira: "jira";
|
|
2231
|
+
internal: "internal";
|
|
2232
|
+
}>;
|
|
2233
|
+
name: import("zod").ZodString;
|
|
2234
|
+
type: import("zod").ZodString;
|
|
2235
|
+
target_config: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
2236
|
+
is_default: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
2237
|
+
enabled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
2238
|
+
last_executed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
2239
|
+
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
2240
|
+
actionGet: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
2241
|
+
action_id: import("zod").ZodCoercedNumber<unknown>;
|
|
2242
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2243
|
+
id: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2244
|
+
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2245
|
+
updated_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2246
|
+
workspace_id: import("zod").ZodNumber;
|
|
2247
|
+
connection_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2248
|
+
provider: import("zod").ZodEnum<{
|
|
2249
|
+
slack: "slack";
|
|
2250
|
+
github: "github";
|
|
2251
|
+
teams: "teams";
|
|
2252
|
+
jira: "jira";
|
|
2253
|
+
internal: "internal";
|
|
2254
|
+
}>;
|
|
2255
|
+
name: import("zod").ZodString;
|
|
2256
|
+
type: import("zod").ZodString;
|
|
2257
|
+
target_config: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
2258
|
+
is_default: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
2259
|
+
enabled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
2260
|
+
last_executed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
2261
|
+
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
2262
|
+
actionSearch: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
2263
|
+
provider: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
2264
|
+
slack: "slack";
|
|
2265
|
+
github: "github";
|
|
2266
|
+
teams: "teams";
|
|
2267
|
+
jira: "jira";
|
|
2268
|
+
internal: "internal";
|
|
2269
|
+
}>>;
|
|
2270
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2271
|
+
limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>>;
|
|
2272
|
+
offset: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>>;
|
|
2273
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2274
|
+
items: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2275
|
+
id: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2276
|
+
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2277
|
+
updated_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2278
|
+
workspace_id: import("zod").ZodNumber;
|
|
2279
|
+
connection_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2280
|
+
provider: import("zod").ZodEnum<{
|
|
2281
|
+
slack: "slack";
|
|
2282
|
+
github: "github";
|
|
2283
|
+
teams: "teams";
|
|
2284
|
+
jira: "jira";
|
|
2285
|
+
internal: "internal";
|
|
2286
|
+
}>;
|
|
2287
|
+
name: import("zod").ZodString;
|
|
2288
|
+
type: import("zod").ZodString;
|
|
2289
|
+
target_config: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
2290
|
+
is_default: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
2291
|
+
enabled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
2292
|
+
last_executed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
2293
|
+
}, import("zod/v4/core").$strip>>;
|
|
2294
|
+
total: import("zod").ZodNumber;
|
|
2295
|
+
limit: import("zod").ZodNumber;
|
|
2296
|
+
offset: import("zod").ZodNumber;
|
|
2297
|
+
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
2298
|
+
actionUpdate: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
2299
|
+
action_id: import("zod").ZodCoercedNumber<unknown>;
|
|
2300
|
+
name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2301
|
+
target_config: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
2302
|
+
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2303
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2304
|
+
id: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2305
|
+
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2306
|
+
updated_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2307
|
+
workspace_id: import("zod").ZodNumber;
|
|
2308
|
+
connection_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2309
|
+
provider: import("zod").ZodEnum<{
|
|
2310
|
+
slack: "slack";
|
|
2311
|
+
github: "github";
|
|
2312
|
+
teams: "teams";
|
|
2313
|
+
jira: "jira";
|
|
2314
|
+
internal: "internal";
|
|
2315
|
+
}>;
|
|
2316
|
+
name: import("zod").ZodString;
|
|
2317
|
+
type: import("zod").ZodString;
|
|
2318
|
+
target_config: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
2319
|
+
is_default: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
2320
|
+
enabled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
2321
|
+
last_executed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
2322
|
+
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
2323
|
+
actionDelete: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
2324
|
+
action_id: import("zod").ZodCoercedNumber<unknown>;
|
|
2325
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2326
|
+
success: import("zod").ZodBoolean;
|
|
2327
|
+
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
2328
|
+
actionToggle: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
2329
|
+
action_id: import("zod").ZodCoercedNumber<unknown>;
|
|
2330
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2331
|
+
id: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2332
|
+
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2333
|
+
updated_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2334
|
+
workspace_id: import("zod").ZodNumber;
|
|
2335
|
+
connection_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2336
|
+
provider: import("zod").ZodEnum<{
|
|
2337
|
+
slack: "slack";
|
|
2338
|
+
github: "github";
|
|
2339
|
+
teams: "teams";
|
|
2340
|
+
jira: "jira";
|
|
2341
|
+
internal: "internal";
|
|
2342
|
+
}>;
|
|
2343
|
+
name: import("zod").ZodString;
|
|
2344
|
+
type: import("zod").ZodString;
|
|
2345
|
+
target_config: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
2346
|
+
is_default: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
2347
|
+
enabled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
2348
|
+
last_executed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
2349
|
+
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
2007
2350
|
connectorCapabilities: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{}, import("zod/v4/core").$strip>, import("zod").ZodArray<import("zod").ZodObject<{
|
|
2008
2351
|
connector_type: import("zod").ZodString;
|
|
2009
2352
|
built_in: import("zod").ZodBoolean;
|
|
@@ -3653,6 +3996,40 @@ export declare const sdk: {
|
|
|
3653
3996
|
message: import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString>]>;
|
|
3654
3997
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3655
3998
|
}, import("zod/v4/core").$strip>>, Record<never, never>>;
|
|
3999
|
+
simulationGet: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
4000
|
+
simulation_id: import("zod").ZodCoercedNumber<unknown>;
|
|
4001
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4002
|
+
id: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4003
|
+
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
4004
|
+
updated_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
4005
|
+
application_id: import("zod").ZodNumber;
|
|
4006
|
+
agent_id: import("zod").ZodNumber;
|
|
4007
|
+
job_id: import("zod").ZodString;
|
|
4008
|
+
session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4009
|
+
status: import("zod").ZodString;
|
|
4010
|
+
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4011
|
+
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4012
|
+
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4013
|
+
num_steps: import("zod").ZodNumber;
|
|
4014
|
+
pinned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4015
|
+
source: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4016
|
+
direct: "direct";
|
|
4017
|
+
qa: "qa";
|
|
4018
|
+
}>>;
|
|
4019
|
+
agent_name: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4020
|
+
graph_index_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4021
|
+
progress_log: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4022
|
+
status: import("zod").ZodString;
|
|
4023
|
+
status_message: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4024
|
+
num_steps: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
4025
|
+
created_at: import("zod").ZodCoercedDate<unknown>;
|
|
4026
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4027
|
+
agents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4028
|
+
id: import("zod").ZodNumber;
|
|
4029
|
+
agent_name: import("zod").ZodString;
|
|
4030
|
+
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4031
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4032
|
+
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
3656
4033
|
simulationSearch: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
3657
4034
|
workspace_id: import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>;
|
|
3658
4035
|
application_id: import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/sdk/index.ts"],"names":[],"mappings":"AA4BA;;;GAGG;AACH,eAAO,MAAM,YAAY,GAAI,QAAQ,MAAM,SAQ1C,CAAC;AAoBF,eAAO,MAAM,GAAG
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/sdk/index.ts"],"names":[],"mappings":"AA4BA;;;GAGG;AACH,eAAO,MAAM,YAAY,GAAI,QAAQ,MAAM,SAQ1C,CAAC;AAoBF,eAAO,MAAM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0BAhBQ,MAAM;;;wBAZO,MAAM;CAmCzC,CAAC;AAGH,cAAc,UAAU,CAAC;AAGzB,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC"}
|