@turbopuffer/turbopuffer-mcp 2.0.0 → 2.2.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.
- package/auth.d.mts.map +1 -1
- package/auth.d.ts.map +1 -1
- package/code-tool-types.d.mts.map +1 -1
- package/code-tool-types.d.ts.map +1 -1
- package/code-tool-worker.mjs.map +1 -1
- package/code-tool.d.mts.map +1 -1
- package/code-tool.d.ts.map +1 -1
- package/code-tool.mjs.map +1 -1
- package/docs-search-tool.d.mts +2 -2
- package/docs-search-tool.d.mts.map +1 -1
- package/docs-search-tool.d.ts +2 -2
- package/docs-search-tool.d.ts.map +1 -1
- package/docs-search-tool.mjs.map +1 -1
- package/http.d.mts.map +1 -1
- package/http.d.ts.map +1 -1
- package/http.mjs.map +1 -1
- package/index.mjs.map +1 -1
- package/instructions.mjs.map +1 -1
- package/local-docs-search.d.mts.map +1 -1
- package/local-docs-search.d.ts.map +1 -1
- package/local-docs-search.js +60 -0
- package/local-docs-search.js.map +1 -1
- package/local-docs-search.mjs +60 -0
- package/local-docs-search.mjs.map +1 -1
- package/logger.d.mts.map +1 -1
- package/logger.d.ts.map +1 -1
- package/logger.mjs.map +1 -1
- package/methods.d.mts.map +1 -1
- package/methods.d.ts.map +1 -1
- package/options.mjs.map +1 -1
- package/package.json +2 -2
- package/server.d.mts.map +1 -1
- package/server.d.ts.map +1 -1
- package/server.js +1 -1
- package/server.mjs +1 -1
- package/server.mjs.map +1 -1
- package/src/local-docs-search.ts +75 -0
- package/src/server.ts +1 -1
- package/stdio.d.mts.map +1 -1
- package/stdio.d.ts.map +1 -1
- package/stdio.mjs.map +1 -1
- package/types.d.mts.map +1 -1
- package/types.d.ts.map +1 -1
package/src/local-docs-search.ts
CHANGED
|
@@ -88,6 +88,11 @@ const EMBEDDED_METHODS: MethodEntry[] = [
|
|
|
88
88
|
example:
|
|
89
89
|
'require "turbopuffer"\n\nturbopuffer = Turbopuffer::Client.new(api_key: "tpuf_A1...")\n\npage = turbopuffer.namespaces\n\nputs(page)',
|
|
90
90
|
},
|
|
91
|
+
csharp: {
|
|
92
|
+
method: 'Namespaces',
|
|
93
|
+
example:
|
|
94
|
+
'ClientNamespacesParams parameters = new();\n\nvar page = await client.Namespaces(parameters);\nawait foreach (var item in page.Paginate())\n{\n Console.WriteLine(item);\n}',
|
|
95
|
+
},
|
|
91
96
|
http: {
|
|
92
97
|
example:
|
|
93
98
|
'curl https://$TURBOPUFFER_REGION.turbopuffer.com/v1/namespaces \\\n -H "Authorization: Bearer $TURBOPUFFER_API_KEY"',
|
|
@@ -154,6 +159,11 @@ const EMBEDDED_METHODS: MethodEntry[] = [
|
|
|
154
159
|
example:
|
|
155
160
|
'require "turbopuffer"\n\nturbopuffer = Turbopuffer::Client.new(api_key: "tpuf_A1...")\n\nresponse = turbopuffer.namespaces.write(namespace: "namespace")\n\nputs(response)',
|
|
156
161
|
},
|
|
162
|
+
csharp: {
|
|
163
|
+
method: 'Namespaces.Write',
|
|
164
|
+
example:
|
|
165
|
+
'NamespaceWriteParams parameters = new() { Namespace = "namespace" };\n\nvar response = await client.Namespaces.Write(parameters);\n\nConsole.WriteLine(response);',
|
|
166
|
+
},
|
|
157
167
|
http: {
|
|
158
168
|
example:
|
|
159
169
|
'curl https://$TURBOPUFFER_REGION.turbopuffer.com/v2/namespaces/$NAMESPACE \\\n -X POST \\\n -H "Authorization: Bearer $TURBOPUFFER_API_KEY" \\\n --retry 6',
|
|
@@ -212,6 +222,11 @@ const EMBEDDED_METHODS: MethodEntry[] = [
|
|
|
212
222
|
example:
|
|
213
223
|
'require "turbopuffer"\n\nturbopuffer = Turbopuffer::Client.new(api_key: "tpuf_A1...")\n\nresponse = turbopuffer.namespaces.query(namespace: "namespace")\n\nputs(response)',
|
|
214
224
|
},
|
|
225
|
+
csharp: {
|
|
226
|
+
method: 'Namespaces.Query',
|
|
227
|
+
example:
|
|
228
|
+
'NamespaceQueryParams parameters = new() { Namespace = "namespace" };\n\nvar response = await client.Namespaces.Query(parameters);\n\nConsole.WriteLine(response);',
|
|
229
|
+
},
|
|
215
230
|
http: {
|
|
216
231
|
example:
|
|
217
232
|
'curl https://$TURBOPUFFER_REGION.turbopuffer.com/v2/namespaces/$NAMESPACE/query \\\n -X POST \\\n -H "Authorization: Bearer $TURBOPUFFER_API_KEY"',
|
|
@@ -262,6 +277,11 @@ const EMBEDDED_METHODS: MethodEntry[] = [
|
|
|
262
277
|
example:
|
|
263
278
|
'require "turbopuffer"\n\nturbopuffer = Turbopuffer::Client.new(api_key: "tpuf_A1...")\n\nresponse = turbopuffer.namespaces.multi_query(namespace: "namespace", queries: [{}])\n\nputs(response)',
|
|
264
279
|
},
|
|
280
|
+
csharp: {
|
|
281
|
+
method: 'Namespaces.MultiQuery',
|
|
282
|
+
example:
|
|
283
|
+
'NamespaceMultiQueryParams parameters = new()\n{\n Namespace = "namespace",\n Queries =\n [\n new()\n {\n AggregateBy = new Dictionary<string, JsonElement>()\n {\n { "foo", JsonSerializer.SerializeToElement("bar") }\n },\n DistanceMetric = DistanceMetric.CosineDistance,\n ExcludeAttributes =\n [\n "string"\n ],\n Filters = JsonSerializer.Deserialize<JsonElement>("{}"),\n GroupBy =\n [\n JsonSerializer.Deserialize<JsonElement>("{}")\n ],\n IncludeAttributes = true,\n Limit = 0,\n RankBy = JsonSerializer.Deserialize<JsonElement>("{}"),\n TopK = 0,\n },\n ],\n};\n\nvar response = await client.Namespaces.MultiQuery(parameters);\n\nConsole.WriteLine(response);',
|
|
284
|
+
},
|
|
265
285
|
http: {
|
|
266
286
|
example:
|
|
267
287
|
'curl https://$TURBOPUFFER_REGION.turbopuffer.com/v2/namespaces/$NAMESPACE/query \\\n -H \'Content-Type: application/json\' \\\n -H "Authorization: Bearer $TURBOPUFFER_API_KEY" \\\n -d \'{\n "queries": [\n {}\n ]\n }\'',
|
|
@@ -319,6 +339,11 @@ const EMBEDDED_METHODS: MethodEntry[] = [
|
|
|
319
339
|
example:
|
|
320
340
|
'require "turbopuffer"\n\nturbopuffer = Turbopuffer::Client.new(api_key: "tpuf_A1...")\n\nresponse = turbopuffer.namespaces.explain_query(namespace: "namespace")\n\nputs(response)',
|
|
321
341
|
},
|
|
342
|
+
csharp: {
|
|
343
|
+
method: 'Namespaces.ExplainQuery',
|
|
344
|
+
example:
|
|
345
|
+
'NamespaceExplainQueryParams parameters = new() { Namespace = "namespace" };\n\nvar response = await client.Namespaces.ExplainQuery(parameters);\n\nConsole.WriteLine(response);',
|
|
346
|
+
},
|
|
322
347
|
http: {
|
|
323
348
|
example:
|
|
324
349
|
'curl https://$TURBOPUFFER_REGION.turbopuffer.com/v2/namespaces/$NAMESPACE/explain_query \\\n -X POST \\\n -H "Authorization: Bearer $TURBOPUFFER_API_KEY"',
|
|
@@ -363,6 +388,11 @@ const EMBEDDED_METHODS: MethodEntry[] = [
|
|
|
363
388
|
example:
|
|
364
389
|
'require "turbopuffer"\n\nturbopuffer = Turbopuffer::Client.new(api_key: "tpuf_A1...")\n\nresponse = turbopuffer.namespaces.schema(namespace: "namespace")\n\nputs(response)',
|
|
365
390
|
},
|
|
391
|
+
csharp: {
|
|
392
|
+
method: 'Namespaces.Schema',
|
|
393
|
+
example:
|
|
394
|
+
'NamespaceSchemaParams parameters = new() { Namespace = "namespace" };\n\nvar response = await client.Namespaces.Schema(parameters);\n\nConsole.WriteLine(response);',
|
|
395
|
+
},
|
|
366
396
|
http: {
|
|
367
397
|
example:
|
|
368
398
|
'curl https://$TURBOPUFFER_REGION.turbopuffer.com/v1/namespaces/$NAMESPACE/schema \\\n -H "Authorization: Bearer $TURBOPUFFER_API_KEY"',
|
|
@@ -407,6 +437,11 @@ const EMBEDDED_METHODS: MethodEntry[] = [
|
|
|
407
437
|
example:
|
|
408
438
|
'require "turbopuffer"\n\nturbopuffer = Turbopuffer::Client.new(api_key: "tpuf_A1...")\n\nresponse = turbopuffer.namespaces.update_schema(namespace: "namespace")\n\nputs(response)',
|
|
409
439
|
},
|
|
440
|
+
csharp: {
|
|
441
|
+
method: 'Namespaces.UpdateSchema',
|
|
442
|
+
example:
|
|
443
|
+
'NamespaceUpdateSchemaParams parameters = new() { Namespace = "namespace" };\n\nvar response = await client.Namespaces.UpdateSchema(parameters);\n\nConsole.WriteLine(response);',
|
|
444
|
+
},
|
|
410
445
|
http: {
|
|
411
446
|
example:
|
|
412
447
|
'curl https://$TURBOPUFFER_REGION.turbopuffer.com/v1/namespaces/$NAMESPACE/schema \\\n -X POST \\\n -H "Authorization: Bearer $TURBOPUFFER_API_KEY"',
|
|
@@ -452,6 +487,11 @@ const EMBEDDED_METHODS: MethodEntry[] = [
|
|
|
452
487
|
example:
|
|
453
488
|
'require "turbopuffer"\n\nturbopuffer = Turbopuffer::Client.new(api_key: "tpuf_A1...")\n\nnamespace_metadata = turbopuffer.namespaces.metadata(namespace: "namespace")\n\nputs(namespace_metadata)',
|
|
454
489
|
},
|
|
490
|
+
csharp: {
|
|
491
|
+
method: 'Namespaces.Metadata',
|
|
492
|
+
example:
|
|
493
|
+
'NamespaceMetadataParams parameters = new() { Namespace = "namespace" };\n\nvar namespaceMetadata = await client.Namespaces.Metadata(parameters);\n\nConsole.WriteLine(namespaceMetadata);',
|
|
494
|
+
},
|
|
455
495
|
http: {
|
|
456
496
|
example:
|
|
457
497
|
'curl https://$TURBOPUFFER_REGION.turbopuffer.com/v2/namespaces/$NAMESPACE/metadata \\\n -H "Authorization: Bearer $TURBOPUFFER_API_KEY"',
|
|
@@ -497,6 +537,11 @@ const EMBEDDED_METHODS: MethodEntry[] = [
|
|
|
497
537
|
example:
|
|
498
538
|
'require "turbopuffer"\n\nturbopuffer = Turbopuffer::Client.new(api_key: "tpuf_A1...")\n\nnamespace_metadata = turbopuffer.namespaces.update_metadata(namespace: "namespace")\n\nputs(namespace_metadata)',
|
|
499
539
|
},
|
|
540
|
+
csharp: {
|
|
541
|
+
method: 'Namespaces.UpdateMetadata',
|
|
542
|
+
example:
|
|
543
|
+
'NamespaceUpdateMetadataParams parameters = new() { Namespace = "namespace" };\n\nvar namespaceMetadata = await client.Namespaces.UpdateMetadata(parameters);\n\nConsole.WriteLine(namespaceMetadata);',
|
|
544
|
+
},
|
|
500
545
|
http: {
|
|
501
546
|
example:
|
|
502
547
|
'curl https://$TURBOPUFFER_REGION.turbopuffer.com/v1/namespaces/$NAMESPACE/metadata \\\n -X PATCH \\\n -H "Authorization: Bearer $TURBOPUFFER_API_KEY"',
|
|
@@ -541,6 +586,11 @@ const EMBEDDED_METHODS: MethodEntry[] = [
|
|
|
541
586
|
example:
|
|
542
587
|
'require "turbopuffer"\n\nturbopuffer = Turbopuffer::Client.new(api_key: "tpuf_A1...")\n\nresponse = turbopuffer.namespaces.hint_cache_warm(namespace: "namespace")\n\nputs(response)',
|
|
543
588
|
},
|
|
589
|
+
csharp: {
|
|
590
|
+
method: 'Namespaces.HintCacheWarm',
|
|
591
|
+
example:
|
|
592
|
+
'NamespaceHintCacheWarmParams parameters = new() { Namespace = "namespace" };\n\nvar response = await client.Namespaces.HintCacheWarm(parameters);\n\nConsole.WriteLine(response);',
|
|
593
|
+
},
|
|
544
594
|
http: {
|
|
545
595
|
example:
|
|
546
596
|
'curl https://$TURBOPUFFER_REGION.turbopuffer.com/v1/namespaces/$NAMESPACE/hint_cache_warm \\\n -H "Authorization: Bearer $TURBOPUFFER_API_KEY"',
|
|
@@ -585,6 +635,11 @@ const EMBEDDED_METHODS: MethodEntry[] = [
|
|
|
585
635
|
example:
|
|
586
636
|
'require "turbopuffer"\n\nturbopuffer = Turbopuffer::Client.new(api_key: "tpuf_A1...")\n\nresponse = turbopuffer.namespaces.delete_all(namespace: "namespace")\n\nputs(response)',
|
|
587
637
|
},
|
|
638
|
+
csharp: {
|
|
639
|
+
method: 'Namespaces.DeleteAll',
|
|
640
|
+
example:
|
|
641
|
+
'NamespaceDeleteAllParams parameters = new() { Namespace = "namespace" };\n\nvar response = await client.Namespaces.DeleteAll(parameters);\n\nConsole.WriteLine(response);',
|
|
642
|
+
},
|
|
588
643
|
http: {
|
|
589
644
|
example:
|
|
590
645
|
'curl https://$TURBOPUFFER_REGION.turbopuffer.com/v2/namespaces/$NAMESPACE \\\n -X DELETE \\\n -H "Authorization: Bearer $TURBOPUFFER_API_KEY"',
|
|
@@ -637,6 +692,11 @@ const EMBEDDED_METHODS: MethodEntry[] = [
|
|
|
637
692
|
example:
|
|
638
693
|
'require "turbopuffer"\n\nturbopuffer = Turbopuffer::Client.new(api_key: "tpuf_A1...")\n\nresponse = turbopuffer.namespaces.recall(namespace: "namespace")\n\nputs(response)',
|
|
639
694
|
},
|
|
695
|
+
csharp: {
|
|
696
|
+
method: 'Namespaces.Recall',
|
|
697
|
+
example:
|
|
698
|
+
'NamespaceRecallParams parameters = new() { Namespace = "namespace" };\n\nvar response = await client.Namespaces.Recall(parameters);\n\nConsole.WriteLine(response);',
|
|
699
|
+
},
|
|
640
700
|
http: {
|
|
641
701
|
example:
|
|
642
702
|
'curl https://$TURBOPUFFER_REGION.turbopuffer.com/v1/namespaces/$NAMESPACE/_debug/recall \\\n -X POST \\\n -H "Authorization: Bearer $TURBOPUFFER_API_KEY"',
|
|
@@ -682,6 +742,11 @@ const EMBEDDED_METHODS: MethodEntry[] = [
|
|
|
682
742
|
example:
|
|
683
743
|
'require "turbopuffer"\n\nturbopuffer = Turbopuffer::Client.new(api_key: "tpuf_A1...")\n\nresponse = turbopuffer.namespaces.branch_from(namespace: "namespace", source_namespace: "source_namespace")\n\nputs(response)',
|
|
684
744
|
},
|
|
745
|
+
csharp: {
|
|
746
|
+
method: 'Namespaces.BranchFrom',
|
|
747
|
+
example:
|
|
748
|
+
'NamespaceBranchFromParams parameters = new()\n{\n Namespace = "namespace",\n SourceNamespace = "source_namespace",\n};\n\nvar response = await client.Namespaces.BranchFrom(parameters);\n\nConsole.WriteLine(response);',
|
|
749
|
+
},
|
|
685
750
|
http: {
|
|
686
751
|
example:
|
|
687
752
|
'curl https://$TURBOPUFFER_REGION.turbopuffer.com/v2/namespaces/$NAMESPACE \\\n -H \'Content-Type: application/json\' \\\n -H "Authorization: Bearer $TURBOPUFFER_API_KEY" \\\n -d \'{\n "source_namespace": "source_namespace"\n }\'',
|
|
@@ -732,6 +797,11 @@ const EMBEDDED_METHODS: MethodEntry[] = [
|
|
|
732
797
|
example:
|
|
733
798
|
'require "turbopuffer"\n\nturbopuffer = Turbopuffer::Client.new(api_key: "tpuf_A1...")\n\nresponse = turbopuffer.namespaces.copy_from(namespace: "namespace", source_namespace: "source_namespace")\n\nputs(response)',
|
|
734
799
|
},
|
|
800
|
+
csharp: {
|
|
801
|
+
method: 'Namespaces.CopyFrom',
|
|
802
|
+
example:
|
|
803
|
+
'NamespaceCopyFromParams parameters = new()\n{\n Namespace = "namespace",\n SourceNamespace = "source_namespace",\n};\n\nvar response = await client.Namespaces.CopyFrom(parameters);\n\nConsole.WriteLine(response);',
|
|
804
|
+
},
|
|
735
805
|
http: {
|
|
736
806
|
example:
|
|
737
807
|
'curl https://$TURBOPUFFER_REGION.turbopuffer.com/v2/namespaces/$NAMESPACE \\\n -H \'Content-Type: application/json\' \\\n -H "Authorization: Bearer $TURBOPUFFER_API_KEY" \\\n -d \'{\n "source_namespace": "source_namespace"\n }\'',
|
|
@@ -741,6 +811,11 @@ const EMBEDDED_METHODS: MethodEntry[] = [
|
|
|
741
811
|
];
|
|
742
812
|
|
|
743
813
|
const EMBEDDED_READMES: { language: string; content: string }[] = [
|
|
814
|
+
{
|
|
815
|
+
language: 'csharp',
|
|
816
|
+
content:
|
|
817
|
+
'# Turbopuffer C# API Library\n\nThe Turbopuffer C# SDK provides convenient access to the [Turbopuffer REST API](https://turbopuffer.com/docs/auth) from applications written in C#.\n\n## Installation\n\nInstall the package from [NuGet](https://www.nuget.org/packages/Turbopuffer):\n\n```bash\ndotnet add package Turbopuffer\n```\n\n## Requirements\n\nThis library requires .NET Standard 2.0 or later.\n\n## Usage\n\nSee the [`examples`](examples) directory for complete and runnable examples.\n\n```csharp\nTurbopufferClient client = new();\n\nNamespaceWriteParams parameters = new()\n{\n Namespace = "products",\n DistanceMetric = DistanceMetric.CosineDistance,\n UpsertRows =\n [\n new()\n {\n ID = "2108ed60-6851-49a0-9016-8325434f3845",\n Vector = new(\n\n [\n 0.1, 0.2\n ]\n ),\n },\n ],\n};\n\nvar response = await client.Namespaces1.Write(parameters);\n\nConsole.WriteLine(response);\n```',
|
|
818
|
+
},
|
|
744
819
|
{
|
|
745
820
|
language: 'go',
|
|
746
821
|
content:
|
package/src/server.ts
CHANGED
package/stdio.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stdio.d.mts","sourceRoot":"","sources":["src/stdio.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"stdio.d.mts","sourceRoot":"","sources":["src/stdio.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,sBAAkB;AAIvC,eAAO,MAAM,iBAAiB,GAAU,YAAY,UAAU,kBAW7D,CAAC"}
|
package/stdio.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stdio.d.ts","sourceRoot":"","sources":["src/stdio.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"stdio.d.ts","sourceRoot":"","sources":["src/stdio.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,qBAAkB;AAIvC,eAAO,MAAM,iBAAiB,GAAU,YAAY,UAAU,kBAW7D,CAAC"}
|
package/stdio.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stdio.mjs","sourceRoot":"","sources":["src/stdio.ts"],"names":[],"mappings":"OAAO,EAAE,oBAAoB,EAAE,MAAM,2CAA2C;
|
|
1
|
+
{"version":3,"file":"stdio.mjs","sourceRoot":"","sources":["src/stdio.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,2CAA2C,CAAC;AAEjF,OAAO,EAAE,aAAa,EAAE,YAAY,EAAE,qBAAiB;AACvD,OAAO,EAAE,SAAS,EAAE,qBAAiB;AAErC,MAAM,CAAC,MAAM,iBAAiB,GAAG,KAAK,EAAE,UAAsB,EAAE,EAAE;IAChE,MAAM,MAAM,GAAG,MAAM,YAAY,CAAC;QAChC,eAAe,EAAE,UAAU,CAAC,eAAe;QAC3C,sBAAsB,EAAE,UAAU,CAAC,sBAAsB;KAC1D,CAAC,CAAC;IAEH,MAAM,aAAa,CAAC,EAAE,MAAM,EAAE,UAAU,EAAE,eAAe,EAAE,UAAU,CAAC,eAAe,EAAE,CAAC,CAAC;IAEzF,MAAM,SAAS,GAAG,IAAI,oBAAoB,EAAE,CAAC;IAC7C,MAAM,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;IAChC,SAAS,EAAE,CAAC,IAAI,CAAC,6BAA6B,CAAC,CAAC;AAClD,CAAC,CAAC"}
|
package/types.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.mts","sourceRoot":"","sources":["src/types.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"types.d.mts","sourceRoot":"","sources":["src/types.ts"],"names":[],"mappings":"AAEA,OAAO,WAAW,MAAM,0BAA0B,CAAC;AACnD,OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC,CAAC;AAE1D,KAAK,gBAAgB,GAAG;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,KAAK,iBAAiB,GAAG;IACvB,IAAI,EAAE,OAAO,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,KAAK,iBAAiB,GAAG;IACvB,IAAI,EAAE,OAAO,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,KAAK,oBAAoB,GAAG;IAC1B,IAAI,EAAE,UAAU,CAAC;IACjB,QAAQ,EACJ;QACE,GAAG,EAAE,MAAM,CAAC;QACZ,QAAQ,EAAE,MAAM,CAAC;QACjB,IAAI,EAAE,MAAM,CAAC;KACd,GACD;QACE,GAAG,EAAE,MAAM,CAAC;QACZ,QAAQ,EAAE,MAAM,CAAC;QACjB,IAAI,EAAE,MAAM,CAAC;KACd,CAAC;CACP,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG,gBAAgB,GAAG,iBAAiB,GAAG,iBAAiB,GAAG,oBAAoB,CAAC;AAE3G,MAAM,MAAM,cAAc,GAAG;IAC3B,OAAO,EAAE,YAAY,EAAE,CAAC;IACxB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG;IAC9B,MAAM,EAAE,WAAW,CAAC;IACpB,eAAe,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACrC,kBAAkB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,SAAS,CAAC;IACxD,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAClC,aAAa,CAAC,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,GAAG,SAAS,CAAC;CAC/D,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG,CAAC,EAC7B,UAAU,EACV,IAAI,GACL,EAAE;IACD,UAAU,EAAE,iBAAiB,CAAC;IAC9B,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,CAAC;CAC3C,KAAK,OAAO,CAAC,cAAc,CAAC,CAAC;AAE9B,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,OAAO,GAAG,cAAc,CASnE;AAED,wBAAsB,qBAAqB,CAAC,QAAQ,EAAE,QAAQ,GAAG,OAAO,CAAC,cAAc,CAAC,CA2BvF;AAED,wBAAgB,aAAa,CAAC,OAAO,EAAE,MAAM,GAAG,cAAc,CAU7D;AAED,MAAM,MAAM,QAAQ,GAAG;IACrB,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC;IAC5B,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,OAAO,GAAG;IACpB,QAAQ,EAAE,QAAQ,CAAC;IACnB,IAAI,EAAE,IAAI,CAAC;IACX,OAAO,EAAE,eAAe,CAAC;CAC1B,CAAC"}
|
package/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["src/types.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["src/types.ts"],"names":[],"mappings":"AAEA,OAAO,WAAW,MAAM,0BAA0B,CAAC;AACnD,OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC,CAAC;AAE1D,KAAK,gBAAgB,GAAG;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,KAAK,iBAAiB,GAAG;IACvB,IAAI,EAAE,OAAO,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,KAAK,iBAAiB,GAAG;IACvB,IAAI,EAAE,OAAO,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,KAAK,oBAAoB,GAAG;IAC1B,IAAI,EAAE,UAAU,CAAC;IACjB,QAAQ,EACJ;QACE,GAAG,EAAE,MAAM,CAAC;QACZ,QAAQ,EAAE,MAAM,CAAC;QACjB,IAAI,EAAE,MAAM,CAAC;KACd,GACD;QACE,GAAG,EAAE,MAAM,CAAC;QACZ,QAAQ,EAAE,MAAM,CAAC;QACjB,IAAI,EAAE,MAAM,CAAC;KACd,CAAC;CACP,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG,gBAAgB,GAAG,iBAAiB,GAAG,iBAAiB,GAAG,oBAAoB,CAAC;AAE3G,MAAM,MAAM,cAAc,GAAG;IAC3B,OAAO,EAAE,YAAY,EAAE,CAAC;IACxB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG;IAC9B,MAAM,EAAE,WAAW,CAAC;IACpB,eAAe,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACrC,kBAAkB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,SAAS,CAAC;IACxD,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAClC,aAAa,CAAC,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,GAAG,SAAS,CAAC;CAC/D,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG,CAAC,EAC7B,UAAU,EACV,IAAI,GACL,EAAE;IACD,UAAU,EAAE,iBAAiB,CAAC;IAC9B,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,CAAC;CAC3C,KAAK,OAAO,CAAC,cAAc,CAAC,CAAC;AAE9B,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,OAAO,GAAG,cAAc,CASnE;AAED,wBAAsB,qBAAqB,CAAC,QAAQ,EAAE,QAAQ,GAAG,OAAO,CAAC,cAAc,CAAC,CA2BvF;AAED,wBAAgB,aAAa,CAAC,OAAO,EAAE,MAAM,GAAG,cAAc,CAU7D;AAED,MAAM,MAAM,QAAQ,GAAG;IACrB,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC;IAC5B,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,OAAO,GAAG;IACpB,QAAQ,EAAE,QAAQ,CAAC;IACnB,IAAI,EAAE,IAAI,CAAC;IACX,OAAO,EAAE,eAAe,CAAC;CAC1B,CAAC"}
|