@chatbotkit/sdk 1.24.0 → 1.26.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.
@@ -800,6 +800,37 @@ export interface paths {
800
800
  patch?: never;
801
801
  trace?: never;
802
802
  };
803
+ "/conversation/{conversationId}/dispatch": {
804
+ parameters: {
805
+ query?: never;
806
+ header?: never;
807
+ path?: never;
808
+ cookie?: never;
809
+ };
810
+ get?: never;
811
+ put?: never;
812
+ /**
813
+ * Dispatch a stateful conversation completion to run in the background
814
+ * @description Dispatch a stateful conversation completion to run asynchronously in the
815
+ * background. This endpoint accepts the same parameters as the complete
816
+ * endpoint but instead of streaming the response directly, it returns a
817
+ * channel ID that can be used to subscribe to the completion progress.
818
+ *
819
+ * The completion will be processed in the background and events will be
820
+ * published to the channel as the completion progresses. This is useful
821
+ * for long-running completions that may take several minutes to complete.
822
+ *
823
+ * To monitor the progress, subscribe to the channel using:
824
+ * `POST /api/v1/channel/{channelId}/subscribe`
825
+ *
826
+ */
827
+ post: operations["dispatchStatefulConversation"];
828
+ delete?: never;
829
+ options?: never;
830
+ head?: never;
831
+ patch?: never;
832
+ trace?: never;
833
+ };
803
834
  "/conversation/{conversationId}/downvote": {
804
835
  parameters: {
805
836
  query?: never;
@@ -1140,6 +1171,37 @@ export interface paths {
1140
1171
  patch?: never;
1141
1172
  trace?: never;
1142
1173
  };
1174
+ "/conversation/dispatch": {
1175
+ parameters: {
1176
+ query?: never;
1177
+ header?: never;
1178
+ path?: never;
1179
+ cookie?: never;
1180
+ };
1181
+ get?: never;
1182
+ put?: never;
1183
+ /**
1184
+ * Dispatch a conversation completion to run in the background
1185
+ * @description Dispatch a conversation completion to run asynchronously in the
1186
+ * background. This endpoint accepts the same parameters as the complete
1187
+ * endpoint but instead of streaming the response directly, it returns a
1188
+ * channel ID that can be used to subscribe to the completion progress.
1189
+ *
1190
+ * The completion will be processed in the background and events will be
1191
+ * published to the channel as the completion progresses. This is useful
1192
+ * for long-running completions that may take several minutes to complete.
1193
+ *
1194
+ * To monitor the progress, subscribe to the channel using:
1195
+ * `POST /api/v1/channel/{channelId}/subscribe`
1196
+ *
1197
+ */
1198
+ post: operations["dispatchConversation"];
1199
+ delete?: never;
1200
+ options?: never;
1201
+ head?: never;
1202
+ patch?: never;
1203
+ trace?: never;
1204
+ };
1143
1205
  "/conversation/export": {
1144
1206
  parameters: {
1145
1207
  query?: never;
@@ -4472,15 +4534,15 @@ export interface components {
4472
4534
  */
4473
4535
  FileVisibility: "private" | "protected" | "public";
4474
4536
  /**
4475
- * @description The kind of the secret
4537
+ * @description The type of the secret
4476
4538
  * @enum {string}
4477
4539
  */
4478
- SecretKind: "shared" | "personal";
4540
+ SecretType: "plain" | "basic" | "bearer" | "oauth" | "template" | "reference";
4479
4541
  /**
4480
- * @description The type of the secret
4542
+ * @description The kind of the secret
4481
4543
  * @enum {string}
4482
4544
  */
4483
- SecretType: "plain" | "basic" | "bearer" | "oauth" | "template" | "reference";
4545
+ SecretKind: "shared" | "personal";
4484
4546
  /**
4485
4547
  * @description The visibility of the secret
4486
4548
  * @enum {string}
@@ -4825,9 +4887,7 @@ export interface components {
4825
4887
  headers: {
4826
4888
  [name: string]: unknown;
4827
4889
  };
4828
- content: {
4829
- "application/json": unknown;
4830
- };
4890
+ content?: never;
4831
4891
  };
4832
4892
  };
4833
4893
  parameters: {
@@ -4885,9 +4945,7 @@ export interface operations {
4885
4945
  headers: {
4886
4946
  [name: string]: unknown;
4887
4947
  };
4888
- content: {
4889
- "application/json": unknown;
4890
- };
4948
+ content?: never;
4891
4949
  };
4892
4950
  };
4893
4951
  };
@@ -4959,9 +5017,7 @@ export interface operations {
4959
5017
  headers: {
4960
5018
  [name: string]: unknown;
4961
5019
  };
4962
- content: {
4963
- "application/json": unknown;
4964
- };
5020
+ content?: never;
4965
5021
  };
4966
5022
  };
4967
5023
  };
@@ -5003,9 +5059,7 @@ export interface operations {
5003
5059
  headers: {
5004
5060
  [name: string]: unknown;
5005
5061
  };
5006
- content: {
5007
- "application/json": unknown;
5008
- };
5062
+ content?: never;
5009
5063
  };
5010
5064
  };
5011
5065
  };
@@ -5051,9 +5105,7 @@ export interface operations {
5051
5105
  headers: {
5052
5106
  [name: string]: unknown;
5053
5107
  };
5054
- content: {
5055
- "application/json": unknown;
5056
- };
5108
+ content?: never;
5057
5109
  };
5058
5110
  };
5059
5111
  };
@@ -5091,9 +5143,7 @@ export interface operations {
5091
5143
  headers: {
5092
5144
  [name: string]: unknown;
5093
5145
  };
5094
- content: {
5095
- "application/json": unknown;
5096
- };
5146
+ content?: never;
5097
5147
  };
5098
5148
  };
5099
5149
  };
@@ -5108,7 +5158,13 @@ export interface operations {
5108
5158
  };
5109
5159
  requestBody: {
5110
5160
  content: {
5111
- "application/json": Record<string, never>;
5161
+ "application/json": {
5162
+ /**
5163
+ * @description If true, deletes all resources associated with the blueprint. If false or omitted, only the blueprint is deleted.
5164
+ * @default false
5165
+ */
5166
+ deleteResources?: boolean;
5167
+ };
5112
5168
  };
5113
5169
  };
5114
5170
  responses: {
@@ -5129,9 +5185,7 @@ export interface operations {
5129
5185
  headers: {
5130
5186
  [name: string]: unknown;
5131
5187
  };
5132
- content: {
5133
- "application/json": unknown;
5134
- };
5188
+ content?: never;
5135
5189
  };
5136
5190
  };
5137
5191
  };
@@ -5180,9 +5234,7 @@ export interface operations {
5180
5234
  headers: {
5181
5235
  [name: string]: unknown;
5182
5236
  };
5183
- content: {
5184
- "application/json": unknown;
5185
- };
5237
+ content?: never;
5186
5238
  };
5187
5239
  };
5188
5240
  };
@@ -5216,9 +5268,7 @@ export interface operations {
5216
5268
  headers: {
5217
5269
  [name: string]: unknown;
5218
5270
  };
5219
- content: {
5220
- "application/json": unknown;
5221
- };
5271
+ content?: never;
5222
5272
  };
5223
5273
  };
5224
5274
  };
@@ -5268,9 +5318,7 @@ export interface operations {
5268
5318
  headers: {
5269
5319
  [name: string]: unknown;
5270
5320
  };
5271
- content: {
5272
- "application/json": unknown;
5273
- };
5321
+ content?: never;
5274
5322
  };
5275
5323
  };
5276
5324
  };
@@ -5318,9 +5366,7 @@ export interface operations {
5318
5366
  headers: {
5319
5367
  [name: string]: unknown;
5320
5368
  };
5321
- content: {
5322
- "application/json": unknown;
5323
- };
5369
+ content?: never;
5324
5370
  };
5325
5371
  };
5326
5372
  };
@@ -5405,9 +5451,7 @@ export interface operations {
5405
5451
  headers: {
5406
5452
  [name: string]: unknown;
5407
5453
  };
5408
- content: {
5409
- "application/json": unknown;
5410
- };
5454
+ content?: never;
5411
5455
  };
5412
5456
  };
5413
5457
  };
@@ -5443,9 +5487,7 @@ export interface operations {
5443
5487
  headers: {
5444
5488
  [name: string]: unknown;
5445
5489
  };
5446
- content: {
5447
- "application/json": unknown;
5448
- };
5490
+ content?: never;
5449
5491
  };
5450
5492
  };
5451
5493
  };
@@ -5481,9 +5523,7 @@ export interface operations {
5481
5523
  headers: {
5482
5524
  [name: string]: unknown;
5483
5525
  };
5484
- content: {
5485
- "application/json": unknown;
5486
- };
5526
+ content?: never;
5487
5527
  };
5488
5528
  };
5489
5529
  };
@@ -5527,9 +5567,7 @@ export interface operations {
5527
5567
  headers: {
5528
5568
  [name: string]: unknown;
5529
5569
  };
5530
- content: {
5531
- "application/json": unknown;
5532
- };
5570
+ content?: never;
5533
5571
  };
5534
5572
  };
5535
5573
  };
@@ -5595,9 +5633,7 @@ export interface operations {
5595
5633
  headers: {
5596
5634
  [name: string]: unknown;
5597
5635
  };
5598
- content: {
5599
- "application/json": unknown;
5600
- };
5636
+ content?: never;
5601
5637
  };
5602
5638
  };
5603
5639
  };
@@ -5640,9 +5676,7 @@ export interface operations {
5640
5676
  headers: {
5641
5677
  [name: string]: unknown;
5642
5678
  };
5643
- content: {
5644
- "application/json": unknown;
5645
- };
5679
+ content?: never;
5646
5680
  };
5647
5681
  };
5648
5682
  };
@@ -5711,9 +5745,7 @@ export interface operations {
5711
5745
  headers: {
5712
5746
  [name: string]: unknown;
5713
5747
  };
5714
- content: {
5715
- "application/json": unknown;
5716
- };
5748
+ content?: never;
5717
5749
  };
5718
5750
  };
5719
5751
  };
@@ -5780,9 +5812,7 @@ export interface operations {
5780
5812
  headers: {
5781
5813
  [name: string]: unknown;
5782
5814
  };
5783
- content: {
5784
- "application/json": unknown;
5785
- };
5815
+ content?: never;
5786
5816
  };
5787
5817
  };
5788
5818
  };
@@ -5826,9 +5856,7 @@ export interface operations {
5826
5856
  headers: {
5827
5857
  [name: string]: unknown;
5828
5858
  };
5829
- content: {
5830
- "application/json": unknown;
5831
- };
5859
+ content?: never;
5832
5860
  };
5833
5861
  };
5834
5862
  };
@@ -5867,9 +5895,7 @@ export interface operations {
5867
5895
  headers: {
5868
5896
  [name: string]: unknown;
5869
5897
  };
5870
- content: {
5871
- "application/json": unknown;
5872
- };
5898
+ content?: never;
5873
5899
  };
5874
5900
  };
5875
5901
  };
@@ -5934,9 +5960,7 @@ export interface operations {
5934
5960
  headers: {
5935
5961
  [name: string]: unknown;
5936
5962
  };
5937
- content: {
5938
- "application/json": unknown;
5939
- };
5963
+ content?: never;
5940
5964
  };
5941
5965
  };
5942
5966
  };
@@ -6055,9 +6079,7 @@ export interface operations {
6055
6079
  headers: {
6056
6080
  [name: string]: unknown;
6057
6081
  };
6058
- content: {
6059
- "application/json": unknown;
6060
- };
6082
+ content?: never;
6061
6083
  };
6062
6084
  };
6063
6085
  };
@@ -6074,7 +6096,9 @@ export interface operations {
6074
6096
  content: {
6075
6097
  "application/json": {
6076
6098
  /** @description The message to publish to the channel */
6077
- message: string;
6099
+ message: {
6100
+ [key: string]: unknown;
6101
+ };
6078
6102
  };
6079
6103
  };
6080
6104
  };
@@ -6096,9 +6120,7 @@ export interface operations {
6096
6120
  headers: {
6097
6121
  [name: string]: unknown;
6098
6122
  };
6099
- content: {
6100
- "application/json": unknown;
6101
- };
6123
+ content?: never;
6102
6124
  };
6103
6125
  };
6104
6126
  };
@@ -6113,7 +6135,16 @@ export interface operations {
6113
6135
  };
6114
6136
  requestBody: {
6115
6137
  content: {
6116
- "application/json": Record<string, never>;
6138
+ "application/json": {
6139
+ /** @description Number of historical messages to replay from the channel
6140
+ * before subscribing to live updates. When provided, the
6141
+ * subscriber will first receive up to this many recent
6142
+ * messages that were published before the subscription
6143
+ * started. This is useful for catching up on messages that
6144
+ * may have been published during connection setup.
6145
+ * */
6146
+ historyLength?: number;
6147
+ };
6117
6148
  };
6118
6149
  };
6119
6150
  responses: {
@@ -6130,7 +6161,9 @@ export interface operations {
6130
6161
  */
6131
6162
  type: "message";
6132
6163
  /** @description The message data published to the channel */
6133
- data: string;
6164
+ data: {
6165
+ [key: string]: unknown;
6166
+ };
6134
6167
  };
6135
6168
  };
6136
6169
  };
@@ -6139,9 +6172,7 @@ export interface operations {
6139
6172
  headers: {
6140
6173
  [name: string]: unknown;
6141
6174
  };
6142
- content: {
6143
- "application/json": unknown;
6144
- };
6175
+ content?: never;
6145
6176
  };
6146
6177
  };
6147
6178
  };
@@ -6261,9 +6292,7 @@ export interface operations {
6261
6292
  headers: {
6262
6293
  [name: string]: unknown;
6263
6294
  };
6264
- content: {
6265
- "application/json": unknown;
6266
- };
6295
+ content?: never;
6267
6296
  };
6268
6297
  };
6269
6298
  };
@@ -6299,9 +6328,7 @@ export interface operations {
6299
6328
  headers: {
6300
6329
  [name: string]: unknown;
6301
6330
  };
6302
- content: {
6303
- "application/json": unknown;
6304
- };
6331
+ content?: never;
6305
6332
  };
6306
6333
  };
6307
6334
  };
@@ -6357,9 +6384,7 @@ export interface operations {
6357
6384
  headers: {
6358
6385
  [name: string]: unknown;
6359
6386
  };
6360
- content: {
6361
- "application/json": unknown;
6362
- };
6387
+ content?: never;
6363
6388
  };
6364
6389
  };
6365
6390
  };
@@ -6441,9 +6466,7 @@ export interface operations {
6441
6466
  headers: {
6442
6467
  [name: string]: unknown;
6443
6468
  };
6444
- content: {
6445
- "application/json": unknown;
6446
- };
6469
+ content?: never;
6447
6470
  };
6448
6471
  };
6449
6472
  };
@@ -6486,9 +6509,7 @@ export interface operations {
6486
6509
  headers: {
6487
6510
  [name: string]: unknown;
6488
6511
  };
6489
- content: {
6490
- "application/json": unknown;
6491
- };
6512
+ content?: never;
6492
6513
  };
6493
6514
  };
6494
6515
  };
@@ -6527,9 +6548,7 @@ export interface operations {
6527
6548
  headers: {
6528
6549
  [name: string]: unknown;
6529
6550
  };
6530
- content: {
6531
- "application/json": unknown;
6532
- };
6551
+ content?: never;
6533
6552
  };
6534
6553
  };
6535
6554
  };
@@ -6566,9 +6585,7 @@ export interface operations {
6566
6585
  headers: {
6567
6586
  [name: string]: unknown;
6568
6587
  };
6569
- content: {
6570
- "application/json": unknown;
6571
- };
6588
+ content?: never;
6572
6589
  };
6573
6590
  };
6574
6591
  };
@@ -6619,9 +6636,7 @@ export interface operations {
6619
6636
  headers: {
6620
6637
  [name: string]: unknown;
6621
6638
  };
6622
- content: {
6623
- "application/json": unknown;
6624
- };
6639
+ content?: never;
6625
6640
  };
6626
6641
  };
6627
6642
  };
@@ -6699,9 +6714,7 @@ export interface operations {
6699
6714
  headers: {
6700
6715
  [name: string]: unknown;
6701
6716
  };
6702
- content: {
6703
- "application/json": unknown;
6704
- };
6717
+ content?: never;
6705
6718
  };
6706
6719
  };
6707
6720
  };
@@ -6779,9 +6792,7 @@ export interface operations {
6779
6792
  headers: {
6780
6793
  [name: string]: unknown;
6781
6794
  };
6782
- content: {
6783
- "application/json": unknown;
6784
- };
6795
+ content?: never;
6785
6796
  };
6786
6797
  };
6787
6798
  };
@@ -6828,6 +6839,16 @@ export interface operations {
6828
6839
  botId?: string;
6829
6840
  /** @description The schedule of the task */
6830
6841
  schedule?: string;
6842
+ /**
6843
+ * @description The task execution status
6844
+ * @enum {string}
6845
+ */
6846
+ status?: "idle" | "running";
6847
+ /**
6848
+ * @description The task execution outcome
6849
+ * @enum {string}
6850
+ */
6851
+ outcome?: "pending" | "success" | "failure";
6831
6852
  }[];
6832
6853
  };
6833
6854
  "application/jsonl": {
@@ -6858,6 +6879,16 @@ export interface operations {
6858
6879
  botId?: string;
6859
6880
  /** @description The schedule of the task */
6860
6881
  schedule?: string;
6882
+ /**
6883
+ * @description The task execution status
6884
+ * @enum {string}
6885
+ */
6886
+ status?: "idle" | "running";
6887
+ /**
6888
+ * @description The task execution outcome
6889
+ * @enum {string}
6890
+ */
6891
+ outcome?: "pending" | "success" | "failure";
6861
6892
  };
6862
6893
  };
6863
6894
  };
@@ -6867,9 +6898,7 @@ export interface operations {
6867
6898
  headers: {
6868
6899
  [name: string]: unknown;
6869
6900
  };
6870
- content: {
6871
- "application/json": unknown;
6872
- };
6901
+ content?: never;
6873
6902
  };
6874
6903
  };
6875
6904
  };
@@ -6926,9 +6955,7 @@ export interface operations {
6926
6955
  headers: {
6927
6956
  [name: string]: unknown;
6928
6957
  };
6929
- content: {
6930
- "application/json": unknown;
6931
- };
6958
+ content?: never;
6932
6959
  };
6933
6960
  };
6934
6961
  };
@@ -6983,9 +7010,7 @@ export interface operations {
6983
7010
  headers: {
6984
7011
  [name: string]: unknown;
6985
7012
  };
6986
- content: {
6987
- "application/json": unknown;
6988
- };
7013
+ content?: never;
6989
7014
  };
6990
7015
  };
6991
7016
  };
@@ -7040,9 +7065,7 @@ export interface operations {
7040
7065
  headers: {
7041
7066
  [name: string]: unknown;
7042
7067
  };
7043
- content: {
7044
- "application/json": unknown;
7045
- };
7068
+ content?: never;
7046
7069
  };
7047
7070
  };
7048
7071
  };
@@ -7142,9 +7165,7 @@ export interface operations {
7142
7165
  headers: {
7143
7166
  [name: string]: unknown;
7144
7167
  };
7145
- content: {
7146
- "application/json": unknown;
7147
- };
7168
+ content?: never;
7148
7169
  };
7149
7170
  };
7150
7171
  };
@@ -7243,9 +7264,7 @@ export interface operations {
7243
7264
  headers: {
7244
7265
  [name: string]: unknown;
7245
7266
  };
7246
- content: {
7247
- "application/json": unknown;
7248
- };
7267
+ content?: never;
7249
7268
  };
7250
7269
  };
7251
7270
  };
@@ -7313,9 +7332,7 @@ export interface operations {
7313
7332
  headers: {
7314
7333
  [name: string]: unknown;
7315
7334
  };
7316
- content: {
7317
- "application/json": unknown;
7318
- };
7335
+ content?: never;
7319
7336
  };
7320
7337
  };
7321
7338
  };
@@ -7586,9 +7603,7 @@ export interface operations {
7586
7603
  headers: {
7587
7604
  [name: string]: unknown;
7588
7605
  };
7589
- content: {
7590
- "application/json": unknown;
7591
- };
7606
+ content?: never;
7592
7607
  };
7593
7608
  };
7594
7609
  };
@@ -7641,9 +7656,7 @@ export interface operations {
7641
7656
  headers: {
7642
7657
  [name: string]: unknown;
7643
7658
  };
7644
- content: {
7645
- "application/json": unknown;
7646
- };
7659
+ content?: never;
7647
7660
  };
7648
7661
  };
7649
7662
  };
@@ -7679,59 +7692,191 @@ export interface operations {
7679
7692
  headers: {
7680
7693
  [name: string]: unknown;
7681
7694
  };
7682
- content: {
7683
- "application/json": unknown;
7684
- };
7695
+ content?: never;
7685
7696
  };
7686
7697
  };
7687
7698
  };
7688
- downvoteConversation: {
7699
+ dispatchStatefulConversation: {
7689
7700
  parameters: {
7690
7701
  query?: never;
7691
- header?: never;
7692
- path: {
7693
- conversationId: string;
7702
+ header?: {
7703
+ /** @description The timezone to use for the request */
7704
+ "X-Timezone"?: string;
7694
7705
  };
7706
+ path?: never;
7695
7707
  cookie?: never;
7696
7708
  };
7697
7709
  requestBody: {
7698
7710
  content: {
7699
7711
  "application/json": {
7700
- /**
7701
- * @description The value of the downvote
7702
- * @default -100
7703
- */
7704
- value?: number;
7705
- /** @description The reason for the downvote */
7706
- reason?: string;
7707
- };
7708
- };
7709
- };
7710
- responses: {
7711
- /** @description The message was downvoted successfully */
7712
- 200: {
7713
- headers: {
7714
- [name: string]: unknown;
7715
- };
7716
- content: {
7717
- "application/json": {
7718
- /** @description The conversation ID of the downvoted conversation */
7719
- id: string;
7720
- };
7721
- };
7722
- };
7723
- /** @description An error response */
7724
- default: {
7725
- headers: {
7726
- [name: string]: unknown;
7727
- };
7728
- content: {
7729
- "application/json": unknown;
7730
- };
7731
- };
7732
- };
7733
- };
7734
- fetchConversation: {
7712
+ /** @description The text of the message to send */
7713
+ text: string;
7714
+ /** @description Known entities */
7715
+ entities?: {
7716
+ /** @description The entity type */
7717
+ type: string;
7718
+ /** @description Start offset */
7719
+ begin: number;
7720
+ /** @description End offset */
7721
+ end: number;
7722
+ /** @description The text value of the entity */
7723
+ text: string;
7724
+ replacement?: {
7725
+ /** @description Start offset */
7726
+ begin: number;
7727
+ /** @description End offset */
7728
+ end: number;
7729
+ /** @description The text value of the replacement */
7730
+ text: string;
7731
+ };
7732
+ }[];
7733
+ /** @description An array of functions to be added to the conversation */
7734
+ functions?: {
7735
+ /** @description The name of the function (must be a valid JS identifier, max 64 chars) */
7736
+ name: string;
7737
+ /** @description The description of the function */
7738
+ description: string;
7739
+ /** @description JSON Schema definition for the function parameters */
7740
+ parameters: {
7741
+ /**
7742
+ * @description The schema type, must be "object"
7743
+ * @enum {string}
7744
+ */
7745
+ type: "object";
7746
+ /** @description Object property definitions */
7747
+ properties: {
7748
+ [key: string]: unknown;
7749
+ };
7750
+ /** @description Required property names */
7751
+ required?: string[];
7752
+ };
7753
+ /** @description The result of the function execution */
7754
+ result?: {
7755
+ /** @description The data returned by the function (can be any type) */
7756
+ data: unknown;
7757
+ } | {
7758
+ /** @description The channel for streaming function results */
7759
+ channel: string;
7760
+ };
7761
+ }[];
7762
+ /** @description Extensions to enhance the bot's capabilities */
7763
+ extensions?: {
7764
+ /** @description Additional backstory for the bot */
7765
+ backstory?: string;
7766
+ /** @description Inline datasets to provide additional context */
7767
+ datasets?: {
7768
+ /** @description The name of the dataset */
7769
+ name?: string;
7770
+ /** @description The description of the dataset */
7771
+ description?: string;
7772
+ /** @description The records in the dataset */
7773
+ records: {
7774
+ /** @description The text content of the record */
7775
+ text: string;
7776
+ /** @description Additional metadata for the record */
7777
+ meta?: Record<string, never>;
7778
+ }[];
7779
+ }[];
7780
+ /** @description Inline skillsets to provide additional abilities */
7781
+ skillsets?: {
7782
+ /** @description The name of the skillset */
7783
+ name?: string;
7784
+ /** @description The description of the skillset */
7785
+ description?: string;
7786
+ /** @description The abilities in the skillset */
7787
+ abilities: {
7788
+ /** @description The name of the ability */
7789
+ name: string;
7790
+ /** @description The description of the ability */
7791
+ description: string;
7792
+ /** @description The instruction for the ability */
7793
+ instruction: string;
7794
+ /** @description Optional secret ID for the ability */
7795
+ secretId?: string;
7796
+ /** @description Additional metadata for the ability */
7797
+ meta?: Record<string, never>;
7798
+ }[];
7799
+ }[];
7800
+ /** @description Feature flags to enable specific bot capabilities */
7801
+ features?: {
7802
+ /** @description The name of the feature to enable */
7803
+ name: string;
7804
+ /** @description Optional configuration options for the feature */
7805
+ options?: {
7806
+ [key: string]: unknown;
7807
+ };
7808
+ }[];
7809
+ };
7810
+ };
7811
+ };
7812
+ };
7813
+ responses: {
7814
+ /** @description The dispatch was queued successfully */
7815
+ 200: {
7816
+ headers: {
7817
+ [name: string]: unknown;
7818
+ };
7819
+ content: {
7820
+ "application/json": {
7821
+ /** @description The channel ID to subscribe to for completion events */
7822
+ channelId: string;
7823
+ };
7824
+ };
7825
+ };
7826
+ /** @description An error response */
7827
+ default: {
7828
+ headers: {
7829
+ [name: string]: unknown;
7830
+ };
7831
+ content?: never;
7832
+ };
7833
+ };
7834
+ };
7835
+ downvoteConversation: {
7836
+ parameters: {
7837
+ query?: never;
7838
+ header?: never;
7839
+ path: {
7840
+ conversationId: string;
7841
+ };
7842
+ cookie?: never;
7843
+ };
7844
+ requestBody: {
7845
+ content: {
7846
+ "application/json": {
7847
+ /**
7848
+ * @description The value of the downvote
7849
+ * @default -100
7850
+ */
7851
+ value?: number;
7852
+ /** @description The reason for the downvote */
7853
+ reason?: string;
7854
+ };
7855
+ };
7856
+ };
7857
+ responses: {
7858
+ /** @description The message was downvoted successfully */
7859
+ 200: {
7860
+ headers: {
7861
+ [name: string]: unknown;
7862
+ };
7863
+ content: {
7864
+ "application/json": {
7865
+ /** @description The conversation ID of the downvoted conversation */
7866
+ id: string;
7867
+ };
7868
+ };
7869
+ };
7870
+ /** @description An error response */
7871
+ default: {
7872
+ headers: {
7873
+ [name: string]: unknown;
7874
+ };
7875
+ content?: never;
7876
+ };
7877
+ };
7878
+ };
7879
+ fetchConversation: {
7735
7880
  parameters: {
7736
7881
  query?: never;
7737
7882
  header?: never;
@@ -7794,9 +7939,7 @@ export interface operations {
7794
7939
  headers: {
7795
7940
  [name: string]: unknown;
7796
7941
  };
7797
- content: {
7798
- "application/json": unknown;
7799
- };
7942
+ content?: never;
7800
7943
  };
7801
7944
  };
7802
7945
  };
@@ -7833,9 +7976,7 @@ export interface operations {
7833
7976
  headers: {
7834
7977
  [name: string]: unknown;
7835
7978
  };
7836
- content: {
7837
- "application/json": unknown;
7838
- };
7979
+ content?: never;
7839
7980
  };
7840
7981
  };
7841
7982
  };
@@ -7880,9 +8021,7 @@ export interface operations {
7880
8021
  headers: {
7881
8022
  [name: string]: unknown;
7882
8023
  };
7883
- content: {
7884
- "application/json": unknown;
7885
- };
8024
+ content?: never;
7886
8025
  };
7887
8026
  };
7888
8027
  };
@@ -7934,9 +8073,7 @@ export interface operations {
7934
8073
  headers: {
7935
8074
  [name: string]: unknown;
7936
8075
  };
7937
- content: {
7938
- "application/json": unknown;
7939
- };
8076
+ content?: never;
7940
8077
  };
7941
8078
  };
7942
8079
  };
@@ -7973,9 +8110,7 @@ export interface operations {
7973
8110
  headers: {
7974
8111
  [name: string]: unknown;
7975
8112
  };
7976
- content: {
7977
- "application/json": unknown;
7978
- };
8113
+ content?: never;
7979
8114
  };
7980
8115
  };
7981
8116
  };
@@ -8047,9 +8182,7 @@ export interface operations {
8047
8182
  headers: {
8048
8183
  [name: string]: unknown;
8049
8184
  };
8050
- content: {
8051
- "application/json": unknown;
8052
- };
8185
+ content?: never;
8053
8186
  };
8054
8187
  };
8055
8188
  };
@@ -8094,9 +8227,7 @@ export interface operations {
8094
8227
  headers: {
8095
8228
  [name: string]: unknown;
8096
8229
  };
8097
- content: {
8098
- "application/json": unknown;
8099
- };
8230
+ content?: never;
8100
8231
  };
8101
8232
  };
8102
8233
  };
@@ -8186,9 +8317,7 @@ export interface operations {
8186
8317
  headers: {
8187
8318
  [name: string]: unknown;
8188
8319
  };
8189
- content: {
8190
- "application/json": unknown;
8191
- };
8320
+ content?: never;
8192
8321
  };
8193
8322
  };
8194
8323
  };
@@ -8276,9 +8405,7 @@ export interface operations {
8276
8405
  headers: {
8277
8406
  [name: string]: unknown;
8278
8407
  };
8279
- content: {
8280
- "application/json": unknown;
8281
- };
8408
+ content?: never;
8282
8409
  };
8283
8410
  };
8284
8411
  };
@@ -8525,9 +8652,7 @@ export interface operations {
8525
8652
  headers: {
8526
8653
  [name: string]: unknown;
8527
8654
  };
8528
- content: {
8529
- "application/json": unknown;
8530
- };
8655
+ content?: never;
8531
8656
  };
8532
8657
  };
8533
8658
  };
@@ -8819,9 +8944,7 @@ export interface operations {
8819
8944
  headers: {
8820
8945
  [name: string]: unknown;
8821
8946
  };
8822
- content: {
8823
- "application/json": unknown;
8824
- };
8947
+ content?: never;
8825
8948
  };
8826
8949
  };
8827
8950
  };
@@ -8864,9 +8987,7 @@ export interface operations {
8864
8987
  headers: {
8865
8988
  [name: string]: unknown;
8866
8989
  };
8867
- content: {
8868
- "application/json": unknown;
8869
- };
8990
+ content?: never;
8870
8991
  };
8871
8992
  };
8872
8993
  };
@@ -8936,9 +9057,7 @@ export interface operations {
8936
9057
  headers: {
8937
9058
  [name: string]: unknown;
8938
9059
  };
8939
- content: {
8940
- "application/json": unknown;
8941
- };
9060
+ content?: never;
8942
9061
  };
8943
9062
  };
8944
9063
  };
@@ -8982,9 +9101,7 @@ export interface operations {
8982
9101
  headers: {
8983
9102
  [name: string]: unknown;
8984
9103
  };
8985
- content: {
8986
- "application/json": unknown;
8987
- };
9104
+ content?: never;
8988
9105
  };
8989
9106
  };
8990
9107
  };
@@ -9021,9 +9138,7 @@ export interface operations {
9021
9138
  headers: {
9022
9139
  [name: string]: unknown;
9023
9140
  };
9024
- content: {
9025
- "application/json": unknown;
9026
- };
9141
+ content?: never;
9027
9142
  };
9028
9143
  };
9029
9144
  };
@@ -9324,9 +9439,7 @@ export interface operations {
9324
9439
  headers: {
9325
9440
  [name: string]: unknown;
9326
9441
  };
9327
- content: {
9328
- "application/json": unknown;
9329
- };
9442
+ content?: never;
9330
9443
  };
9331
9444
  };
9332
9445
  };
@@ -9411,12 +9524,182 @@ export interface operations {
9411
9524
  };
9412
9525
  /** @description An error response */
9413
9526
  default: {
9527
+ headers: {
9528
+ [name: string]: unknown;
9529
+ };
9530
+ content?: never;
9531
+ };
9532
+ };
9533
+ };
9534
+ dispatchConversation: {
9535
+ parameters: {
9536
+ query?: never;
9537
+ header?: {
9538
+ /** @description The timezone to use for the request */
9539
+ "X-Timezone"?: string;
9540
+ };
9541
+ path?: never;
9542
+ cookie?: never;
9543
+ };
9544
+ requestBody: {
9545
+ content: {
9546
+ "application/json": {
9547
+ /** @description An array of messages to be added to the conversation */
9548
+ messages: {
9549
+ /**
9550
+ * @description The type of the message
9551
+ * @enum {string}
9552
+ */
9553
+ type: "user" | "bot" | "reasoning" | "context" | "instruction" | "backstory" | "activity";
9554
+ /** @description The text of the message */
9555
+ text: string;
9556
+ /** @description Meta data information */
9557
+ meta?: {
9558
+ [key: string]: unknown;
9559
+ };
9560
+ }[];
9561
+ /** @description An array of attachments to be added to the conversation */
9562
+ attachments?: {
9563
+ /** @description The URL of the attachment */
9564
+ url?: string;
9565
+ }[];
9566
+ /** @description The contact ID to associate with this conversation */
9567
+ contactId?: string | {
9568
+ /** @description A unique fingerprint to identify the contact */
9569
+ fingerprint: string;
9570
+ /** @description The name of the contact */
9571
+ name?: string;
9572
+ /** @description A description of the contact */
9573
+ description?: string;
9574
+ /** @description The email address of the contact */
9575
+ email?: string;
9576
+ /** @description The phone number of the contact */
9577
+ phone?: string;
9578
+ /** @description A nickname for the contact */
9579
+ nick?: string;
9580
+ /** @description Additional metadata for the contact */
9581
+ meta?: {
9582
+ [key: string]: unknown;
9583
+ };
9584
+ };
9585
+ /** @description An array of functions to be added to the conversation */
9586
+ functions?: {
9587
+ /** @description The name of the function (must be a valid JS identifier, max 64 chars) */
9588
+ name: string;
9589
+ /** @description The description of the function */
9590
+ description: string;
9591
+ /** @description JSON Schema definition for the function parameters */
9592
+ parameters: {
9593
+ /**
9594
+ * @description The schema type, must be "object"
9595
+ * @enum {string}
9596
+ */
9597
+ type: "object";
9598
+ /** @description Object property definitions */
9599
+ properties: {
9600
+ [key: string]: unknown;
9601
+ };
9602
+ /** @description Required property names */
9603
+ required?: string[];
9604
+ };
9605
+ /** @description The result of the function execution */
9606
+ result?: {
9607
+ /** @description The data returned by the function (can be any type) */
9608
+ data: unknown;
9609
+ } | {
9610
+ /** @description The channel for streaming function results */
9611
+ channel: string;
9612
+ };
9613
+ }[];
9614
+ /** @description Extensions to enhance the bot's capabilities */
9615
+ extensions?: {
9616
+ /** @description Additional backstory for the bot */
9617
+ backstory?: string;
9618
+ /** @description Inline datasets to provide additional context */
9619
+ datasets?: {
9620
+ /** @description The name of the dataset */
9621
+ name?: string;
9622
+ /** @description The description of the dataset */
9623
+ description?: string;
9624
+ /** @description The records in the dataset */
9625
+ records: {
9626
+ /** @description The text content of the record */
9627
+ text: string;
9628
+ /** @description Additional metadata for the record */
9629
+ meta?: Record<string, never>;
9630
+ }[];
9631
+ }[];
9632
+ /** @description Inline skillsets to provide additional abilities */
9633
+ skillsets?: {
9634
+ /** @description The name of the skillset */
9635
+ name?: string;
9636
+ /** @description The description of the skillset */
9637
+ description?: string;
9638
+ /** @description The abilities in the skillset */
9639
+ abilities: {
9640
+ /** @description The name of the ability */
9641
+ name: string;
9642
+ /** @description The description of the ability */
9643
+ description: string;
9644
+ /** @description The instruction for the ability */
9645
+ instruction: string;
9646
+ /** @description Optional secret ID for the ability */
9647
+ secretId?: string;
9648
+ /** @description Additional metadata for the ability */
9649
+ meta?: Record<string, never>;
9650
+ }[];
9651
+ }[];
9652
+ /** @description Feature flags to enable specific bot capabilities */
9653
+ features?: {
9654
+ /** @description The name of the feature to enable */
9655
+ name: string;
9656
+ /** @description Optional configuration options for the feature */
9657
+ options?: {
9658
+ [key: string]: unknown;
9659
+ };
9660
+ }[];
9661
+ };
9662
+ } & ({
9663
+ /** @description The ID of the bot this configuration is using */
9664
+ botId?: string;
9665
+ } | {
9666
+ /**
9667
+ * @description A model definition
9668
+ * @example gpt-4-turbo/temperature=0.7
9669
+ */
9670
+ model?: string;
9671
+ /** @description The backstory this configuration is using */
9672
+ backstory?: string;
9673
+ /** @description The id of the dataset this configuration is using */
9674
+ datasetId?: string;
9675
+ /** @description The id of the skillset this configuration is using */
9676
+ skillsetId?: string;
9677
+ /** @description The privacy flag for this configuration */
9678
+ privacy?: boolean;
9679
+ /** @description The moderation flag for this configuration */
9680
+ moderation?: boolean;
9681
+ });
9682
+ };
9683
+ };
9684
+ responses: {
9685
+ /** @description The dispatch was queued successfully */
9686
+ 200: {
9414
9687
  headers: {
9415
9688
  [name: string]: unknown;
9416
9689
  };
9417
9690
  content: {
9418
- "application/json": unknown;
9691
+ "application/json": {
9692
+ /** @description The channel ID to subscribe to for completion events */
9693
+ channelId: string;
9694
+ };
9695
+ };
9696
+ };
9697
+ /** @description An error response */
9698
+ default: {
9699
+ headers: {
9700
+ [name: string]: unknown;
9419
9701
  };
9702
+ content?: never;
9420
9703
  };
9421
9704
  };
9422
9705
  };
@@ -9542,9 +9825,7 @@ export interface operations {
9542
9825
  headers: {
9543
9826
  [name: string]: unknown;
9544
9827
  };
9545
- content: {
9546
- "application/json": unknown;
9547
- };
9828
+ content?: never;
9548
9829
  };
9549
9830
  };
9550
9831
  };
@@ -9669,9 +9950,7 @@ export interface operations {
9669
9950
  headers: {
9670
9951
  [name: string]: unknown;
9671
9952
  };
9672
- content: {
9673
- "application/json": unknown;
9674
- };
9953
+ content?: never;
9675
9954
  };
9676
9955
  };
9677
9956
  };
@@ -9707,9 +9986,7 @@ export interface operations {
9707
9986
  headers: {
9708
9987
  [name: string]: unknown;
9709
9988
  };
9710
- content: {
9711
- "application/json": unknown;
9712
- };
9989
+ content?: never;
9713
9990
  };
9714
9991
  };
9715
9992
  };
@@ -9778,9 +10055,7 @@ export interface operations {
9778
10055
  headers: {
9779
10056
  [name: string]: unknown;
9780
10057
  };
9781
- content: {
9782
- "application/json": unknown;
9783
- };
10058
+ content?: never;
9784
10059
  };
9785
10060
  };
9786
10061
  };
@@ -9823,9 +10098,7 @@ export interface operations {
9823
10098
  headers: {
9824
10099
  [name: string]: unknown;
9825
10100
  };
9826
- content: {
9827
- "application/json": unknown;
9828
- };
10101
+ content?: never;
9829
10102
  };
9830
10103
  };
9831
10104
  };
@@ -9865,9 +10138,7 @@ export interface operations {
9865
10138
  headers: {
9866
10139
  [name: string]: unknown;
9867
10140
  };
9868
- content: {
9869
- "application/json": unknown;
9870
- };
10141
+ content?: never;
9871
10142
  };
9872
10143
  };
9873
10144
  };
@@ -9904,9 +10175,7 @@ export interface operations {
9904
10175
  headers: {
9905
10176
  [name: string]: unknown;
9906
10177
  };
9907
- content: {
9908
- "application/json": unknown;
9909
- };
10178
+ content?: never;
9910
10179
  };
9911
10180
  };
9912
10181
  };
@@ -9992,9 +10261,7 @@ export interface operations {
9992
10261
  headers: {
9993
10262
  [name: string]: unknown;
9994
10263
  };
9995
- content: {
9996
- "application/json": unknown;
9997
- };
10264
+ content?: never;
9998
10265
  };
9999
10266
  };
10000
10267
  };
@@ -10031,9 +10298,7 @@ export interface operations {
10031
10298
  headers: {
10032
10299
  [name: string]: unknown;
10033
10300
  };
10034
- content: {
10035
- "application/json": unknown;
10036
- };
10301
+ content?: never;
10037
10302
  };
10038
10303
  };
10039
10304
  };
@@ -10074,9 +10339,7 @@ export interface operations {
10074
10339
  headers: {
10075
10340
  [name: string]: unknown;
10076
10341
  };
10077
- content: {
10078
- "application/json": unknown;
10079
- };
10342
+ content?: never;
10080
10343
  };
10081
10344
  };
10082
10345
  };
@@ -10122,9 +10385,7 @@ export interface operations {
10122
10385
  headers: {
10123
10386
  [name: string]: unknown;
10124
10387
  };
10125
- content: {
10126
- "application/json": unknown;
10127
- };
10388
+ content?: never;
10128
10389
  };
10129
10390
  };
10130
10391
  };
@@ -10169,9 +10430,7 @@ export interface operations {
10169
10430
  headers: {
10170
10431
  [name: string]: unknown;
10171
10432
  };
10172
- content: {
10173
- "application/json": unknown;
10174
- };
10433
+ content?: never;
10175
10434
  };
10176
10435
  };
10177
10436
  };
@@ -10234,9 +10493,7 @@ export interface operations {
10234
10493
  headers: {
10235
10494
  [name: string]: unknown;
10236
10495
  };
10237
- content: {
10238
- "application/json": unknown;
10239
- };
10496
+ content?: never;
10240
10497
  };
10241
10498
  };
10242
10499
  };
@@ -10298,9 +10555,7 @@ export interface operations {
10298
10555
  headers: {
10299
10556
  [name: string]: unknown;
10300
10557
  };
10301
- content: {
10302
- "application/json": unknown;
10303
- };
10558
+ content?: never;
10304
10559
  };
10305
10560
  };
10306
10561
  };
@@ -10362,9 +10617,7 @@ export interface operations {
10362
10617
  headers: {
10363
10618
  [name: string]: unknown;
10364
10619
  };
10365
- content: {
10366
- "application/json": unknown;
10367
- };
10620
+ content?: never;
10368
10621
  };
10369
10622
  };
10370
10623
  };
@@ -10432,9 +10685,7 @@ export interface operations {
10432
10685
  headers: {
10433
10686
  [name: string]: unknown;
10434
10687
  };
10435
- content: {
10436
- "application/json": unknown;
10437
- };
10688
+ content?: never;
10438
10689
  };
10439
10690
  };
10440
10691
  };
@@ -10502,9 +10753,7 @@ export interface operations {
10502
10753
  headers: {
10503
10754
  [name: string]: unknown;
10504
10755
  };
10505
- content: {
10506
- "application/json": unknown;
10507
- };
10756
+ content?: never;
10508
10757
  };
10509
10758
  };
10510
10759
  };
@@ -10629,9 +10878,7 @@ export interface operations {
10629
10878
  headers: {
10630
10879
  [name: string]: unknown;
10631
10880
  };
10632
- content: {
10633
- "application/json": unknown;
10634
- };
10881
+ content?: never;
10635
10882
  };
10636
10883
  };
10637
10884
  };
@@ -10667,9 +10914,7 @@ export interface operations {
10667
10914
  headers: {
10668
10915
  [name: string]: unknown;
10669
10916
  };
10670
- content: {
10671
- "application/json": unknown;
10672
- };
10917
+ content?: never;
10673
10918
  };
10674
10919
  };
10675
10920
  };
@@ -10702,9 +10947,7 @@ export interface operations {
10702
10947
  headers: {
10703
10948
  [name: string]: unknown;
10704
10949
  };
10705
- content: {
10706
- "application/json": unknown;
10707
- };
10950
+ content?: never;
10708
10951
  };
10709
10952
  };
10710
10953
  };
@@ -10755,9 +10998,7 @@ export interface operations {
10755
10998
  headers: {
10756
10999
  [name: string]: unknown;
10757
11000
  };
10758
- content: {
10759
- "application/json": unknown;
10760
- };
11001
+ content?: never;
10761
11002
  };
10762
11003
  };
10763
11004
  };
@@ -10793,9 +11034,7 @@ export interface operations {
10793
11034
  headers: {
10794
11035
  [name: string]: unknown;
10795
11036
  };
10796
- content: {
10797
- "application/json": unknown;
10798
- };
11037
+ content?: never;
10799
11038
  };
10800
11039
  };
10801
11040
  };
@@ -10847,9 +11086,7 @@ export interface operations {
10847
11086
  headers: {
10848
11087
  [name: string]: unknown;
10849
11088
  };
10850
- content: {
10851
- "application/json": unknown;
10852
- };
11089
+ content?: never;
10853
11090
  };
10854
11091
  };
10855
11092
  };
@@ -10915,9 +11152,7 @@ export interface operations {
10915
11152
  headers: {
10916
11153
  [name: string]: unknown;
10917
11154
  };
10918
- content: {
10919
- "application/json": unknown;
10920
- };
11155
+ content?: never;
10921
11156
  };
10922
11157
  };
10923
11158
  };
@@ -10967,9 +11202,7 @@ export interface operations {
10967
11202
  headers: {
10968
11203
  [name: string]: unknown;
10969
11204
  };
10970
- content: {
10971
- "application/json": unknown;
10972
- };
11205
+ content?: never;
10973
11206
  };
10974
11207
  };
10975
11208
  };
@@ -11058,9 +11291,7 @@ export interface operations {
11058
11291
  headers: {
11059
11292
  [name: string]: unknown;
11060
11293
  };
11061
- content: {
11062
- "application/json": unknown;
11063
- };
11294
+ content?: never;
11064
11295
  };
11065
11296
  };
11066
11297
  };
@@ -11096,9 +11327,7 @@ export interface operations {
11096
11327
  headers: {
11097
11328
  [name: string]: unknown;
11098
11329
  };
11099
- content: {
11100
- "application/json": unknown;
11101
- };
11330
+ content?: never;
11102
11331
  };
11103
11332
  };
11104
11333
  };
@@ -11154,9 +11383,7 @@ export interface operations {
11154
11383
  headers: {
11155
11384
  [name: string]: unknown;
11156
11385
  };
11157
- content: {
11158
- "application/json": unknown;
11159
- };
11386
+ content?: never;
11160
11387
  };
11161
11388
  };
11162
11389
  };
@@ -11192,9 +11419,7 @@ export interface operations {
11192
11419
  headers: {
11193
11420
  [name: string]: unknown;
11194
11421
  };
11195
- content: {
11196
- "application/json": unknown;
11197
- };
11422
+ content?: never;
11198
11423
  };
11199
11424
  };
11200
11425
  };
@@ -11255,9 +11480,7 @@ export interface operations {
11255
11480
  headers: {
11256
11481
  [name: string]: unknown;
11257
11482
  };
11258
- content: {
11259
- "application/json": unknown;
11260
- };
11483
+ content?: never;
11261
11484
  };
11262
11485
  };
11263
11486
  };
@@ -11316,9 +11539,7 @@ export interface operations {
11316
11539
  headers: {
11317
11540
  [name: string]: unknown;
11318
11541
  };
11319
- content: {
11320
- "application/json": unknown;
11321
- };
11542
+ content?: never;
11322
11543
  };
11323
11544
  };
11324
11545
  };
@@ -11417,9 +11638,7 @@ export interface operations {
11417
11638
  headers: {
11418
11639
  [name: string]: unknown;
11419
11640
  };
11420
- content: {
11421
- "application/json": unknown;
11422
- };
11641
+ content?: never;
11423
11642
  };
11424
11643
  };
11425
11644
  };
@@ -11455,9 +11674,7 @@ export interface operations {
11455
11674
  headers: {
11456
11675
  [name: string]: unknown;
11457
11676
  };
11458
- content: {
11459
- "application/json": unknown;
11460
- };
11677
+ content?: never;
11461
11678
  };
11462
11679
  };
11463
11680
  };
@@ -11511,9 +11728,7 @@ export interface operations {
11511
11728
  headers: {
11512
11729
  [name: string]: unknown;
11513
11730
  };
11514
- content: {
11515
- "application/json": unknown;
11516
- };
11731
+ content?: never;
11517
11732
  };
11518
11733
  };
11519
11734
  };
@@ -11549,9 +11764,7 @@ export interface operations {
11549
11764
  headers: {
11550
11765
  [name: string]: unknown;
11551
11766
  };
11552
- content: {
11553
- "application/json": unknown;
11554
- };
11767
+ content?: never;
11555
11768
  };
11556
11769
  };
11557
11770
  };
@@ -11606,9 +11819,7 @@ export interface operations {
11606
11819
  headers: {
11607
11820
  [name: string]: unknown;
11608
11821
  };
11609
- content: {
11610
- "application/json": unknown;
11611
- };
11822
+ content?: never;
11612
11823
  };
11613
11824
  };
11614
11825
  };
@@ -11661,9 +11872,7 @@ export interface operations {
11661
11872
  headers: {
11662
11873
  [name: string]: unknown;
11663
11874
  };
11664
- content: {
11665
- "application/json": unknown;
11666
- };
11875
+ content?: never;
11667
11876
  };
11668
11877
  };
11669
11878
  };
@@ -11758,9 +11967,7 @@ export interface operations {
11758
11967
  headers: {
11759
11968
  [name: string]: unknown;
11760
11969
  };
11761
- content: {
11762
- "application/json": unknown;
11763
- };
11970
+ content?: never;
11764
11971
  };
11765
11972
  };
11766
11973
  };
@@ -11796,9 +12003,7 @@ export interface operations {
11796
12003
  headers: {
11797
12004
  [name: string]: unknown;
11798
12005
  };
11799
- content: {
11800
- "application/json": unknown;
11801
- };
12006
+ content?: never;
11802
12007
  };
11803
12008
  };
11804
12009
  };
@@ -11852,9 +12057,7 @@ export interface operations {
11852
12057
  headers: {
11853
12058
  [name: string]: unknown;
11854
12059
  };
11855
- content: {
11856
- "application/json": unknown;
11857
- };
12060
+ content?: never;
11858
12061
  };
11859
12062
  };
11860
12063
  };
@@ -11909,9 +12112,7 @@ export interface operations {
11909
12112
  headers: {
11910
12113
  [name: string]: unknown;
11911
12114
  };
11912
- content: {
11913
- "application/json": unknown;
11914
- };
12115
+ content?: never;
11915
12116
  };
11916
12117
  };
11917
12118
  };
@@ -11964,9 +12165,7 @@ export interface operations {
11964
12165
  headers: {
11965
12166
  [name: string]: unknown;
11966
12167
  };
11967
- content: {
11968
- "application/json": unknown;
11969
- };
12168
+ content?: never;
11970
12169
  };
11971
12170
  };
11972
12171
  };
@@ -12061,9 +12260,7 @@ export interface operations {
12061
12260
  headers: {
12062
12261
  [name: string]: unknown;
12063
12262
  };
12064
- content: {
12065
- "application/json": unknown;
12066
- };
12263
+ content?: never;
12067
12264
  };
12068
12265
  };
12069
12266
  };
@@ -12099,9 +12296,7 @@ export interface operations {
12099
12296
  headers: {
12100
12297
  [name: string]: unknown;
12101
12298
  };
12102
- content: {
12103
- "application/json": unknown;
12104
- };
12299
+ content?: never;
12105
12300
  };
12106
12301
  };
12107
12302
  };
@@ -12149,9 +12344,7 @@ export interface operations {
12149
12344
  headers: {
12150
12345
  [name: string]: unknown;
12151
12346
  };
12152
- content: {
12153
- "application/json": unknown;
12154
- };
12347
+ content?: never;
12155
12348
  };
12156
12349
  };
12157
12350
  };
@@ -12200,9 +12393,7 @@ export interface operations {
12200
12393
  headers: {
12201
12394
  [name: string]: unknown;
12202
12395
  };
12203
- content: {
12204
- "application/json": unknown;
12205
- };
12396
+ content?: never;
12206
12397
  };
12207
12398
  };
12208
12399
  };
@@ -12249,9 +12440,7 @@ export interface operations {
12249
12440
  headers: {
12250
12441
  [name: string]: unknown;
12251
12442
  };
12252
- content: {
12253
- "application/json": unknown;
12254
- };
12443
+ content?: never;
12255
12444
  };
12256
12445
  };
12257
12446
  };
@@ -12334,9 +12523,7 @@ export interface operations {
12334
12523
  headers: {
12335
12524
  [name: string]: unknown;
12336
12525
  };
12337
- content: {
12338
- "application/json": unknown;
12339
- };
12526
+ content?: never;
12340
12527
  };
12341
12528
  };
12342
12529
  };
@@ -12372,9 +12559,7 @@ export interface operations {
12372
12559
  headers: {
12373
12560
  [name: string]: unknown;
12374
12561
  };
12375
- content: {
12376
- "application/json": unknown;
12377
- };
12562
+ content?: never;
12378
12563
  };
12379
12564
  };
12380
12565
  };
@@ -12430,9 +12615,7 @@ export interface operations {
12430
12615
  headers: {
12431
12616
  [name: string]: unknown;
12432
12617
  };
12433
- content: {
12434
- "application/json": unknown;
12435
- };
12618
+ content?: never;
12436
12619
  };
12437
12620
  };
12438
12621
  };
@@ -12468,9 +12651,7 @@ export interface operations {
12468
12651
  headers: {
12469
12652
  [name: string]: unknown;
12470
12653
  };
12471
- content: {
12472
- "application/json": unknown;
12473
- };
12654
+ content?: never;
12474
12655
  };
12475
12656
  };
12476
12657
  };
@@ -12525,9 +12706,7 @@ export interface operations {
12525
12706
  headers: {
12526
12707
  [name: string]: unknown;
12527
12708
  };
12528
- content: {
12529
- "application/json": unknown;
12530
- };
12709
+ content?: never;
12531
12710
  };
12532
12711
  };
12533
12712
  };
@@ -12580,9 +12759,7 @@ export interface operations {
12580
12759
  headers: {
12581
12760
  [name: string]: unknown;
12582
12761
  };
12583
- content: {
12584
- "application/json": unknown;
12585
- };
12762
+ content?: never;
12586
12763
  };
12587
12764
  };
12588
12765
  };
@@ -12681,9 +12858,7 @@ export interface operations {
12681
12858
  headers: {
12682
12859
  [name: string]: unknown;
12683
12860
  };
12684
- content: {
12685
- "application/json": unknown;
12686
- };
12861
+ content?: never;
12687
12862
  };
12688
12863
  };
12689
12864
  };
@@ -12719,9 +12894,7 @@ export interface operations {
12719
12894
  headers: {
12720
12895
  [name: string]: unknown;
12721
12896
  };
12722
- content: {
12723
- "application/json": unknown;
12724
- };
12897
+ content?: never;
12725
12898
  };
12726
12899
  };
12727
12900
  };
@@ -12775,9 +12948,7 @@ export interface operations {
12775
12948
  headers: {
12776
12949
  [name: string]: unknown;
12777
12950
  };
12778
- content: {
12779
- "application/json": unknown;
12780
- };
12951
+ content?: never;
12781
12952
  };
12782
12953
  };
12783
12954
  };
@@ -12813,9 +12984,7 @@ export interface operations {
12813
12984
  headers: {
12814
12985
  [name: string]: unknown;
12815
12986
  };
12816
- content: {
12817
- "application/json": unknown;
12818
- };
12987
+ content?: never;
12819
12988
  };
12820
12989
  };
12821
12990
  };
@@ -12870,9 +13039,7 @@ export interface operations {
12870
13039
  headers: {
12871
13040
  [name: string]: unknown;
12872
13041
  };
12873
- content: {
12874
- "application/json": unknown;
12875
- };
13042
+ content?: never;
12876
13043
  };
12877
13044
  };
12878
13045
  };
@@ -12925,9 +13092,7 @@ export interface operations {
12925
13092
  headers: {
12926
13093
  [name: string]: unknown;
12927
13094
  };
12928
- content: {
12929
- "application/json": unknown;
12930
- };
13095
+ content?: never;
12931
13096
  };
12932
13097
  };
12933
13098
  };
@@ -13022,9 +13187,7 @@ export interface operations {
13022
13187
  headers: {
13023
13188
  [name: string]: unknown;
13024
13189
  };
13025
- content: {
13026
- "application/json": unknown;
13027
- };
13190
+ content?: never;
13028
13191
  };
13029
13192
  };
13030
13193
  };
@@ -13060,9 +13223,7 @@ export interface operations {
13060
13223
  headers: {
13061
13224
  [name: string]: unknown;
13062
13225
  };
13063
- content: {
13064
- "application/json": unknown;
13065
- };
13226
+ content?: never;
13066
13227
  };
13067
13228
  };
13068
13229
  };
@@ -13122,9 +13283,7 @@ export interface operations {
13122
13283
  headers: {
13123
13284
  [name: string]: unknown;
13124
13285
  };
13125
- content: {
13126
- "application/json": unknown;
13127
- };
13286
+ content?: never;
13128
13287
  };
13129
13288
  };
13130
13289
  };
@@ -13160,9 +13319,7 @@ export interface operations {
13160
13319
  headers: {
13161
13320
  [name: string]: unknown;
13162
13321
  };
13163
- content: {
13164
- "application/json": unknown;
13165
- };
13322
+ content?: never;
13166
13323
  };
13167
13324
  };
13168
13325
  };
@@ -13223,9 +13380,7 @@ export interface operations {
13223
13380
  headers: {
13224
13381
  [name: string]: unknown;
13225
13382
  };
13226
- content: {
13227
- "application/json": unknown;
13228
- };
13383
+ content?: never;
13229
13384
  };
13230
13385
  };
13231
13386
  };
@@ -13284,9 +13439,7 @@ export interface operations {
13284
13439
  headers: {
13285
13440
  [name: string]: unknown;
13286
13441
  };
13287
- content: {
13288
- "application/json": unknown;
13289
- };
13442
+ content?: never;
13290
13443
  };
13291
13444
  };
13292
13445
  };
@@ -13393,9 +13546,7 @@ export interface operations {
13393
13546
  headers: {
13394
13547
  [name: string]: unknown;
13395
13548
  };
13396
- content: {
13397
- "application/json": unknown;
13398
- };
13549
+ content?: never;
13399
13550
  };
13400
13551
  };
13401
13552
  };
@@ -13431,9 +13582,7 @@ export interface operations {
13431
13582
  headers: {
13432
13583
  [name: string]: unknown;
13433
13584
  };
13434
- content: {
13435
- "application/json": unknown;
13436
- };
13585
+ content?: never;
13437
13586
  };
13438
13587
  };
13439
13588
  };
@@ -13499,9 +13648,7 @@ export interface operations {
13499
13648
  headers: {
13500
13649
  [name: string]: unknown;
13501
13650
  };
13502
- content: {
13503
- "application/json": unknown;
13504
- };
13651
+ content?: never;
13505
13652
  };
13506
13653
  };
13507
13654
  };
@@ -13537,9 +13684,7 @@ export interface operations {
13537
13684
  headers: {
13538
13685
  [name: string]: unknown;
13539
13686
  };
13540
- content: {
13541
- "application/json": unknown;
13542
- };
13687
+ content?: never;
13543
13688
  };
13544
13689
  };
13545
13690
  };
@@ -13606,9 +13751,7 @@ export interface operations {
13606
13751
  headers: {
13607
13752
  [name: string]: unknown;
13608
13753
  };
13609
- content: {
13610
- "application/json": unknown;
13611
- };
13754
+ content?: never;
13612
13755
  };
13613
13756
  };
13614
13757
  };
@@ -13673,9 +13816,7 @@ export interface operations {
13673
13816
  headers: {
13674
13817
  [name: string]: unknown;
13675
13818
  };
13676
- content: {
13677
- "application/json": unknown;
13678
- };
13819
+ content?: never;
13679
13820
  };
13680
13821
  };
13681
13822
  };
@@ -13794,9 +13935,7 @@ export interface operations {
13794
13935
  headers: {
13795
13936
  [name: string]: unknown;
13796
13937
  };
13797
- content: {
13798
- "application/json": unknown;
13799
- };
13938
+ content?: never;
13800
13939
  };
13801
13940
  };
13802
13941
  };
@@ -13832,9 +13971,7 @@ export interface operations {
13832
13971
  headers: {
13833
13972
  [name: string]: unknown;
13834
13973
  };
13835
- content: {
13836
- "application/json": unknown;
13837
- };
13974
+ content?: never;
13838
13975
  };
13839
13976
  };
13840
13977
  };
@@ -13884,9 +14021,7 @@ export interface operations {
13884
14021
  headers: {
13885
14022
  [name: string]: unknown;
13886
14023
  };
13887
- content: {
13888
- "application/json": unknown;
13889
- };
14024
+ content?: never;
13890
14025
  };
13891
14026
  };
13892
14027
  };
@@ -13937,9 +14072,7 @@ export interface operations {
13937
14072
  headers: {
13938
14073
  [name: string]: unknown;
13939
14074
  };
13940
- content: {
13941
- "application/json": unknown;
13942
- };
14075
+ content?: never;
13943
14076
  };
13944
14077
  };
13945
14078
  };
@@ -13988,9 +14121,7 @@ export interface operations {
13988
14121
  headers: {
13989
14122
  [name: string]: unknown;
13990
14123
  };
13991
- content: {
13992
- "application/json": unknown;
13993
- };
14124
+ content?: never;
13994
14125
  };
13995
14126
  };
13996
14127
  };
@@ -14077,9 +14208,7 @@ export interface operations {
14077
14208
  headers: {
14078
14209
  [name: string]: unknown;
14079
14210
  };
14080
- content: {
14081
- "application/json": unknown;
14082
- };
14211
+ content?: never;
14083
14212
  };
14084
14213
  };
14085
14214
  };
@@ -14115,9 +14244,7 @@ export interface operations {
14115
14244
  headers: {
14116
14245
  [name: string]: unknown;
14117
14246
  };
14118
- content: {
14119
- "application/json": unknown;
14120
- };
14247
+ content?: never;
14121
14248
  };
14122
14249
  };
14123
14250
  };
@@ -14171,9 +14298,7 @@ export interface operations {
14171
14298
  headers: {
14172
14299
  [name: string]: unknown;
14173
14300
  };
14174
- content: {
14175
- "application/json": unknown;
14176
- };
14301
+ content?: never;
14177
14302
  };
14178
14303
  };
14179
14304
  };
@@ -14209,9 +14334,7 @@ export interface operations {
14209
14334
  headers: {
14210
14335
  [name: string]: unknown;
14211
14336
  };
14212
- content: {
14213
- "application/json": unknown;
14214
- };
14337
+ content?: never;
14215
14338
  };
14216
14339
  };
14217
14340
  };
@@ -14268,9 +14391,7 @@ export interface operations {
14268
14391
  headers: {
14269
14392
  [name: string]: unknown;
14270
14393
  };
14271
- content: {
14272
- "application/json": unknown;
14273
- };
14394
+ content?: never;
14274
14395
  };
14275
14396
  };
14276
14397
  };
@@ -14325,9 +14446,7 @@ export interface operations {
14325
14446
  headers: {
14326
14447
  [name: string]: unknown;
14327
14448
  };
14328
- content: {
14329
- "application/json": unknown;
14330
- };
14449
+ content?: never;
14331
14450
  };
14332
14451
  };
14333
14452
  };
@@ -14422,9 +14541,7 @@ export interface operations {
14422
14541
  headers: {
14423
14542
  [name: string]: unknown;
14424
14543
  };
14425
- content: {
14426
- "application/json": unknown;
14427
- };
14544
+ content?: never;
14428
14545
  };
14429
14546
  };
14430
14547
  };
@@ -14460,9 +14577,7 @@ export interface operations {
14460
14577
  headers: {
14461
14578
  [name: string]: unknown;
14462
14579
  };
14463
- content: {
14464
- "application/json": unknown;
14465
- };
14580
+ content?: never;
14466
14581
  };
14467
14582
  };
14468
14583
  };
@@ -14521,9 +14636,7 @@ export interface operations {
14521
14636
  headers: {
14522
14637
  [name: string]: unknown;
14523
14638
  };
14524
- content: {
14525
- "application/json": unknown;
14526
- };
14639
+ content?: never;
14527
14640
  };
14528
14641
  };
14529
14642
  };
@@ -14559,9 +14672,7 @@ export interface operations {
14559
14672
  headers: {
14560
14673
  [name: string]: unknown;
14561
14674
  };
14562
- content: {
14563
- "application/json": unknown;
14564
- };
14675
+ content?: never;
14565
14676
  };
14566
14677
  };
14567
14678
  };
@@ -14597,9 +14708,7 @@ export interface operations {
14597
14708
  headers: {
14598
14709
  [name: string]: unknown;
14599
14710
  };
14600
- content: {
14601
- "application/json": unknown;
14602
- };
14711
+ content?: never;
14603
14712
  };
14604
14713
  };
14605
14714
  };
@@ -14657,9 +14766,7 @@ export interface operations {
14657
14766
  headers: {
14658
14767
  [name: string]: unknown;
14659
14768
  };
14660
- content: {
14661
- "application/json": unknown;
14662
- };
14769
+ content?: never;
14663
14770
  };
14664
14771
  };
14665
14772
  };
@@ -14715,9 +14822,7 @@ export interface operations {
14715
14822
  headers: {
14716
14823
  [name: string]: unknown;
14717
14824
  };
14718
- content: {
14719
- "application/json": unknown;
14720
- };
14825
+ content?: never;
14721
14826
  };
14722
14827
  };
14723
14828
  };
@@ -14822,9 +14927,7 @@ export interface operations {
14822
14927
  headers: {
14823
14928
  [name: string]: unknown;
14824
14929
  };
14825
- content: {
14826
- "application/json": unknown;
14827
- };
14930
+ content?: never;
14828
14931
  };
14829
14932
  };
14830
14933
  };
@@ -14860,9 +14963,7 @@ export interface operations {
14860
14963
  headers: {
14861
14964
  [name: string]: unknown;
14862
14965
  };
14863
- content: {
14864
- "application/json": unknown;
14865
- };
14966
+ content?: never;
14866
14967
  };
14867
14968
  };
14868
14969
  };
@@ -14914,9 +15015,7 @@ export interface operations {
14914
15015
  headers: {
14915
15016
  [name: string]: unknown;
14916
15017
  };
14917
- content: {
14918
- "application/json": unknown;
14919
- };
15018
+ content?: never;
14920
15019
  };
14921
15020
  };
14922
15021
  };
@@ -14952,9 +15051,7 @@ export interface operations {
14952
15051
  headers: {
14953
15052
  [name: string]: unknown;
14954
15053
  };
14955
- content: {
14956
- "application/json": unknown;
14957
- };
15054
+ content?: never;
14958
15055
  };
14959
15056
  };
14960
15057
  };
@@ -15007,9 +15104,7 @@ export interface operations {
15007
15104
  headers: {
15008
15105
  [name: string]: unknown;
15009
15106
  };
15010
- content: {
15011
- "application/json": unknown;
15012
- };
15107
+ content?: never;
15013
15108
  };
15014
15109
  };
15015
15110
  };
@@ -15060,9 +15155,7 @@ export interface operations {
15060
15155
  headers: {
15061
15156
  [name: string]: unknown;
15062
15157
  };
15063
- content: {
15064
- "application/json": unknown;
15065
- };
15158
+ content?: never;
15066
15159
  };
15067
15160
  };
15068
15161
  };
@@ -15153,9 +15246,7 @@ export interface operations {
15153
15246
  headers: {
15154
15247
  [name: string]: unknown;
15155
15248
  };
15156
- content: {
15157
- "application/json": unknown;
15158
- };
15249
+ content?: never;
15159
15250
  };
15160
15251
  };
15161
15252
  };
@@ -15191,9 +15282,7 @@ export interface operations {
15191
15282
  headers: {
15192
15283
  [name: string]: unknown;
15193
15284
  };
15194
- content: {
15195
- "application/json": unknown;
15196
- };
15285
+ content?: never;
15197
15286
  };
15198
15287
  };
15199
15288
  };
@@ -15253,9 +15342,7 @@ export interface operations {
15253
15342
  headers: {
15254
15343
  [name: string]: unknown;
15255
15344
  };
15256
- content: {
15257
- "application/json": unknown;
15258
- };
15345
+ content?: never;
15259
15346
  };
15260
15347
  };
15261
15348
  };
@@ -15291,9 +15378,7 @@ export interface operations {
15291
15378
  headers: {
15292
15379
  [name: string]: unknown;
15293
15380
  };
15294
- content: {
15295
- "application/json": unknown;
15296
- };
15381
+ content?: never;
15297
15382
  };
15298
15383
  };
15299
15384
  };
@@ -15352,9 +15437,7 @@ export interface operations {
15352
15437
  headers: {
15353
15438
  [name: string]: unknown;
15354
15439
  };
15355
- content: {
15356
- "application/json": unknown;
15357
- };
15440
+ content?: never;
15358
15441
  };
15359
15442
  };
15360
15443
  };
@@ -15411,9 +15494,7 @@ export interface operations {
15411
15494
  headers: {
15412
15495
  [name: string]: unknown;
15413
15496
  };
15414
- content: {
15415
- "application/json": unknown;
15416
- };
15497
+ content?: never;
15417
15498
  };
15418
15499
  };
15419
15500
  };
@@ -15520,9 +15601,7 @@ export interface operations {
15520
15601
  headers: {
15521
15602
  [name: string]: unknown;
15522
15603
  };
15523
- content: {
15524
- "application/json": unknown;
15525
- };
15604
+ content?: never;
15526
15605
  };
15527
15606
  };
15528
15607
  };
@@ -15558,9 +15637,7 @@ export interface operations {
15558
15637
  headers: {
15559
15638
  [name: string]: unknown;
15560
15639
  };
15561
- content: {
15562
- "application/json": unknown;
15563
- };
15640
+ content?: never;
15564
15641
  };
15565
15642
  };
15566
15643
  };
@@ -15664,9 +15741,7 @@ export interface operations {
15664
15741
  headers: {
15665
15742
  [name: string]: unknown;
15666
15743
  };
15667
- content: {
15668
- "application/json": unknown;
15669
- };
15744
+ content?: never;
15670
15745
  };
15671
15746
  };
15672
15747
  };
@@ -15702,9 +15777,7 @@ export interface operations {
15702
15777
  headers: {
15703
15778
  [name: string]: unknown;
15704
15779
  };
15705
- content: {
15706
- "application/json": unknown;
15707
- };
15780
+ content?: never;
15708
15781
  };
15709
15782
  };
15710
15783
  };
@@ -15809,9 +15882,7 @@ export interface operations {
15809
15882
  headers: {
15810
15883
  [name: string]: unknown;
15811
15884
  };
15812
- content: {
15813
- "application/json": unknown;
15814
- };
15885
+ content?: never;
15815
15886
  };
15816
15887
  };
15817
15888
  };
@@ -15914,9 +15985,7 @@ export interface operations {
15914
15985
  headers: {
15915
15986
  [name: string]: unknown;
15916
15987
  };
15917
- content: {
15918
- "application/json": unknown;
15919
- };
15988
+ content?: never;
15920
15989
  };
15921
15990
  };
15922
15991
  };
@@ -16111,9 +16180,7 @@ export interface operations {
16111
16180
  headers: {
16112
16181
  [name: string]: unknown;
16113
16182
  };
16114
- content: {
16115
- "application/json": unknown;
16116
- };
16183
+ content?: never;
16117
16184
  };
16118
16185
  };
16119
16186
  };
@@ -16177,9 +16244,7 @@ export interface operations {
16177
16244
  headers: {
16178
16245
  [name: string]: unknown;
16179
16246
  };
16180
- content: {
16181
- "application/json": unknown;
16182
- };
16247
+ content?: never;
16183
16248
  };
16184
16249
  };
16185
16250
  };
@@ -16258,9 +16323,7 @@ export interface operations {
16258
16323
  headers: {
16259
16324
  [name: string]: unknown;
16260
16325
  };
16261
- content: {
16262
- "application/json": unknown;
16263
- };
16326
+ content?: never;
16264
16327
  };
16265
16328
  };
16266
16329
  };
@@ -16296,9 +16359,7 @@ export interface operations {
16296
16359
  headers: {
16297
16360
  [name: string]: unknown;
16298
16361
  };
16299
- content: {
16300
- "application/json": unknown;
16301
- };
16362
+ content?: never;
16302
16363
  };
16303
16364
  };
16304
16365
  };
@@ -16348,9 +16409,7 @@ export interface operations {
16348
16409
  headers: {
16349
16410
  [name: string]: unknown;
16350
16411
  };
16351
- content: {
16352
- "application/json": unknown;
16353
- };
16412
+ content?: never;
16354
16413
  };
16355
16414
  };
16356
16415
  };
@@ -16401,9 +16460,7 @@ export interface operations {
16401
16460
  headers: {
16402
16461
  [name: string]: unknown;
16403
16462
  };
16404
- content: {
16405
- "application/json": unknown;
16406
- };
16463
+ content?: never;
16407
16464
  };
16408
16465
  };
16409
16466
  };
@@ -16452,9 +16509,7 @@ export interface operations {
16452
16509
  headers: {
16453
16510
  [name: string]: unknown;
16454
16511
  };
16455
- content: {
16456
- "application/json": unknown;
16457
- };
16512
+ content?: never;
16458
16513
  };
16459
16514
  };
16460
16515
  };
@@ -16542,9 +16597,7 @@ export interface operations {
16542
16597
  headers: {
16543
16598
  [name: string]: unknown;
16544
16599
  };
16545
- content: {
16546
- "application/json": unknown;
16547
- };
16600
+ content?: never;
16548
16601
  };
16549
16602
  };
16550
16603
  };
@@ -16631,9 +16684,7 @@ export interface operations {
16631
16684
  headers: {
16632
16685
  [name: string]: unknown;
16633
16686
  };
16634
- content: {
16635
- "application/json": unknown;
16636
- };
16687
+ content?: never;
16637
16688
  };
16638
16689
  };
16639
16690
  };
@@ -16678,9 +16729,7 @@ export interface operations {
16678
16729
  headers: {
16679
16730
  [name: string]: unknown;
16680
16731
  };
16681
- content: {
16682
- "application/json": unknown;
16683
- };
16732
+ content?: never;
16684
16733
  };
16685
16734
  };
16686
16735
  };
@@ -16716,9 +16765,7 @@ export interface operations {
16716
16765
  headers: {
16717
16766
  [name: string]: unknown;
16718
16767
  };
16719
- content: {
16720
- "application/json": unknown;
16721
- };
16768
+ content?: never;
16722
16769
  };
16723
16770
  };
16724
16771
  };
@@ -16788,9 +16835,7 @@ export interface operations {
16788
16835
  headers: {
16789
16836
  [name: string]: unknown;
16790
16837
  };
16791
- content: {
16792
- "application/json": unknown;
16793
- };
16838
+ content?: never;
16794
16839
  };
16795
16840
  };
16796
16841
  };
@@ -16827,9 +16872,7 @@ export interface operations {
16827
16872
  headers: {
16828
16873
  [name: string]: unknown;
16829
16874
  };
16830
- content: {
16831
- "application/json": unknown;
16832
- };
16875
+ content?: never;
16833
16876
  };
16834
16877
  };
16835
16878
  };
@@ -16869,9 +16912,7 @@ export interface operations {
16869
16912
  headers: {
16870
16913
  [name: string]: unknown;
16871
16914
  };
16872
- content: {
16873
- "application/json": unknown;
16874
- };
16915
+ content?: never;
16875
16916
  };
16876
16917
  };
16877
16918
  };
@@ -16945,9 +16986,7 @@ export interface operations {
16945
16986
  headers: {
16946
16987
  [name: string]: unknown;
16947
16988
  };
16948
- content: {
16949
- "application/json": unknown;
16950
- };
16989
+ content?: never;
16951
16990
  };
16952
16991
  };
16953
16992
  };
@@ -17018,9 +17057,7 @@ export interface operations {
17018
17057
  headers: {
17019
17058
  [name: string]: unknown;
17020
17059
  };
17021
- content: {
17022
- "application/json": unknown;
17023
- };
17060
+ content?: never;
17024
17061
  };
17025
17062
  };
17026
17063
  };
@@ -17089,9 +17126,7 @@ export interface operations {
17089
17126
  headers: {
17090
17127
  [name: string]: unknown;
17091
17128
  };
17092
- content: {
17093
- "application/json": unknown;
17094
- };
17129
+ content?: never;
17095
17130
  };
17096
17131
  };
17097
17132
  };
@@ -17218,9 +17253,7 @@ export interface operations {
17218
17253
  headers: {
17219
17254
  [name: string]: unknown;
17220
17255
  };
17221
- content: {
17222
- "application/json": unknown;
17223
- };
17256
+ content?: never;
17224
17257
  };
17225
17258
  };
17226
17259
  };
@@ -17262,7 +17295,7 @@ export interface operations {
17262
17295
  createdAt: number;
17263
17296
  /** @description The timestamp (ms) when the instance was updated */
17264
17297
  updatedAt: number;
17265
- icon: string;
17298
+ instruction: string;
17266
17299
  /** @description A JSON Schema object type definition (https://json-schema.org/). Represents an object schema with properties and validation rules. */
17267
17300
  schema: {
17268
17301
  /**
@@ -17281,6 +17314,12 @@ export interface operations {
17281
17314
  /** @description Required property names */
17282
17315
  required?: string[];
17283
17316
  };
17317
+ /** @description The ID of the secret associated with the ability */
17318
+ secret?: string;
17319
+ /** @description The ID of the file associated with the ability */
17320
+ file?: string;
17321
+ icon: string;
17322
+ tags?: string[];
17284
17323
  setup?: string;
17285
17324
  commentary?: string;
17286
17325
  }[];
@@ -17307,7 +17346,7 @@ export interface operations {
17307
17346
  createdAt: number;
17308
17347
  /** @description The timestamp (ms) when the instance was updated */
17309
17348
  updatedAt: number;
17310
- icon: string;
17349
+ instruction: string;
17311
17350
  /** @description A JSON Schema object type definition (https://json-schema.org/). Represents an object schema with properties and validation rules. */
17312
17351
  schema: {
17313
17352
  /**
@@ -17326,6 +17365,12 @@ export interface operations {
17326
17365
  /** @description Required property names */
17327
17366
  required?: string[];
17328
17367
  };
17368
+ /** @description The ID of the secret associated with the ability */
17369
+ secret?: string;
17370
+ /** @description The ID of the file associated with the ability */
17371
+ file?: string;
17372
+ icon: string;
17373
+ tags?: string[];
17329
17374
  setup?: string;
17330
17375
  commentary?: string;
17331
17376
  };
@@ -17337,9 +17382,7 @@ export interface operations {
17337
17382
  headers: {
17338
17383
  [name: string]: unknown;
17339
17384
  };
17340
- content: {
17341
- "application/json": unknown;
17342
- };
17385
+ content?: never;
17343
17386
  };
17344
17387
  };
17345
17388
  };
@@ -17418,9 +17461,7 @@ export interface operations {
17418
17461
  headers: {
17419
17462
  [name: string]: unknown;
17420
17463
  };
17421
- content: {
17422
- "application/json": unknown;
17423
- };
17464
+ content?: never;
17424
17465
  };
17425
17466
  };
17426
17467
  };
@@ -17481,9 +17522,7 @@ export interface operations {
17481
17522
  headers: {
17482
17523
  [name: string]: unknown;
17483
17524
  };
17484
- content: {
17485
- "application/json": unknown;
17486
- };
17525
+ content?: never;
17487
17526
  };
17488
17527
  };
17489
17528
  };
@@ -17574,9 +17613,7 @@ export interface operations {
17574
17613
  headers: {
17575
17614
  [name: string]: unknown;
17576
17615
  };
17577
- content: {
17578
- "application/json": unknown;
17579
- };
17616
+ content?: never;
17580
17617
  };
17581
17618
  };
17582
17619
  };
@@ -17644,9 +17681,7 @@ export interface operations {
17644
17681
  headers: {
17645
17682
  [name: string]: unknown;
17646
17683
  };
17647
- content: {
17648
- "application/json": unknown;
17649
- };
17684
+ content?: never;
17650
17685
  };
17651
17686
  };
17652
17687
  };
@@ -17691,9 +17726,7 @@ export interface operations {
17691
17726
  headers: {
17692
17727
  [name: string]: unknown;
17693
17728
  };
17694
- content: {
17695
- "application/json": unknown;
17696
- };
17729
+ content?: never;
17697
17730
  };
17698
17731
  };
17699
17732
  };
@@ -17753,9 +17786,7 @@ export interface operations {
17753
17786
  headers: {
17754
17787
  [name: string]: unknown;
17755
17788
  };
17756
- content: {
17757
- "application/json": unknown;
17758
- };
17789
+ content?: never;
17759
17790
  };
17760
17791
  };
17761
17792
  };
@@ -17848,9 +17879,7 @@ export interface operations {
17848
17879
  headers: {
17849
17880
  [name: string]: unknown;
17850
17881
  };
17851
- content: {
17852
- "application/json": unknown;
17853
- };
17882
+ content?: never;
17854
17883
  };
17855
17884
  };
17856
17885
  };
@@ -17915,9 +17944,7 @@ export interface operations {
17915
17944
  headers: {
17916
17945
  [name: string]: unknown;
17917
17946
  };
17918
- content: {
17919
- "application/json": unknown;
17920
- };
17947
+ content?: never;
17921
17948
  };
17922
17949
  };
17923
17950
  };
@@ -17978,9 +18005,7 @@ export interface operations {
17978
18005
  headers: {
17979
18006
  [name: string]: unknown;
17980
18007
  };
17981
- content: {
17982
- "application/json": unknown;
17983
- };
18008
+ content?: never;
17984
18009
  };
17985
18010
  };
17986
18011
  };
@@ -18071,9 +18096,7 @@ export interface operations {
18071
18096
  headers: {
18072
18097
  [name: string]: unknown;
18073
18098
  };
18074
- content: {
18075
- "application/json": unknown;
18076
- };
18099
+ content?: never;
18077
18100
  };
18078
18101
  };
18079
18102
  };
@@ -18141,9 +18164,7 @@ export interface operations {
18141
18164
  headers: {
18142
18165
  [name: string]: unknown;
18143
18166
  };
18144
- content: {
18145
- "application/json": unknown;
18146
- };
18167
+ content?: never;
18147
18168
  };
18148
18169
  };
18149
18170
  };
@@ -18238,9 +18259,7 @@ export interface operations {
18238
18259
  headers: {
18239
18260
  [name: string]: unknown;
18240
18261
  };
18241
- content: {
18242
- "application/json": unknown;
18243
- };
18262
+ content?: never;
18244
18263
  };
18245
18264
  };
18246
18265
  };
@@ -18287,6 +18306,18 @@ export interface operations {
18287
18306
  * @enum {string}
18288
18307
  */
18289
18308
  type: "plain" | "basic" | "bearer" | "oauth" | "template" | "reference";
18309
+ /**
18310
+ * @description The kind of the secret
18311
+ * @enum {string}
18312
+ */
18313
+ kind?: "shared" | "personal";
18314
+ config?: {
18315
+ [key: string]: unknown;
18316
+ };
18317
+ icon?: string;
18318
+ tags?: string[];
18319
+ setup?: string;
18320
+ commentary?: string;
18290
18321
  }[];
18291
18322
  };
18292
18323
  "application/jsonl": {
@@ -18316,6 +18347,18 @@ export interface operations {
18316
18347
  * @enum {string}
18317
18348
  */
18318
18349
  type: "plain" | "basic" | "bearer" | "oauth" | "template" | "reference";
18350
+ /**
18351
+ * @description The kind of the secret
18352
+ * @enum {string}
18353
+ */
18354
+ kind?: "shared" | "personal";
18355
+ config?: {
18356
+ [key: string]: unknown;
18357
+ };
18358
+ icon?: string;
18359
+ tags?: string[];
18360
+ setup?: string;
18361
+ commentary?: string;
18319
18362
  };
18320
18363
  };
18321
18364
  };
@@ -18325,9 +18368,7 @@ export interface operations {
18325
18368
  headers: {
18326
18369
  [name: string]: unknown;
18327
18370
  };
18328
- content: {
18329
- "application/json": unknown;
18330
- };
18371
+ content?: never;
18331
18372
  };
18332
18373
  };
18333
18374
  };
@@ -18388,9 +18429,7 @@ export interface operations {
18388
18429
  headers: {
18389
18430
  [name: string]: unknown;
18390
18431
  };
18391
- content: {
18392
- "application/json": unknown;
18393
- };
18432
+ content?: never;
18394
18433
  };
18395
18434
  };
18396
18435
  };
@@ -18481,9 +18520,7 @@ export interface operations {
18481
18520
  headers: {
18482
18521
  [name: string]: unknown;
18483
18522
  };
18484
- content: {
18485
- "application/json": unknown;
18486
- };
18523
+ content?: never;
18487
18524
  };
18488
18525
  };
18489
18526
  };
@@ -18551,9 +18588,7 @@ export interface operations {
18551
18588
  headers: {
18552
18589
  [name: string]: unknown;
18553
18590
  };
18554
- content: {
18555
- "application/json": unknown;
18556
- };
18591
+ content?: never;
18557
18592
  };
18558
18593
  };
18559
18594
  };
@@ -18589,9 +18624,7 @@ export interface operations {
18589
18624
  headers: {
18590
18625
  [name: string]: unknown;
18591
18626
  };
18592
- content: {
18593
- "application/json": unknown;
18594
- };
18627
+ content?: never;
18595
18628
  };
18596
18629
  };
18597
18630
  };
@@ -18640,9 +18673,7 @@ export interface operations {
18640
18673
  headers: {
18641
18674
  [name: string]: unknown;
18642
18675
  };
18643
- content: {
18644
- "application/json": unknown;
18645
- };
18676
+ content?: never;
18646
18677
  };
18647
18678
  };
18648
18679
  };
@@ -18698,9 +18729,7 @@ export interface operations {
18698
18729
  headers: {
18699
18730
  [name: string]: unknown;
18700
18731
  };
18701
- content: {
18702
- "application/json": unknown;
18703
- };
18732
+ content?: never;
18704
18733
  };
18705
18734
  };
18706
18735
  };
@@ -18754,9 +18783,7 @@ export interface operations {
18754
18783
  headers: {
18755
18784
  [name: string]: unknown;
18756
18785
  };
18757
- content: {
18758
- "application/json": unknown;
18759
- };
18786
+ content?: never;
18760
18787
  };
18761
18788
  };
18762
18789
  };
@@ -18853,9 +18880,7 @@ export interface operations {
18853
18880
  headers: {
18854
18881
  [name: string]: unknown;
18855
18882
  };
18856
- content: {
18857
- "application/json": unknown;
18858
- };
18883
+ content?: never;
18859
18884
  };
18860
18885
  };
18861
18886
  };
@@ -18891,9 +18916,7 @@ export interface operations {
18891
18916
  headers: {
18892
18917
  [name: string]: unknown;
18893
18918
  };
18894
- content: {
18895
- "application/json": unknown;
18896
- };
18919
+ content?: never;
18897
18920
  };
18898
18921
  };
18899
18922
  };
@@ -18945,9 +18968,7 @@ export interface operations {
18945
18968
  headers: {
18946
18969
  [name: string]: unknown;
18947
18970
  };
18948
- content: {
18949
- "application/json": unknown;
18950
- };
18971
+ content?: never;
18951
18972
  };
18952
18973
  };
18953
18974
  };
@@ -19000,9 +19021,7 @@ export interface operations {
19000
19021
  headers: {
19001
19022
  [name: string]: unknown;
19002
19023
  };
19003
- content: {
19004
- "application/json": unknown;
19005
- };
19024
+ content?: never;
19006
19025
  };
19007
19026
  };
19008
19027
  };
@@ -19053,9 +19072,7 @@ export interface operations {
19053
19072
  headers: {
19054
19073
  [name: string]: unknown;
19055
19074
  };
19056
- content: {
19057
- "application/json": unknown;
19058
- };
19075
+ content?: never;
19059
19076
  };
19060
19077
  };
19061
19078
  };
@@ -19146,9 +19163,7 @@ export interface operations {
19146
19163
  headers: {
19147
19164
  [name: string]: unknown;
19148
19165
  };
19149
- content: {
19150
- "application/json": unknown;
19151
- };
19166
+ content?: never;
19152
19167
  };
19153
19168
  };
19154
19169
  };
@@ -19186,9 +19201,7 @@ export interface operations {
19186
19201
  headers: {
19187
19202
  [name: string]: unknown;
19188
19203
  };
19189
- content: {
19190
- "application/json": unknown;
19191
- };
19204
+ content?: never;
19192
19205
  };
19193
19206
  };
19194
19207
  };
@@ -19224,9 +19237,7 @@ export interface operations {
19224
19237
  headers: {
19225
19238
  [name: string]: unknown;
19226
19239
  };
19227
- content: {
19228
- "application/json": unknown;
19229
- };
19240
+ content?: never;
19230
19241
  };
19231
19242
  };
19232
19243
  };
@@ -19291,9 +19302,7 @@ export interface operations {
19291
19302
  headers: {
19292
19303
  [name: string]: unknown;
19293
19304
  };
19294
- content: {
19295
- "application/json": unknown;
19296
- };
19305
+ content?: never;
19297
19306
  };
19298
19307
  };
19299
19308
  };
@@ -19329,9 +19338,7 @@ export interface operations {
19329
19338
  headers: {
19330
19339
  [name: string]: unknown;
19331
19340
  };
19332
- content: {
19333
- "application/json": unknown;
19334
- };
19341
+ content?: never;
19335
19342
  };
19336
19343
  };
19337
19344
  };
@@ -19399,9 +19406,7 @@ export interface operations {
19399
19406
  headers: {
19400
19407
  [name: string]: unknown;
19401
19408
  };
19402
- content: {
19403
- "application/json": unknown;
19404
- };
19409
+ content?: never;
19405
19410
  };
19406
19411
  };
19407
19412
  };
@@ -19451,9 +19456,7 @@ export interface operations {
19451
19456
  headers: {
19452
19457
  [name: string]: unknown;
19453
19458
  };
19454
- content: {
19455
- "application/json": unknown;
19456
- };
19459
+ content?: never;
19457
19460
  };
19458
19461
  };
19459
19462
  };
@@ -19519,9 +19522,7 @@ export interface operations {
19519
19522
  headers: {
19520
19523
  [name: string]: unknown;
19521
19524
  };
19522
- content: {
19523
- "application/json": unknown;
19524
- };
19525
+ content?: never;
19525
19526
  };
19526
19527
  };
19527
19528
  };
@@ -19638,9 +19639,7 @@ export interface operations {
19638
19639
  headers: {
19639
19640
  [name: string]: unknown;
19640
19641
  };
19641
- content: {
19642
- "application/json": unknown;
19643
- };
19642
+ content?: never;
19644
19643
  };
19645
19644
  };
19646
19645
  };
@@ -19677,9 +19676,7 @@ export interface operations {
19677
19676
  headers: {
19678
19677
  [name: string]: unknown;
19679
19678
  };
19680
- content: {
19681
- "application/json": unknown;
19682
- };
19679
+ content?: never;
19683
19680
  };
19684
19681
  };
19685
19682
  };
@@ -19734,9 +19731,7 @@ export interface operations {
19734
19731
  headers: {
19735
19732
  [name: string]: unknown;
19736
19733
  };
19737
- content: {
19738
- "application/json": unknown;
19739
- };
19734
+ content?: never;
19740
19735
  };
19741
19736
  };
19742
19737
  };
@@ -19792,9 +19787,7 @@ export interface operations {
19792
19787
  headers: {
19793
19788
  [name: string]: unknown;
19794
19789
  };
19795
- content: {
19796
- "application/json": unknown;
19797
- };
19790
+ content?: never;
19798
19791
  };
19799
19792
  };
19800
19793
  };
@@ -19849,9 +19842,7 @@ export interface operations {
19849
19842
  headers: {
19850
19843
  [name: string]: unknown;
19851
19844
  };
19852
- content: {
19853
- "application/json": unknown;
19854
- };
19845
+ content?: never;
19855
19846
  };
19856
19847
  };
19857
19848
  };
@@ -19944,9 +19935,7 @@ export interface operations {
19944
19935
  headers: {
19945
19936
  [name: string]: unknown;
19946
19937
  };
19947
- content: {
19948
- "application/json": unknown;
19949
- };
19938
+ content?: never;
19950
19939
  };
19951
19940
  };
19952
19941
  };
@@ -20038,9 +20027,7 @@ export interface operations {
20038
20027
  headers: {
20039
20028
  [name: string]: unknown;
20040
20029
  };
20041
- content: {
20042
- "application/json": unknown;
20043
- };
20030
+ content?: never;
20044
20031
  };
20045
20032
  };
20046
20033
  };
@@ -20076,9 +20063,7 @@ export interface operations {
20076
20063
  headers: {
20077
20064
  [name: string]: unknown;
20078
20065
  };
20079
- content: {
20080
- "application/json": unknown;
20081
- };
20066
+ content?: never;
20082
20067
  };
20083
20068
  };
20084
20069
  };
@@ -20129,9 +20114,7 @@ export interface operations {
20129
20114
  headers: {
20130
20115
  [name: string]: unknown;
20131
20116
  };
20132
- content: {
20133
- "application/json": unknown;
20134
- };
20117
+ content?: never;
20135
20118
  };
20136
20119
  };
20137
20120
  };
@@ -20183,9 +20166,7 @@ export interface operations {
20183
20166
  headers: {
20184
20167
  [name: string]: unknown;
20185
20168
  };
20186
- content: {
20187
- "application/json": unknown;
20188
- };
20169
+ content?: never;
20189
20170
  };
20190
20171
  };
20191
20172
  };
@@ -20235,9 +20216,7 @@ export interface operations {
20235
20216
  headers: {
20236
20217
  [name: string]: unknown;
20237
20218
  };
20238
- content: {
20239
- "application/json": unknown;
20240
- };
20219
+ content?: never;
20241
20220
  };
20242
20221
  };
20243
20222
  };
@@ -20326,9 +20305,7 @@ export interface operations {
20326
20305
  headers: {
20327
20306
  [name: string]: unknown;
20328
20307
  };
20329
- content: {
20330
- "application/json": unknown;
20331
- };
20308
+ content?: never;
20332
20309
  };
20333
20310
  };
20334
20311
  };
@@ -20374,9 +20351,7 @@ export interface operations {
20374
20351
  headers: {
20375
20352
  [name: string]: unknown;
20376
20353
  };
20377
- content: {
20378
- "application/json": unknown;
20379
- };
20354
+ content?: never;
20380
20355
  };
20381
20356
  };
20382
20357
  };
@@ -20423,9 +20398,7 @@ export interface operations {
20423
20398
  headers: {
20424
20399
  [name: string]: unknown;
20425
20400
  };
20426
- content: {
20427
- "application/json": unknown;
20428
- };
20401
+ content?: never;
20429
20402
  };
20430
20403
  };
20431
20404
  };
@@ -20470,9 +20443,7 @@ export interface operations {
20470
20443
  headers: {
20471
20444
  [name: string]: unknown;
20472
20445
  };
20473
- content: {
20474
- "application/json": unknown;
20475
- };
20446
+ content?: never;
20476
20447
  };
20477
20448
  };
20478
20449
  };
@@ -20552,9 +20523,7 @@ export interface operations {
20552
20523
  headers: {
20553
20524
  [name: string]: unknown;
20554
20525
  };
20555
- content: {
20556
- "application/json": unknown;
20557
- };
20526
+ content?: never;
20558
20527
  };
20559
20528
  };
20560
20529
  };
@@ -20633,9 +20602,7 @@ export interface operations {
20633
20602
  headers: {
20634
20603
  [name: string]: unknown;
20635
20604
  };
20636
- content: {
20637
- "application/json": unknown;
20638
- };
20605
+ content?: never;
20639
20606
  };
20640
20607
  };
20641
20608
  };
@@ -20671,9 +20638,7 @@ export interface operations {
20671
20638
  headers: {
20672
20639
  [name: string]: unknown;
20673
20640
  };
20674
- content: {
20675
- "application/json": unknown;
20676
- };
20641
+ content?: never;
20677
20642
  };
20678
20643
  };
20679
20644
  };
@@ -20733,9 +20698,7 @@ export interface operations {
20733
20698
  headers: {
20734
20699
  [name: string]: unknown;
20735
20700
  };
20736
- content: {
20737
- "application/json": unknown;
20738
- };
20701
+ content?: never;
20739
20702
  };
20740
20703
  };
20741
20704
  };
@@ -20771,9 +20734,7 @@ export interface operations {
20771
20734
  headers: {
20772
20735
  [name: string]: unknown;
20773
20736
  };
20774
- content: {
20775
- "application/json": unknown;
20776
- };
20737
+ content?: never;
20777
20738
  };
20778
20739
  };
20779
20740
  };
@@ -20826,9 +20787,7 @@ export interface operations {
20826
20787
  headers: {
20827
20788
  [name: string]: unknown;
20828
20789
  };
20829
- content: {
20830
- "application/json": unknown;
20831
- };
20790
+ content?: never;
20832
20791
  };
20833
20792
  };
20834
20793
  };
@@ -20879,9 +20838,7 @@ export interface operations {
20879
20838
  headers: {
20880
20839
  [name: string]: unknown;
20881
20840
  };
20882
- content: {
20883
- "application/json": unknown;
20884
- };
20841
+ content?: never;
20885
20842
  };
20886
20843
  };
20887
20844
  };
@@ -20969,9 +20926,7 @@ export interface operations {
20969
20926
  headers: {
20970
20927
  [name: string]: unknown;
20971
20928
  };
20972
- content: {
20973
- "application/json": unknown;
20974
- };
20929
+ content?: never;
20975
20930
  };
20976
20931
  };
20977
20932
  };
@@ -21078,9 +21033,7 @@ export interface operations {
21078
21033
  headers: {
21079
21034
  [name: string]: unknown;
21080
21035
  };
21081
- content: {
21082
- "application/json": unknown;
21083
- };
21036
+ content?: never;
21084
21037
  };
21085
21038
  };
21086
21039
  };
@@ -21090,7 +21043,9 @@ export interface operations {
21090
21043
  cursor?: string;
21091
21044
  order?: "asc" | "desc";
21092
21045
  take?: number;
21093
- meta?: Record<string, never>;
21046
+ meta?: {
21047
+ [key: string]: string;
21048
+ };
21094
21049
  };
21095
21050
  header?: never;
21096
21051
  path?: never;
@@ -21153,9 +21108,7 @@ export interface operations {
21153
21108
  headers: {
21154
21109
  [name: string]: unknown;
21155
21110
  };
21156
- content: {
21157
- "application/json": unknown;
21158
- };
21111
+ content?: never;
21159
21112
  };
21160
21113
  };
21161
21114
  };
@@ -21204,9 +21157,7 @@ export interface operations {
21204
21157
  headers: {
21205
21158
  [name: string]: unknown;
21206
21159
  };
21207
- content: {
21208
- "application/json": unknown;
21209
- };
21160
+ content?: never;
21210
21161
  };
21211
21162
  };
21212
21163
  };
@@ -21255,9 +21206,7 @@ export interface operations {
21255
21206
  headers: {
21256
21207
  [name: string]: unknown;
21257
21208
  };
21258
- content: {
21259
- "application/json": unknown;
21260
- };
21209
+ content?: never;
21261
21210
  };
21262
21211
  };
21263
21212
  };