@bowmark/web 1.22.1 → 1.24.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,10 +5,10 @@
5
5
  // declares no readable argument shape — not an absent one, which is what the
6
6
  // guard fails closed on.
7
7
  //
8
- // Manifest version: d7a4e150ac8b92a335cf1f8c899427d12236d7556bd04d8e873ba0729e5a347b
9
- // 1072 checked, 20 unchecked.
8
+ // Manifest version: 0d8827f7a99d497bd9259feb3f5bd13b057c5a6793454c543b7ac1b7c784b9e2
9
+ // 1111 checked, 20 unchecked.
10
10
  export const VALIDATORS = {
11
- "version": "d7a4e150ac8b92a335cf1f8c899427d12236d7556bd04d8e873ba0729e5a347b",
11
+ "version": "0d8827f7a99d497bd9259feb3f5bd13b057c5a6793454c543b7ac1b7c784b9e2",
12
12
  "units": {
13
13
  "booking_links": {
14
14
  "defs": {
@@ -168,6 +168,195 @@ export const VALIDATORS = {
168
168
  ]
169
169
  }
170
170
  },
171
+ "browser_agent": {
172
+ "defs": {
173
+ "BrowserAgentStatusOptions": {
174
+ "k": "object",
175
+ "props": [
176
+ {
177
+ "name": "cursor",
178
+ "schema": {
179
+ "k": "string"
180
+ },
181
+ "optional": true
182
+ },
183
+ {
184
+ "name": "waitMs",
185
+ "schema": {
186
+ "k": "number"
187
+ },
188
+ "optional": true
189
+ },
190
+ {
191
+ "name": "timeoutMs",
192
+ "schema": {
193
+ "k": "number"
194
+ },
195
+ "optional": true
196
+ }
197
+ ]
198
+ },
199
+ "ListBrowserAgentsOptions": {
200
+ "k": "object",
201
+ "props": [
202
+ {
203
+ "name": "open",
204
+ "schema": {
205
+ "k": "boolean"
206
+ },
207
+ "optional": true
208
+ }
209
+ ]
210
+ },
211
+ "SendBrowserAgentOptions": {
212
+ "k": "object",
213
+ "props": [
214
+ {
215
+ "name": "interrupt",
216
+ "schema": {
217
+ "k": "boolean"
218
+ },
219
+ "optional": true
220
+ },
221
+ {
222
+ "name": "timeoutMs",
223
+ "schema": {
224
+ "k": "number"
225
+ },
226
+ "optional": true
227
+ }
228
+ ]
229
+ },
230
+ "StartBrowserAgentOptions": {
231
+ "k": "object",
232
+ "props": [
233
+ {
234
+ "name": "task",
235
+ "schema": {
236
+ "k": "string"
237
+ },
238
+ "optional": false
239
+ },
240
+ {
241
+ "name": "backend",
242
+ "schema": {
243
+ "k": "string"
244
+ },
245
+ "optional": true
246
+ },
247
+ {
248
+ "name": "model",
249
+ "schema": {
250
+ "k": "string"
251
+ },
252
+ "optional": true
253
+ },
254
+ {
255
+ "name": "maxCostUsd",
256
+ "schema": {
257
+ "k": "number"
258
+ },
259
+ "optional": true
260
+ },
261
+ {
262
+ "name": "proxyCountry",
263
+ "schema": {
264
+ "k": "string"
265
+ },
266
+ "optional": true
267
+ },
268
+ {
269
+ "name": "timeoutMs",
270
+ "schema": {
271
+ "k": "number"
272
+ },
273
+ "optional": true
274
+ }
275
+ ]
276
+ }
277
+ },
278
+ "functions": {
279
+ "start": [
280
+ {
281
+ "name": "options",
282
+ "schema": {
283
+ "k": "ref",
284
+ "name": "StartBrowserAgentOptions"
285
+ },
286
+ "optional": false
287
+ }
288
+ ],
289
+ "status": [
290
+ {
291
+ "name": "id",
292
+ "schema": {
293
+ "k": "string"
294
+ },
295
+ "optional": false
296
+ },
297
+ {
298
+ "name": "options",
299
+ "schema": {
300
+ "k": "ref",
301
+ "name": "BrowserAgentStatusOptions"
302
+ },
303
+ "optional": true
304
+ }
305
+ ],
306
+ "send": [
307
+ {
308
+ "name": "id",
309
+ "schema": {
310
+ "k": "string"
311
+ },
312
+ "optional": false
313
+ },
314
+ {
315
+ "name": "message",
316
+ "schema": {
317
+ "k": "string"
318
+ },
319
+ "optional": false
320
+ },
321
+ {
322
+ "name": "options",
323
+ "schema": {
324
+ "k": "ref",
325
+ "name": "SendBrowserAgentOptions"
326
+ },
327
+ "optional": true
328
+ }
329
+ ],
330
+ "stop": [
331
+ {
332
+ "name": "id",
333
+ "schema": {
334
+ "k": "string"
335
+ },
336
+ "optional": false
337
+ }
338
+ ],
339
+ "list": [
340
+ {
341
+ "name": "options",
342
+ "schema": {
343
+ "k": "ref",
344
+ "name": "ListBrowserAgentsOptions"
345
+ },
346
+ "optional": true
347
+ }
348
+ ],
349
+ "watchLink": [
350
+ {
351
+ "name": "id",
352
+ "schema": {
353
+ "k": "string"
354
+ },
355
+ "optional": false
356
+ }
357
+ ]
358
+ }
359
+ },
171
360
  "bundles": {
172
361
  "defs": {},
173
362
  "functions": {
@@ -4717,6 +4906,13 @@ export const VALIDATORS = {
4717
4906
  ]
4718
4907
  },
4719
4908
  "optional": false
4909
+ },
4910
+ {
4911
+ "name": "country",
4912
+ "schema": {
4913
+ "k": "string"
4914
+ },
4915
+ "optional": true
4720
4916
  }
4721
4917
  ]
4722
4918
  },
@@ -4775,6 +4971,13 @@ export const VALIDATORS = {
4775
4971
  "name": "AppStoreChartDevice"
4776
4972
  },
4777
4973
  "optional": true
4974
+ },
4975
+ {
4976
+ "name": "country",
4977
+ "schema": {
4978
+ "k": "string"
4979
+ },
4980
+ "optional": true
4778
4981
  }
4779
4982
  ]
4780
4983
  },
@@ -4886,6 +5089,33 @@ export const VALIDATORS = {
4886
5089
  ]
4887
5090
  },
4888
5091
  "optional": false
5092
+ },
5093
+ {
5094
+ "name": "country",
5095
+ "schema": {
5096
+ "k": "string"
5097
+ },
5098
+ "optional": true
5099
+ }
5100
+ ]
5101
+ },
5102
+ "ListTodayStoriesArgs": {
5103
+ "k": "object",
5104
+ "props": [
5105
+ {
5106
+ "name": "device",
5107
+ "schema": {
5108
+ "k": "ref",
5109
+ "name": "AppStoreChartDevice"
5110
+ },
5111
+ "optional": true
5112
+ },
5113
+ {
5114
+ "name": "country",
5115
+ "schema": {
5116
+ "k": "string"
5117
+ },
5118
+ "optional": true
4889
5119
  }
4890
5120
  ]
4891
5121
  },
@@ -4923,6 +5153,13 @@ export const VALIDATORS = {
4923
5153
  },
4924
5154
  "optional": true
4925
5155
  },
5156
+ {
5157
+ "name": "country",
5158
+ "schema": {
5159
+ "k": "string"
5160
+ },
5161
+ "optional": true
5162
+ },
4926
5163
  {
4927
5164
  "name": "limit",
4928
5165
  "schema": {
@@ -5073,6 +5310,16 @@ export const VALIDATORS = {
5073
5310
  },
5074
5311
  "optional": false
5075
5312
  }
5313
+ ],
5314
+ "listTodayStories": [
5315
+ {
5316
+ "name": "args",
5317
+ "schema": {
5318
+ "k": "ref",
5319
+ "name": "ListTodayStoriesArgs"
5320
+ },
5321
+ "optional": true
5322
+ }
5076
5323
  ]
5077
5324
  }
5078
5325
  },
@@ -5124,6 +5371,27 @@ export const VALIDATORS = {
5124
5371
  "optional": false
5125
5372
  }
5126
5373
  ],
5374
+ "getPurchaseOptions": [
5375
+ {
5376
+ "name": "urlOrPath",
5377
+ "schema": {
5378
+ "k": "string"
5379
+ },
5380
+ "optional": false
5381
+ }
5382
+ ],
5383
+ "compareModels": [
5384
+ {
5385
+ "name": "models",
5386
+ "schema": {
5387
+ "k": "array",
5388
+ "of": {
5389
+ "k": "string"
5390
+ }
5391
+ },
5392
+ "optional": false
5393
+ }
5394
+ ],
5127
5395
  "listFamilyModels": [
5128
5396
  {
5129
5397
  "name": "family",
@@ -5194,6 +5462,88 @@ export const VALIDATORS = {
5194
5462
  "optional": false
5195
5463
  }
5196
5464
  ],
5465
+ "listAccessories": [
5466
+ {
5467
+ "name": "category",
5468
+ "schema": {
5469
+ "k": "union",
5470
+ "of": [
5471
+ {
5472
+ "k": "literal",
5473
+ "v": "cases-protection"
5474
+ },
5475
+ {
5476
+ "k": "literal",
5477
+ "v": "chargers-adapters"
5478
+ },
5479
+ {
5480
+ "k": "literal",
5481
+ "v": "headphones-speakers"
5482
+ },
5483
+ {
5484
+ "k": "literal",
5485
+ "v": "drives-storage"
5486
+ },
5487
+ {
5488
+ "k": "literal",
5489
+ "v": "mice-keyboards"
5490
+ },
5491
+ {
5492
+ "k": "literal",
5493
+ "v": "gaming"
5494
+ },
5495
+ {
5496
+ "k": "literal",
5497
+ "v": "office"
5498
+ },
5499
+ {
5500
+ "k": "literal",
5501
+ "v": "travel-essentials"
5502
+ },
5503
+ {
5504
+ "k": "literal",
5505
+ "v": "college-essentials"
5506
+ },
5507
+ {
5508
+ "k": "literal",
5509
+ "v": "software"
5510
+ },
5511
+ {
5512
+ "k": "literal",
5513
+ "v": "homekit"
5514
+ },
5515
+ {
5516
+ "k": "literal",
5517
+ "v": "content-creation"
5518
+ },
5519
+ {
5520
+ "k": "literal",
5521
+ "v": "health-fitness"
5522
+ },
5523
+ {
5524
+ "k": "literal",
5525
+ "v": "new-arrivals"
5526
+ },
5527
+ {
5528
+ "k": "literal",
5529
+ "v": "made-by-apple"
5530
+ },
5531
+ {
5532
+ "k": "literal",
5533
+ "v": "accessibility"
5534
+ }
5535
+ ]
5536
+ },
5537
+ "optional": false
5538
+ },
5539
+ {
5540
+ "name": "page",
5541
+ "schema": {
5542
+ "k": "number"
5543
+ },
5544
+ "optional": true
5545
+ }
5546
+ ],
5197
5547
  "getTradeInEstimate": [
5198
5548
  {
5199
5549
  "name": "model",
@@ -5303,6 +5653,16 @@ export const VALIDATORS = {
5303
5653
  },
5304
5654
  "optional": false
5305
5655
  }
5656
+ ],
5657
+ "listNewsroomPosts": [],
5658
+ "getNewsroomPost": [
5659
+ {
5660
+ "name": "url",
5661
+ "schema": {
5662
+ "k": "string"
5663
+ },
5664
+ "optional": false
5665
+ }
5306
5666
  ]
5307
5667
  }
5308
5668
  },
@@ -7047,7 +7407,7 @@ export const VALIDATORS = {
7047
7407
  "listInquiryServices": [],
7048
7408
  "getInquiryServiceDetails": [
7049
7409
  {
7050
- "name": "serviceName",
7410
+ "name": "service",
7051
7411
  "schema": {
7052
7412
  "k": "string"
7053
7413
  },
@@ -7648,20 +8008,220 @@ export const VALIDATORS = {
7648
8008
  "optional": false
7649
8009
  },
7650
8010
  {
7651
- "name": "opts",
8011
+ "name": "opts",
8012
+ "schema": {
8013
+ "k": "object",
8014
+ "props": [
8015
+ {
8016
+ "name": "quantity",
8017
+ "schema": {
8018
+ "k": "number"
8019
+ },
8020
+ "optional": true
8021
+ }
8022
+ ]
8023
+ },
8024
+ "optional": true
8025
+ }
8026
+ ]
8027
+ }
8028
+ },
8029
+ "providers.browser_use": {
8030
+ "defs": {
8031
+ "BrowserUseCreateRunArgs": {
8032
+ "k": "object",
8033
+ "props": [
8034
+ {
8035
+ "name": "task",
8036
+ "schema": {
8037
+ "k": "string"
8038
+ },
8039
+ "optional": false
8040
+ },
8041
+ {
8042
+ "name": "model",
8043
+ "schema": {
8044
+ "k": "string"
8045
+ },
8046
+ "optional": true
8047
+ },
8048
+ {
8049
+ "name": "sessionId",
8050
+ "schema": {
8051
+ "k": "string"
8052
+ },
8053
+ "optional": true
8054
+ },
8055
+ {
8056
+ "name": "maxCostUsd",
8057
+ "schema": {
8058
+ "k": "number"
8059
+ },
8060
+ "optional": true
8061
+ },
8062
+ {
8063
+ "name": "proxyCountryCode",
8064
+ "schema": {
8065
+ "k": "string"
8066
+ },
8067
+ "optional": true
8068
+ }
8069
+ ]
8070
+ },
8071
+ "BrowserUseEventsArgs": {
8072
+ "k": "object",
8073
+ "props": [
8074
+ {
8075
+ "name": "runId",
8076
+ "schema": {
8077
+ "k": "string"
8078
+ },
8079
+ "optional": false
8080
+ },
8081
+ {
8082
+ "name": "after",
8083
+ "schema": {
8084
+ "k": "number"
8085
+ },
8086
+ "optional": true
8087
+ },
8088
+ {
8089
+ "name": "limit",
8090
+ "schema": {
8091
+ "k": "number"
8092
+ },
8093
+ "optional": true
8094
+ }
8095
+ ]
8096
+ },
8097
+ "BrowserUseQueueArgs": {
8098
+ "k": "object",
8099
+ "props": [
8100
+ {
8101
+ "name": "sessionId",
8102
+ "schema": {
8103
+ "k": "string"
8104
+ },
8105
+ "optional": false
8106
+ },
8107
+ {
8108
+ "name": "text",
8109
+ "schema": {
8110
+ "k": "string"
8111
+ },
8112
+ "optional": false
8113
+ },
8114
+ {
8115
+ "name": "interrupt",
8116
+ "schema": {
8117
+ "k": "boolean"
8118
+ },
8119
+ "optional": true
8120
+ }
8121
+ ]
8122
+ }
8123
+ },
8124
+ "functions": {
8125
+ "createRun": [
8126
+ {
8127
+ "name": "args",
8128
+ "schema": {
8129
+ "k": "ref",
8130
+ "name": "BrowserUseCreateRunArgs"
8131
+ },
8132
+ "optional": false
8133
+ }
8134
+ ],
8135
+ "getRun": [
8136
+ {
8137
+ "name": "runId",
8138
+ "schema": {
8139
+ "k": "string"
8140
+ },
8141
+ "optional": false
8142
+ }
8143
+ ],
8144
+ "getRunStatus": [
8145
+ {
8146
+ "name": "runId",
8147
+ "schema": {
8148
+ "k": "string"
8149
+ },
8150
+ "optional": false
8151
+ }
8152
+ ],
8153
+ "listRunEvents": [
8154
+ {
8155
+ "name": "args",
8156
+ "schema": {
8157
+ "k": "ref",
8158
+ "name": "BrowserUseEventsArgs"
8159
+ },
8160
+ "optional": false
8161
+ }
8162
+ ],
8163
+ "listSessionRuns": [
8164
+ {
8165
+ "name": "sessionId",
8166
+ "schema": {
8167
+ "k": "string"
8168
+ },
8169
+ "optional": false
8170
+ }
8171
+ ],
8172
+ "cancelRun": [
8173
+ {
8174
+ "name": "runId",
8175
+ "schema": {
8176
+ "k": "string"
8177
+ },
8178
+ "optional": false
8179
+ }
8180
+ ],
8181
+ "getSession": [
8182
+ {
8183
+ "name": "sessionId",
8184
+ "schema": {
8185
+ "k": "string"
8186
+ },
8187
+ "optional": false
8188
+ }
8189
+ ],
8190
+ "queueMessage": [
8191
+ {
8192
+ "name": "args",
8193
+ "schema": {
8194
+ "k": "ref",
8195
+ "name": "BrowserUseQueueArgs"
8196
+ },
8197
+ "optional": false
8198
+ }
8199
+ ],
8200
+ "findSessionBrowser": [
8201
+ {
8202
+ "name": "sessionId",
8203
+ "schema": {
8204
+ "k": "string"
8205
+ },
8206
+ "optional": false
8207
+ }
8208
+ ],
8209
+ "getBrowser": [
8210
+ {
8211
+ "name": "browserId",
8212
+ "schema": {
8213
+ "k": "string"
8214
+ },
8215
+ "optional": false
8216
+ }
8217
+ ],
8218
+ "stopBrowser": [
8219
+ {
8220
+ "name": "browserId",
7652
8221
  "schema": {
7653
- "k": "object",
7654
- "props": [
7655
- {
7656
- "name": "quantity",
7657
- "schema": {
7658
- "k": "number"
7659
- },
7660
- "optional": true
7661
- }
7662
- ]
8222
+ "k": "string"
7663
8223
  },
7664
- "optional": true
8224
+ "optional": false
7665
8225
  }
7666
8226
  ]
7667
8227
  }
@@ -15203,6 +15763,98 @@ export const VALIDATORS = {
15203
15763
  "optional": true
15204
15764
  }
15205
15765
  ]
15766
+ },
15767
+ "TranslateDocumentArgs": {
15768
+ "k": "object",
15769
+ "props": [
15770
+ {
15771
+ "name": "fileBase64",
15772
+ "schema": {
15773
+ "k": "string"
15774
+ },
15775
+ "optional": false
15776
+ },
15777
+ {
15778
+ "name": "mimeType",
15779
+ "schema": {
15780
+ "k": "string"
15781
+ },
15782
+ "optional": false
15783
+ },
15784
+ {
15785
+ "name": "to",
15786
+ "schema": {
15787
+ "k": "string"
15788
+ },
15789
+ "optional": false
15790
+ },
15791
+ {
15792
+ "name": "from",
15793
+ "schema": {
15794
+ "k": "string"
15795
+ },
15796
+ "optional": true
15797
+ }
15798
+ ]
15799
+ },
15800
+ "TranslateImageArgs": {
15801
+ "k": "object",
15802
+ "props": [
15803
+ {
15804
+ "name": "imageBase64",
15805
+ "schema": {
15806
+ "k": "string"
15807
+ },
15808
+ "optional": false
15809
+ },
15810
+ {
15811
+ "name": "mimeType",
15812
+ "schema": {
15813
+ "k": "string"
15814
+ },
15815
+ "optional": false
15816
+ },
15817
+ {
15818
+ "name": "to",
15819
+ "schema": {
15820
+ "k": "string"
15821
+ },
15822
+ "optional": false
15823
+ },
15824
+ {
15825
+ "name": "from",
15826
+ "schema": {
15827
+ "k": "string"
15828
+ },
15829
+ "optional": true
15830
+ }
15831
+ ]
15832
+ },
15833
+ "TranslateWebPageArgs": {
15834
+ "k": "object",
15835
+ "props": [
15836
+ {
15837
+ "name": "url",
15838
+ "schema": {
15839
+ "k": "string"
15840
+ },
15841
+ "optional": false
15842
+ },
15843
+ {
15844
+ "name": "to",
15845
+ "schema": {
15846
+ "k": "string"
15847
+ },
15848
+ "optional": false
15849
+ },
15850
+ {
15851
+ "name": "from",
15852
+ "schema": {
15853
+ "k": "string"
15854
+ },
15855
+ "optional": true
15856
+ }
15857
+ ]
15206
15858
  }
15207
15859
  },
15208
15860
  "functions": {
@@ -15305,6 +15957,36 @@ export const VALIDATORS = {
15305
15957
  },
15306
15958
  "optional": false
15307
15959
  }
15960
+ ],
15961
+ "translateWebPage": [
15962
+ {
15963
+ "name": "args",
15964
+ "schema": {
15965
+ "k": "ref",
15966
+ "name": "TranslateWebPageArgs"
15967
+ },
15968
+ "optional": false
15969
+ }
15970
+ ],
15971
+ "translateDocument": [
15972
+ {
15973
+ "name": "args",
15974
+ "schema": {
15975
+ "k": "ref",
15976
+ "name": "TranslateDocumentArgs"
15977
+ },
15978
+ "optional": false
15979
+ }
15980
+ ],
15981
+ "translateImage": [
15982
+ {
15983
+ "name": "args",
15984
+ "schema": {
15985
+ "k": "ref",
15986
+ "name": "TranslateImageArgs"
15987
+ },
15988
+ "optional": false
15989
+ }
15308
15990
  ]
15309
15991
  }
15310
15992
  },
@@ -16201,36 +16883,196 @@ export const VALIDATORS = {
16201
16883
  }
16202
16884
  ]
16203
16885
  },
16204
- "optional": true
16205
- }
16206
- ]
16207
- }
16208
- },
16209
- "providers.hellotend": {
16210
- "defs": {},
16211
- "functions": {
16212
- "listMarkets": [],
16213
- "listStudios": [
16214
- {
16215
- "name": "market",
16216
- "schema": {
16217
- "k": "string"
16218
- },
16219
- "optional": true
16886
+ "optional": true
16887
+ }
16888
+ ]
16889
+ }
16890
+ },
16891
+ "providers.hellotend": {
16892
+ "defs": {},
16893
+ "functions": {
16894
+ "listMarkets": [],
16895
+ "listStudios": [
16896
+ {
16897
+ "name": "market",
16898
+ "schema": {
16899
+ "k": "string"
16900
+ },
16901
+ "optional": true
16902
+ }
16903
+ ],
16904
+ "listServices": [
16905
+ {
16906
+ "name": "market",
16907
+ "schema": {
16908
+ "k": "string"
16909
+ },
16910
+ "optional": false
16911
+ },
16912
+ {
16913
+ "name": "studio",
16914
+ "schema": {
16915
+ "k": "string"
16916
+ },
16917
+ "optional": false
16918
+ }
16919
+ ]
16920
+ }
16921
+ },
16922
+ "providers.higgsfield": {
16923
+ "defs": {},
16924
+ "functions": {
16925
+ "listModels": [],
16926
+ "estimateCost": [
16927
+ {
16928
+ "name": "args",
16929
+ "schema": {
16930
+ "k": "object",
16931
+ "props": [
16932
+ {
16933
+ "name": "prompt",
16934
+ "schema": {
16935
+ "k": "string"
16936
+ },
16937
+ "optional": false
16938
+ },
16939
+ {
16940
+ "name": "model",
16941
+ "schema": {
16942
+ "k": "string"
16943
+ },
16944
+ "optional": true
16945
+ }
16946
+ ],
16947
+ "index": {
16948
+ "k": "any"
16949
+ }
16950
+ },
16951
+ "optional": false
16952
+ }
16953
+ ],
16954
+ "generateImage": [
16955
+ {
16956
+ "name": "args",
16957
+ "schema": {
16958
+ "k": "union",
16959
+ "of": [
16960
+ {
16961
+ "k": "string"
16962
+ },
16963
+ {
16964
+ "k": "object",
16965
+ "props": [
16966
+ {
16967
+ "name": "prompt",
16968
+ "schema": {
16969
+ "k": "string"
16970
+ },
16971
+ "optional": false
16972
+ },
16973
+ {
16974
+ "name": "model",
16975
+ "schema": {
16976
+ "k": "string"
16977
+ },
16978
+ "optional": true
16979
+ },
16980
+ {
16981
+ "name": "waitMs",
16982
+ "schema": {
16983
+ "k": "number"
16984
+ },
16985
+ "optional": true
16986
+ },
16987
+ {
16988
+ "name": "save",
16989
+ "schema": {
16990
+ "k": "boolean"
16991
+ },
16992
+ "optional": true
16993
+ }
16994
+ ],
16995
+ "index": {
16996
+ "k": "any"
16997
+ }
16998
+ }
16999
+ ]
17000
+ },
17001
+ "optional": false
17002
+ }
17003
+ ],
17004
+ "generateVideo": [
17005
+ {
17006
+ "name": "args",
17007
+ "schema": {
17008
+ "k": "union",
17009
+ "of": [
17010
+ {
17011
+ "k": "string"
17012
+ },
17013
+ {
17014
+ "k": "object",
17015
+ "props": [
17016
+ {
17017
+ "name": "prompt",
17018
+ "schema": {
17019
+ "k": "string"
17020
+ },
17021
+ "optional": false
17022
+ },
17023
+ {
17024
+ "name": "model",
17025
+ "schema": {
17026
+ "k": "string"
17027
+ },
17028
+ "optional": true
17029
+ },
17030
+ {
17031
+ "name": "waitMs",
17032
+ "schema": {
17033
+ "k": "number"
17034
+ },
17035
+ "optional": true
17036
+ },
17037
+ {
17038
+ "name": "save",
17039
+ "schema": {
17040
+ "k": "boolean"
17041
+ },
17042
+ "optional": true
17043
+ }
17044
+ ],
17045
+ "index": {
17046
+ "k": "any"
17047
+ }
17048
+ }
17049
+ ]
17050
+ },
17051
+ "optional": false
16220
17052
  }
16221
17053
  ],
16222
- "listServices": [
16223
- {
16224
- "name": "market",
16225
- "schema": {
16226
- "k": "string"
16227
- },
16228
- "optional": false
16229
- },
17054
+ "getRequestStatus": [
16230
17055
  {
16231
- "name": "studio",
17056
+ "name": "args",
16232
17057
  "schema": {
16233
- "k": "string"
17058
+ "k": "union",
17059
+ "of": [
17060
+ {
17061
+ "k": "string"
17062
+ },
17063
+ {
17064
+ "k": "object",
17065
+ "props": [
17066
+ {
17067
+ "name": "requestId",
17068
+ "schema": {
17069
+ "k": "string"
17070
+ },
17071
+ "optional": false
17072
+ }
17073
+ ]
17074
+ }
17075
+ ]
16234
17076
  },
16235
17077
  "optional": false
16236
17078
  }
@@ -23182,6 +24024,36 @@ export const VALIDATORS = {
23182
24024
  "k": "string"
23183
24025
  },
23184
24026
  "optional": false
24027
+ },
24028
+ {
24029
+ "name": "options",
24030
+ "schema": {
24031
+ "k": "object",
24032
+ "props": [
24033
+ {
24034
+ "name": "waysToWatch",
24035
+ "schema": {
24036
+ "k": "union",
24037
+ "of": [
24038
+ {
24039
+ "k": "literal",
24040
+ "v": "prime"
24041
+ },
24042
+ {
24043
+ "k": "literal",
24044
+ "v": "channels"
24045
+ },
24046
+ {
24047
+ "k": "literal",
24048
+ "v": "rentOrBuy"
24049
+ }
24050
+ ]
24051
+ },
24052
+ "optional": true
24053
+ }
24054
+ ]
24055
+ },
24056
+ "optional": true
23185
24057
  }
23186
24058
  ],
23187
24059
  "suggestTitles": [
@@ -23229,6 +24101,15 @@ export const VALIDATORS = {
23229
24101
  "optional": false
23230
24102
  }
23231
24103
  ],
24104
+ "getPerson": [
24105
+ {
24106
+ "name": "personId",
24107
+ "schema": {
24108
+ "k": "string"
24109
+ },
24110
+ "optional": false
24111
+ }
24112
+ ],
23232
24113
  "listCategories": [],
23233
24114
  "listCategoryTitles": [
23234
24115
  {
@@ -23326,7 +24207,8 @@ export const VALIDATORS = {
23326
24207
  },
23327
24208
  "optional": false
23328
24209
  }
23329
- ]
24210
+ ],
24211
+ "listLiveSports": []
23330
24212
  }
23331
24213
  },
23332
24214
  "providers.progressive": {
@@ -30856,6 +31738,32 @@ export const VALIDATORS = {
30856
31738
  "optional": false
30857
31739
  }
30858
31740
  ]
31741
+ },
31742
+ "SetChannelArgs": {
31743
+ "k": "object",
31744
+ "props": [
31745
+ {
31746
+ "name": "title",
31747
+ "schema": {
31748
+ "k": "string"
31749
+ },
31750
+ "optional": true
31751
+ },
31752
+ {
31753
+ "name": "language",
31754
+ "schema": {
31755
+ "k": "string"
31756
+ },
31757
+ "optional": true
31758
+ },
31759
+ {
31760
+ "name": "game",
31761
+ "schema": {
31762
+ "k": "string"
31763
+ },
31764
+ "optional": true
31765
+ }
31766
+ ]
30859
31767
  }
30860
31768
  },
30861
31769
  "functions": {
@@ -30878,6 +31786,17 @@ export const VALIDATORS = {
30878
31786
  },
30879
31787
  "optional": false
30880
31788
  }
31789
+ ],
31790
+ "getChannel": [],
31791
+ "setChannel": [
31792
+ {
31793
+ "name": "args",
31794
+ "schema": {
31795
+ "k": "ref",
31796
+ "name": "SetChannelArgs"
31797
+ },
31798
+ "optional": false
31799
+ }
30881
31800
  ]
30882
31801
  }
30883
31802
  },
@@ -31577,6 +32496,80 @@ export const VALIDATORS = {
31577
32496
  "getPlans": []
31578
32497
  }
31579
32498
  },
32499
+ "providers.vistaprint": {
32500
+ "defs": {
32501
+ "GetShippingBoxPriceArgs": {
32502
+ "k": "object",
32503
+ "props": [
32504
+ {
32505
+ "name": "size",
32506
+ "schema": {
32507
+ "k": "ref",
32508
+ "name": "ShippingBoxSize"
32509
+ },
32510
+ "optional": false
32511
+ },
32512
+ {
32513
+ "name": "printArea",
32514
+ "schema": {
32515
+ "k": "ref",
32516
+ "name": "ShippingBoxPrintArea"
32517
+ },
32518
+ "optional": false
32519
+ },
32520
+ {
32521
+ "name": "quantity",
32522
+ "schema": {
32523
+ "k": "number"
32524
+ },
32525
+ "optional": false
32526
+ }
32527
+ ]
32528
+ },
32529
+ "ShippingBoxPrintArea": {
32530
+ "k": "union",
32531
+ "of": [
32532
+ {
32533
+ "k": "literal",
32534
+ "v": "inside-and-outside"
32535
+ },
32536
+ {
32537
+ "k": "literal",
32538
+ "v": "outside-only"
32539
+ }
32540
+ ]
32541
+ },
32542
+ "ShippingBoxSize": {
32543
+ "k": "union",
32544
+ "of": [
32545
+ {
32546
+ "k": "literal",
32547
+ "v": "11x8.5x5.5"
32548
+ },
32549
+ {
32550
+ "k": "literal",
32551
+ "v": "12x12x5.5"
32552
+ },
32553
+ {
32554
+ "k": "literal",
32555
+ "v": "13x13x10"
32556
+ }
32557
+ ]
32558
+ }
32559
+ },
32560
+ "functions": {
32561
+ "getShippingBoxPrice": [
32562
+ {
32563
+ "name": "args",
32564
+ "schema": {
32565
+ "k": "ref",
32566
+ "name": "GetShippingBoxPriceArgs"
32567
+ },
32568
+ "optional": false
32569
+ }
32570
+ ]
32571
+ }
32572
+ },
31580
32573
  "providers.voluspa": {
31581
32574
  "defs": {},
31582
32575
  "functions": {
@@ -32183,6 +33176,49 @@ export const VALIDATORS = {
32183
33176
  "providers.youtube": {
32184
33177
  "defs": {},
32185
33178
  "functions": {
33179
+ "search": [
33180
+ {
33181
+ "name": "input",
33182
+ "schema": {
33183
+ "k": "object",
33184
+ "props": [
33185
+ {
33186
+ "name": "query",
33187
+ "schema": {
33188
+ "k": "string"
33189
+ },
33190
+ "optional": false
33191
+ },
33192
+ {
33193
+ "name": "uploadedWithin",
33194
+ "schema": {
33195
+ "k": "union",
33196
+ "of": [
33197
+ {
33198
+ "k": "literal",
33199
+ "v": "today"
33200
+ },
33201
+ {
33202
+ "k": "literal",
33203
+ "v": "week"
33204
+ },
33205
+ {
33206
+ "k": "literal",
33207
+ "v": "month"
33208
+ },
33209
+ {
33210
+ "k": "literal",
33211
+ "v": "year"
33212
+ }
33213
+ ]
33214
+ },
33215
+ "optional": true
33216
+ }
33217
+ ]
33218
+ },
33219
+ "optional": false
33220
+ }
33221
+ ],
32186
33222
  "getTranscript": [
32187
33223
  {
32188
33224
  "name": "input",
@@ -32200,6 +33236,42 @@ export const VALIDATORS = {
32200
33236
  },
32201
33237
  "optional": false
32202
33238
  }
33239
+ ],
33240
+ "findChannel": [
33241
+ {
33242
+ "name": "input",
33243
+ "schema": {
33244
+ "k": "object",
33245
+ "props": [
33246
+ {
33247
+ "name": "query",
33248
+ "schema": {
33249
+ "k": "string"
33250
+ },
33251
+ "optional": false
33252
+ }
33253
+ ]
33254
+ },
33255
+ "optional": false
33256
+ }
33257
+ ],
33258
+ "getVideo": [
33259
+ {
33260
+ "name": "input",
33261
+ "schema": {
33262
+ "k": "object",
33263
+ "props": [
33264
+ {
33265
+ "name": "video",
33266
+ "schema": {
33267
+ "k": "string"
33268
+ },
33269
+ "optional": false
33270
+ }
33271
+ ]
33272
+ },
33273
+ "optional": false
33274
+ }
32203
33275
  ]
32204
33276
  }
32205
33277
  },