@proposit/shared 0.24.0 → 0.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.
- package/dist/api-client/argument/batch.d.ts +15 -6
- package/dist/api-client/argument/batch.d.ts.map +1 -1
- package/dist/api-client/argument/claims.d.ts +52 -25
- package/dist/api-client/argument/claims.d.ts.map +1 -1
- package/dist/api-client/argument/index.d.ts +51 -24
- package/dist/api-client/argument/index.d.ts.map +1 -1
- package/dist/api-client/argument/logic/index.d.ts +6 -0
- package/dist/api-client/argument/logic/index.d.ts.map +1 -1
- package/dist/api-client/argument/logic/repair.d.ts +1 -0
- package/dist/api-client/argument/logic/repair.d.ts.map +1 -1
- package/dist/api-client/argument/versioning.d.ts +573 -0
- package/dist/api-client/argument/versioning.d.ts.map +1 -0
- package/dist/api-client/argument/versioning.js +45 -0
- package/dist/api-client/argument/versioning.js.map +1 -0
- package/dist/api-client/factory.d.ts +4 -0
- package/dist/api-client/factory.d.ts.map +1 -1
- package/dist/api-client/factory.js +4 -0
- package/dist/api-client/factory.js.map +1 -1
- package/dist/api-client/user/citations.d.ts +24 -12
- package/dist/api-client/user/citations.d.ts.map +1 -1
- package/dist/api-client/user/claims.d.ts +13 -6
- package/dist/api-client/user/claims.d.ts.map +1 -1
- package/dist/engine/engine.d.ts +58 -1
- package/dist/engine/engine.d.ts.map +1 -1
- package/dist/engine/engine.js +148 -2
- package/dist/engine/engine.js.map +1 -1
- package/dist/engine/mutations/premises.d.ts +1 -0
- package/dist/engine/mutations/premises.d.ts.map +1 -1
- package/dist/engine/mutations/premises.js +8 -0
- package/dist/engine/mutations/premises.js.map +1 -1
- package/dist/schemas/api/argument/batch/change-edge-operator.d.ts +1 -0
- package/dist/schemas/api/argument/batch/change-edge-operator.d.ts.map +1 -1
- package/dist/schemas/api/argument/batch/create-expression-with-operator.d.ts +1 -0
- package/dist/schemas/api/argument/batch/create-expression-with-operator.d.ts.map +1 -1
- package/dist/schemas/api/argument/batch/provision.d.ts +13 -6
- package/dist/schemas/api/argument/batch/provision.d.ts.map +1 -1
- package/dist/schemas/api/argument/claims.d.ts +40 -19
- package/dist/schemas/api/argument/claims.d.ts.map +1 -1
- package/dist/schemas/api/argument/index.d.ts +14 -6
- package/dist/schemas/api/argument/index.d.ts.map +1 -1
- package/dist/schemas/api/argument/index.js +1 -0
- package/dist/schemas/api/argument/index.js.map +1 -1
- package/dist/schemas/api/argument/logic.d.ts +1 -0
- package/dist/schemas/api/argument/logic.d.ts.map +1 -1
- package/dist/schemas/api/argument/repair.d.ts +1 -0
- package/dist/schemas/api/argument/repair.d.ts.map +1 -1
- package/dist/schemas/api/argument/versioning.d.ts +44 -0
- package/dist/schemas/api/argument/versioning.d.ts.map +1 -0
- package/dist/schemas/api/argument/versioning.js +44 -0
- package/dist/schemas/api/argument/versioning.js.map +1 -0
- package/dist/schemas/api/citations.d.ts +60 -30
- package/dist/schemas/api/citations.d.ts.map +1 -1
- package/dist/schemas/api/claims.d.ts +26 -12
- package/dist/schemas/api/claims.d.ts.map +1 -1
- package/dist/schemas/logic.d.ts +1 -0
- package/dist/schemas/logic.d.ts.map +1 -1
- package/dist/schemas/logic.js +7 -0
- package/dist/schemas/logic.js.map +1 -1
- package/dist/schemas/model/arguments.d.ts +38 -18
- package/dist/schemas/model/arguments.d.ts.map +1 -1
- package/dist/schemas/model/claims.d.ts +31 -14
- package/dist/schemas/model/claims.d.ts.map +1 -1
- package/dist/schemas/model/claims.js +31 -9
- package/dist/schemas/model/claims.js.map +1 -1
- package/dist/schemas/model/forks.d.ts +1 -1
- package/dist/schemas/model/forks.d.ts.map +1 -1
- package/dist/schemas/model/forks.js +9 -1
- package/dist/schemas/model/forks.js.map +1 -1
- package/dist/schemas/snapshot.d.ts +1 -0
- package/dist/schemas/snapshot.d.ts.map +1 -1
- package/package.json +3 -3
|
@@ -353,8 +353,10 @@ export declare function getArgumentDiffImpl(config: TApiClientConfig, argumentId
|
|
|
353
353
|
added: Type.TArray<Type.TUnion<[Type.TObject<{
|
|
354
354
|
digest: Type.TString;
|
|
355
355
|
id: Type.TString;
|
|
356
|
-
|
|
356
|
+
originArgumentId: Type.TUnion<[Type.TString, Type.TNull]>;
|
|
357
357
|
version: Type.TNumber;
|
|
358
|
+
published: Type.TBoolean;
|
|
359
|
+
publishedOn: Type.TUnion<[import("../../schemas/common.js").TDateType, Type.TNull]>;
|
|
358
360
|
claimForkId: Type.TUnion<[Type.TString, Type.TNull]>;
|
|
359
361
|
creatorId: Type.TString;
|
|
360
362
|
createdOn: import("../../schemas/common.js").TDateType;
|
|
@@ -371,8 +373,10 @@ export declare function getArgumentDiffImpl(config: TApiClientConfig, argumentId
|
|
|
371
373
|
}>, Type.TObject<{
|
|
372
374
|
digest: Type.TString;
|
|
373
375
|
id: Type.TString;
|
|
374
|
-
|
|
376
|
+
originArgumentId: Type.TUnion<[Type.TString, Type.TNull]>;
|
|
375
377
|
version: Type.TNumber;
|
|
378
|
+
published: Type.TBoolean;
|
|
379
|
+
publishedOn: Type.TUnion<[import("../../schemas/common.js").TDateType, Type.TNull]>;
|
|
376
380
|
claimForkId: Type.TUnion<[Type.TString, Type.TNull]>;
|
|
377
381
|
creatorId: Type.TString;
|
|
378
382
|
createdOn: import("../../schemas/common.js").TDateType;
|
|
@@ -382,8 +386,8 @@ export declare function getArgumentDiffImpl(config: TApiClientConfig, argumentId
|
|
|
382
386
|
title: Type.TNull;
|
|
383
387
|
body: Type.TNull;
|
|
384
388
|
titleContentHash: Type.TNull;
|
|
385
|
-
url: Type.TString
|
|
386
|
-
citation: Type.TUnion<[Type.TUnion<[Type.
|
|
389
|
+
url: Type.TUnion<[Type.TString, Type.TNull]>;
|
|
390
|
+
citation: Type.TUnion<[Type.TUnion<[Type.TIntersect<[Type.TObject<{
|
|
387
391
|
type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
|
|
388
392
|
}>, Type.TObject<{
|
|
389
393
|
type: Type.TLiteral<"Book">;
|
|
@@ -810,14 +814,16 @@ export declare function getArgumentDiffImpl(config: TApiClientConfig, argumentId
|
|
|
810
814
|
text: Type.TString;
|
|
811
815
|
citationTypeGuess: Type.TUnion<[Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>, Type.TLiteral<"unknown">]>;
|
|
812
816
|
url: Type.TOptional<Type.TString>;
|
|
813
|
-
}>]
|
|
817
|
+
}>]>;
|
|
814
818
|
citationContentHash: Type.TString;
|
|
815
819
|
axiom: Type.TNull;
|
|
816
820
|
}>, Type.TObject<{
|
|
817
821
|
digest: Type.TString;
|
|
818
822
|
id: Type.TString;
|
|
819
|
-
|
|
823
|
+
originArgumentId: Type.TUnion<[Type.TString, Type.TNull]>;
|
|
820
824
|
version: Type.TNumber;
|
|
825
|
+
published: Type.TBoolean;
|
|
826
|
+
publishedOn: Type.TUnion<[import("../../schemas/common.js").TDateType, Type.TNull]>;
|
|
821
827
|
claimForkId: Type.TUnion<[Type.TString, Type.TNull]>;
|
|
822
828
|
creatorId: Type.TString;
|
|
823
829
|
createdOn: import("../../schemas/common.js").TDateType;
|
|
@@ -835,8 +841,10 @@ export declare function getArgumentDiffImpl(config: TApiClientConfig, argumentId
|
|
|
835
841
|
removed: Type.TArray<Type.TUnion<[Type.TObject<{
|
|
836
842
|
digest: Type.TString;
|
|
837
843
|
id: Type.TString;
|
|
838
|
-
|
|
844
|
+
originArgumentId: Type.TUnion<[Type.TString, Type.TNull]>;
|
|
839
845
|
version: Type.TNumber;
|
|
846
|
+
published: Type.TBoolean;
|
|
847
|
+
publishedOn: Type.TUnion<[import("../../schemas/common.js").TDateType, Type.TNull]>;
|
|
840
848
|
claimForkId: Type.TUnion<[Type.TString, Type.TNull]>;
|
|
841
849
|
creatorId: Type.TString;
|
|
842
850
|
createdOn: import("../../schemas/common.js").TDateType;
|
|
@@ -853,8 +861,10 @@ export declare function getArgumentDiffImpl(config: TApiClientConfig, argumentId
|
|
|
853
861
|
}>, Type.TObject<{
|
|
854
862
|
digest: Type.TString;
|
|
855
863
|
id: Type.TString;
|
|
856
|
-
|
|
864
|
+
originArgumentId: Type.TUnion<[Type.TString, Type.TNull]>;
|
|
857
865
|
version: Type.TNumber;
|
|
866
|
+
published: Type.TBoolean;
|
|
867
|
+
publishedOn: Type.TUnion<[import("../../schemas/common.js").TDateType, Type.TNull]>;
|
|
858
868
|
claimForkId: Type.TUnion<[Type.TString, Type.TNull]>;
|
|
859
869
|
creatorId: Type.TString;
|
|
860
870
|
createdOn: import("../../schemas/common.js").TDateType;
|
|
@@ -864,8 +874,8 @@ export declare function getArgumentDiffImpl(config: TApiClientConfig, argumentId
|
|
|
864
874
|
title: Type.TNull;
|
|
865
875
|
body: Type.TNull;
|
|
866
876
|
titleContentHash: Type.TNull;
|
|
867
|
-
url: Type.TString
|
|
868
|
-
citation: Type.TUnion<[Type.TUnion<[Type.
|
|
877
|
+
url: Type.TUnion<[Type.TString, Type.TNull]>;
|
|
878
|
+
citation: Type.TUnion<[Type.TUnion<[Type.TIntersect<[Type.TObject<{
|
|
869
879
|
type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
|
|
870
880
|
}>, Type.TObject<{
|
|
871
881
|
type: Type.TLiteral<"Book">;
|
|
@@ -1292,14 +1302,16 @@ export declare function getArgumentDiffImpl(config: TApiClientConfig, argumentId
|
|
|
1292
1302
|
text: Type.TString;
|
|
1293
1303
|
citationTypeGuess: Type.TUnion<[Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>, Type.TLiteral<"unknown">]>;
|
|
1294
1304
|
url: Type.TOptional<Type.TString>;
|
|
1295
|
-
}>]
|
|
1305
|
+
}>]>;
|
|
1296
1306
|
citationContentHash: Type.TString;
|
|
1297
1307
|
axiom: Type.TNull;
|
|
1298
1308
|
}>, Type.TObject<{
|
|
1299
1309
|
digest: Type.TString;
|
|
1300
1310
|
id: Type.TString;
|
|
1301
|
-
|
|
1311
|
+
originArgumentId: Type.TUnion<[Type.TString, Type.TNull]>;
|
|
1302
1312
|
version: Type.TNumber;
|
|
1313
|
+
published: Type.TBoolean;
|
|
1314
|
+
publishedOn: Type.TUnion<[import("../../schemas/common.js").TDateType, Type.TNull]>;
|
|
1303
1315
|
claimForkId: Type.TUnion<[Type.TString, Type.TNull]>;
|
|
1304
1316
|
creatorId: Type.TString;
|
|
1305
1317
|
createdOn: import("../../schemas/common.js").TDateType;
|
|
@@ -1317,8 +1329,10 @@ export declare function getArgumentDiffImpl(config: TApiClientConfig, argumentId
|
|
|
1317
1329
|
updated: Type.TArray<Type.TUnion<[Type.TObject<{
|
|
1318
1330
|
digest: Type.TString;
|
|
1319
1331
|
id: Type.TString;
|
|
1320
|
-
|
|
1332
|
+
originArgumentId: Type.TUnion<[Type.TString, Type.TNull]>;
|
|
1321
1333
|
version: Type.TNumber;
|
|
1334
|
+
published: Type.TBoolean;
|
|
1335
|
+
publishedOn: Type.TUnion<[import("../../schemas/common.js").TDateType, Type.TNull]>;
|
|
1322
1336
|
claimForkId: Type.TUnion<[Type.TString, Type.TNull]>;
|
|
1323
1337
|
creatorId: Type.TString;
|
|
1324
1338
|
createdOn: import("../../schemas/common.js").TDateType;
|
|
@@ -1335,8 +1349,10 @@ export declare function getArgumentDiffImpl(config: TApiClientConfig, argumentId
|
|
|
1335
1349
|
}>, Type.TObject<{
|
|
1336
1350
|
digest: Type.TString;
|
|
1337
1351
|
id: Type.TString;
|
|
1338
|
-
|
|
1352
|
+
originArgumentId: Type.TUnion<[Type.TString, Type.TNull]>;
|
|
1339
1353
|
version: Type.TNumber;
|
|
1354
|
+
published: Type.TBoolean;
|
|
1355
|
+
publishedOn: Type.TUnion<[import("../../schemas/common.js").TDateType, Type.TNull]>;
|
|
1340
1356
|
claimForkId: Type.TUnion<[Type.TString, Type.TNull]>;
|
|
1341
1357
|
creatorId: Type.TString;
|
|
1342
1358
|
createdOn: import("../../schemas/common.js").TDateType;
|
|
@@ -1346,8 +1362,8 @@ export declare function getArgumentDiffImpl(config: TApiClientConfig, argumentId
|
|
|
1346
1362
|
title: Type.TNull;
|
|
1347
1363
|
body: Type.TNull;
|
|
1348
1364
|
titleContentHash: Type.TNull;
|
|
1349
|
-
url: Type.TString
|
|
1350
|
-
citation: Type.TUnion<[Type.TUnion<[Type.
|
|
1365
|
+
url: Type.TUnion<[Type.TString, Type.TNull]>;
|
|
1366
|
+
citation: Type.TUnion<[Type.TUnion<[Type.TIntersect<[Type.TObject<{
|
|
1351
1367
|
type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
|
|
1352
1368
|
}>, Type.TObject<{
|
|
1353
1369
|
type: Type.TLiteral<"Book">;
|
|
@@ -1774,14 +1790,16 @@ export declare function getArgumentDiffImpl(config: TApiClientConfig, argumentId
|
|
|
1774
1790
|
text: Type.TString;
|
|
1775
1791
|
citationTypeGuess: Type.TUnion<[Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>, Type.TLiteral<"unknown">]>;
|
|
1776
1792
|
url: Type.TOptional<Type.TString>;
|
|
1777
|
-
}>]
|
|
1793
|
+
}>]>;
|
|
1778
1794
|
citationContentHash: Type.TString;
|
|
1779
1795
|
axiom: Type.TNull;
|
|
1780
1796
|
}>, Type.TObject<{
|
|
1781
1797
|
digest: Type.TString;
|
|
1782
1798
|
id: Type.TString;
|
|
1783
|
-
|
|
1799
|
+
originArgumentId: Type.TUnion<[Type.TString, Type.TNull]>;
|
|
1784
1800
|
version: Type.TNumber;
|
|
1801
|
+
published: Type.TBoolean;
|
|
1802
|
+
publishedOn: Type.TUnion<[import("../../schemas/common.js").TDateType, Type.TNull]>;
|
|
1785
1803
|
claimForkId: Type.TUnion<[Type.TString, Type.TNull]>;
|
|
1786
1804
|
creatorId: Type.TString;
|
|
1787
1805
|
createdOn: import("../../schemas/common.js").TDateType;
|
|
@@ -2013,6 +2031,7 @@ export declare function getArgumentDiffImpl(config: TApiClientConfig, argumentId
|
|
|
2013
2031
|
role: Type.TUnion<[Type.TLiteral<"conclusion">, Type.TLiteral<"supporting">]>;
|
|
2014
2032
|
createdOn: Type.TOptional<import("../../schemas/common.js").TDateType>;
|
|
2015
2033
|
creatorId: Type.TOptional<Type.TString>;
|
|
2034
|
+
derivedClaimVersion: Type.TOptional<Type.TUnion<[Type.TNumber, Type.TNull]>>;
|
|
2016
2035
|
}>]>>;
|
|
2017
2036
|
removed: Type.TArray<Type.TIntersect<[Type.TUnion<[Type.TObject<{
|
|
2018
2037
|
type: Type.TLiteral<"freeform">;
|
|
@@ -2036,6 +2055,7 @@ export declare function getArgumentDiffImpl(config: TApiClientConfig, argumentId
|
|
|
2036
2055
|
role: Type.TUnion<[Type.TLiteral<"conclusion">, Type.TLiteral<"supporting">]>;
|
|
2037
2056
|
createdOn: Type.TOptional<import("../../schemas/common.js").TDateType>;
|
|
2038
2057
|
creatorId: Type.TOptional<Type.TString>;
|
|
2058
|
+
derivedClaimVersion: Type.TOptional<Type.TUnion<[Type.TNumber, Type.TNull]>>;
|
|
2039
2059
|
}>]>>;
|
|
2040
2060
|
}>;
|
|
2041
2061
|
}>;
|
|
@@ -2535,8 +2555,10 @@ export declare function getEntireArgumentImpl(config: TApiClientConfig, argument
|
|
|
2535
2555
|
claims: Type.TArray<Type.TUnion<[Type.TObject<{
|
|
2536
2556
|
digest: Type.TString;
|
|
2537
2557
|
id: Type.TString;
|
|
2538
|
-
|
|
2558
|
+
originArgumentId: Type.TUnion<[Type.TString, Type.TNull]>;
|
|
2539
2559
|
version: Type.TNumber;
|
|
2560
|
+
published: Type.TBoolean;
|
|
2561
|
+
publishedOn: Type.TUnion<[import("../../schemas/common.js").TDateType, Type.TNull]>;
|
|
2540
2562
|
claimForkId: Type.TUnion<[Type.TString, Type.TNull]>;
|
|
2541
2563
|
creatorId: Type.TString;
|
|
2542
2564
|
createdOn: import("../../schemas/common.js").TDateType;
|
|
@@ -2553,8 +2575,10 @@ export declare function getEntireArgumentImpl(config: TApiClientConfig, argument
|
|
|
2553
2575
|
}>, Type.TObject<{
|
|
2554
2576
|
digest: Type.TString;
|
|
2555
2577
|
id: Type.TString;
|
|
2556
|
-
|
|
2578
|
+
originArgumentId: Type.TUnion<[Type.TString, Type.TNull]>;
|
|
2557
2579
|
version: Type.TNumber;
|
|
2580
|
+
published: Type.TBoolean;
|
|
2581
|
+
publishedOn: Type.TUnion<[import("../../schemas/common.js").TDateType, Type.TNull]>;
|
|
2558
2582
|
claimForkId: Type.TUnion<[Type.TString, Type.TNull]>;
|
|
2559
2583
|
creatorId: Type.TString;
|
|
2560
2584
|
createdOn: import("../../schemas/common.js").TDateType;
|
|
@@ -2564,8 +2588,8 @@ export declare function getEntireArgumentImpl(config: TApiClientConfig, argument
|
|
|
2564
2588
|
title: Type.TNull;
|
|
2565
2589
|
body: Type.TNull;
|
|
2566
2590
|
titleContentHash: Type.TNull;
|
|
2567
|
-
url: Type.TString
|
|
2568
|
-
citation: Type.TUnion<[Type.TUnion<[Type.
|
|
2591
|
+
url: Type.TUnion<[Type.TString, Type.TNull]>;
|
|
2592
|
+
citation: Type.TUnion<[Type.TUnion<[Type.TIntersect<[Type.TObject<{
|
|
2569
2593
|
type: Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>;
|
|
2570
2594
|
}>, Type.TObject<{
|
|
2571
2595
|
type: Type.TLiteral<"Book">;
|
|
@@ -2992,14 +3016,16 @@ export declare function getEntireArgumentImpl(config: TApiClientConfig, argument
|
|
|
2992
3016
|
text: Type.TString;
|
|
2993
3017
|
citationTypeGuess: Type.TUnion<[Type.TUnion<[Type.TLiteral<"Book">, Type.TLiteral<"Website">, Type.TLiteral<"BookChapter">, Type.TLiteral<"Handbook">, Type.TLiteral<"TechnicalReport">, Type.TLiteral<"Standard">, Type.TLiteral<"Thesis">, Type.TLiteral<"Patent">, Type.TLiteral<"Dictionary">, Type.TLiteral<"Encyclopedia">, Type.TLiteral<"JournalArticle">, Type.TLiteral<"MagazineArticle">, Type.TLiteral<"NewspaperArticle">, Type.TLiteral<"ConferencePaper">, Type.TLiteral<"ConferenceProceedings">, Type.TLiteral<"Dataset">, Type.TLiteral<"Software">, Type.TLiteral<"OnlineDocument">, Type.TLiteral<"Blog">, Type.TLiteral<"SocialMedia">, Type.TLiteral<"Preprint">, Type.TLiteral<"Video">, Type.TLiteral<"Podcast">, Type.TLiteral<"Course">, Type.TLiteral<"Presentation">, Type.TLiteral<"Interview">, Type.TLiteral<"PersonalCommunication">, Type.TLiteral<"Email">, Type.TLiteral<"Law">, Type.TLiteral<"CourtCase">, Type.TLiteral<"GovernmentPublication">, Type.TLiteral<"Datasheet">, Type.TLiteral<"ProductManual">]>, Type.TLiteral<"unknown">]>;
|
|
2994
3018
|
url: Type.TOptional<Type.TString>;
|
|
2995
|
-
}>]
|
|
3019
|
+
}>]>;
|
|
2996
3020
|
citationContentHash: Type.TString;
|
|
2997
3021
|
axiom: Type.TNull;
|
|
2998
3022
|
}>, Type.TObject<{
|
|
2999
3023
|
digest: Type.TString;
|
|
3000
3024
|
id: Type.TString;
|
|
3001
|
-
|
|
3025
|
+
originArgumentId: Type.TUnion<[Type.TString, Type.TNull]>;
|
|
3002
3026
|
version: Type.TNumber;
|
|
3027
|
+
published: Type.TBoolean;
|
|
3028
|
+
publishedOn: Type.TUnion<[import("../../schemas/common.js").TDateType, Type.TNull]>;
|
|
3003
3029
|
claimForkId: Type.TUnion<[Type.TString, Type.TNull]>;
|
|
3004
3030
|
creatorId: Type.TString;
|
|
3005
3031
|
createdOn: import("../../schemas/common.js").TDateType;
|
|
@@ -3106,6 +3132,7 @@ export declare function getEntireArgumentImpl(config: TApiClientConfig, argument
|
|
|
3106
3132
|
id: Type.TString;
|
|
3107
3133
|
argumentId: Type.TString;
|
|
3108
3134
|
argumentVersion: Type.TNumber;
|
|
3135
|
+
derivedClaimVersion: Type.TOptional<Type.TUnion<[Type.TNumber, Type.TNull]>>;
|
|
3109
3136
|
}>, Type.TObject<{
|
|
3110
3137
|
checksum: Type.TOptional<Type.TString>;
|
|
3111
3138
|
descendantChecksum: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/api-client/argument/index.ts"],"names":[],"mappings":"AASA,OAAO,EAIH,KAAK,sBAAsB,EAE3B,KAAK,eAAe,EAEvB,MAAM,qCAAqC,CAAA;AAE5C,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAC9B,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAA;AAGpD,wBAAsB,eAAe,CACjC,MAAM,EAAE,gBAAgB,EACxB,UAAU,EAAE,MAAM,EAClB,OAAO,EAAE,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAelB;AAED,wBAAsB,mBAAmB,CACrC,MAAM,EAAE,gBAAgB,EACxB,UAAU,EAAE,MAAM,EAClB,OAAO,EAAE,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAUlB;AAED,wBAAsB,iBAAiB,CACnC,MAAM,EAAE,gBAAgB,EACxB,UAAU,EAAE,MAAM,EAClB,OAAO,EAAE,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAUlB;AAED,wBAAsB,gBAAgB,CAClC,MAAM,EAAE,gBAAgB,EACxB,UAAU,EAAE,MAAM,EAClB,OAAO,EAAE,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAUlB;AAED,wBAAsB,mBAAmB,CACrC,MAAM,EAAE,gBAAgB,EACxB,UAAU,EAAE,MAAM,EAClB,OAAO,EAAE,MAAM,EACf,UAAU,EAAE,MAAM,EAClB,eAAe,EAAE,MAAM
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/api-client/argument/index.ts"],"names":[],"mappings":"AASA,OAAO,EAIH,KAAK,sBAAsB,EAE3B,KAAK,eAAe,EAEvB,MAAM,qCAAqC,CAAA;AAE5C,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAC9B,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAA;AAGpD,wBAAsB,eAAe,CACjC,MAAM,EAAE,gBAAgB,EACxB,UAAU,EAAE,MAAM,EAClB,OAAO,EAAE,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAelB;AAED,wBAAsB,mBAAmB,CACrC,MAAM,EAAE,gBAAgB,EACxB,UAAU,EAAE,MAAM,EAClB,OAAO,EAAE,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAUlB;AAED,wBAAsB,iBAAiB,CACnC,MAAM,EAAE,gBAAgB,EACxB,UAAU,EAAE,MAAM,EAClB,OAAO,EAAE,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAUlB;AAED,wBAAsB,gBAAgB,CAClC,MAAM,EAAE,gBAAgB,EACxB,UAAU,EAAE,MAAM,EAClB,OAAO,EAAE,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAUlB;AAED,wBAAsB,mBAAmB,CACrC,MAAM,EAAE,gBAAgB,EACxB,UAAU,EAAE,MAAM,EAClB,OAAO,EAAE,MAAM,EACf,UAAU,EAAE,MAAM,EAClB,eAAe,EAAE,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
|
|
@@ -111,6 +111,7 @@ export declare function getLogicDataImpl(config: TApiClientConfig, argumentId: s
|
|
|
111
111
|
id: Type.TString;
|
|
112
112
|
argumentId: Type.TString;
|
|
113
113
|
argumentVersion: Type.TNumber;
|
|
114
|
+
derivedClaimVersion: Type.TOptional<Type.TUnion<[Type.TNumber, Type.TNull]>>;
|
|
114
115
|
}>, Type.TObject<{
|
|
115
116
|
checksum: Type.TOptional<Type.TString>;
|
|
116
117
|
descendantChecksum: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
|
|
@@ -218,6 +219,7 @@ export declare function getPremisesImpl(config: TApiClientConfig, argumentId: st
|
|
|
218
219
|
role: Type.TUnion<[Type.TLiteral<"conclusion">, Type.TLiteral<"supporting">]>;
|
|
219
220
|
createdOn: Type.TOptional<import("../../../schemas/common.js").TDateType>;
|
|
220
221
|
creatorId: Type.TOptional<Type.TString>;
|
|
222
|
+
derivedClaimVersion: Type.TOptional<Type.TUnion<[Type.TNumber, Type.TNull]>>;
|
|
221
223
|
}>]>>>>;
|
|
222
224
|
export declare function createPremiseImpl(config: TApiClientConfig, argumentId: string, argumentVersion: number, data: TPremiseCreation): Promise<import("../../../schemas/common.js").ParsedError<Type.TObject<{
|
|
223
225
|
errorID: Type.TNumber;
|
|
@@ -260,6 +262,7 @@ export declare function createPremiseImpl(config: TApiClientConfig, argumentId:
|
|
|
260
262
|
role: Type.TUnion<[Type.TLiteral<"conclusion">, Type.TLiteral<"supporting">]>;
|
|
261
263
|
createdOn: Type.TOptional<import("../../../schemas/common.js").TDateType>;
|
|
262
264
|
creatorId: Type.TOptional<Type.TString>;
|
|
265
|
+
derivedClaimVersion: Type.TOptional<Type.TUnion<[Type.TNumber, Type.TNull]>>;
|
|
263
266
|
}>]>;
|
|
264
267
|
variable: Type.TUnion<[Type.TUnion<[Type.TIntersect<[Type.TObject<{
|
|
265
268
|
claimId: Type.TString;
|
|
@@ -330,6 +333,7 @@ export declare function updatePremiseImpl(config: TApiClientConfig, argumentId:
|
|
|
330
333
|
role: Type.TUnion<[Type.TLiteral<"conclusion">, Type.TLiteral<"supporting">]>;
|
|
331
334
|
createdOn: Type.TOptional<import("../../../schemas/common.js").TDateType>;
|
|
332
335
|
creatorId: Type.TOptional<Type.TString>;
|
|
336
|
+
derivedClaimVersion: Type.TOptional<Type.TUnion<[Type.TNumber, Type.TNull]>>;
|
|
333
337
|
}>]>>>;
|
|
334
338
|
export declare function deletePremiseImpl(config: TApiClientConfig, argumentId: string, argumentVersion: number, premiseId: string, checksum: string): Promise<import("../../../schemas/common.js").ParsedError<Type.TObject<{
|
|
335
339
|
errorID: Type.TNumber;
|
|
@@ -392,6 +396,7 @@ export declare function getPremiseImpl(config: TApiClientConfig, argumentId: str
|
|
|
392
396
|
role: Type.TUnion<[Type.TLiteral<"conclusion">, Type.TLiteral<"supporting">]>;
|
|
393
397
|
createdOn: Type.TOptional<import("../../../schemas/common.js").TDateType>;
|
|
394
398
|
creatorId: Type.TOptional<Type.TString>;
|
|
399
|
+
derivedClaimVersion: Type.TOptional<Type.TUnion<[Type.TNumber, Type.TNull]>>;
|
|
395
400
|
}>]>>>;
|
|
396
401
|
export declare function getExpressionsImpl(config: TApiClientConfig, argumentId: string, argumentVersion: number, premiseId?: string): Promise<import("../../../schemas/common.js").ParsedError<Type.TObject<{
|
|
397
402
|
errorID: Type.TNumber;
|
|
@@ -858,6 +863,7 @@ export declare function toggleNegationImpl(config: TApiClientConfig, argumentId:
|
|
|
858
863
|
id: Type.TString;
|
|
859
864
|
argumentId: Type.TString;
|
|
860
865
|
argumentVersion: Type.TNumber;
|
|
866
|
+
derivedClaimVersion: Type.TOptional<Type.TUnion<[Type.TNumber, Type.TNull]>>;
|
|
861
867
|
}>, Type.TObject<{
|
|
862
868
|
checksum: Type.TOptional<Type.TString>;
|
|
863
869
|
descendantChecksum: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/api-client/argument/logic/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACR,mBAAmB,EACnB,iBAAiB,EACjB,gBAAgB,EAChB,cAAc,EACd,iBAAiB,EACjB,eAAe,EAClB,MAAM,wCAAwC,CAAA;AAkB/C,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAC9B,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAA;AAevD,wBAAsB,gBAAgB,CAClC,MAAM,EAAE,gBAAgB,EACxB,UAAU,EAAE,MAAM,EAClB,eAAe,EAAE,MAAM
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/api-client/argument/logic/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -111,6 +111,7 @@ export declare function repairArgumentImpl(config: TApiClientConfig, argumentId:
|
|
|
111
111
|
id: import("typebox").TString;
|
|
112
112
|
argumentId: import("typebox").TString;
|
|
113
113
|
argumentVersion: import("typebox").TNumber;
|
|
114
|
+
derivedClaimVersion: import("typebox").TOptional<import("typebox").TUnion<[import("typebox").TNumber, import("typebox").TNull]>>;
|
|
114
115
|
}>, import("typebox").TObject<{
|
|
115
116
|
checksum: import("typebox").TOptional<import("typebox").TString>;
|
|
116
117
|
descendantChecksum: import("typebox").TOptional<import("typebox").TUnion<[import("typebox").TString, import("typebox").TNull]>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"repair.d.ts","sourceRoot":"","sources":["../../../../src/api-client/argument/logic/repair.ts"],"names":[],"mappings":"AAAA,OAAO,EAGH,KAAK,cAAc,EACtB,MAAM,yCAAyC,CAAA;AAEhD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAA;AAWvD,wBAAsB,kBAAkB,CACpC,MAAM,EAAE,gBAAgB,EACxB,UAAU,EAAE,MAAM,EAClB,eAAe,EAAE,MAAM,EACvB,IAAI,EAAE,cAAc
|
|
1
|
+
{"version":3,"file":"repair.d.ts","sourceRoot":"","sources":["../../../../src/api-client/argument/logic/repair.ts"],"names":[],"mappings":"AAAA,OAAO,EAGH,KAAK,cAAc,EACtB,MAAM,yCAAyC,CAAA;AAEhD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAA;AAWvD,wBAAsB,kBAAkB,CACpC,MAAM,EAAE,gBAAgB,EACxB,UAAU,EAAE,MAAM,EAClB,eAAe,EAAE,MAAM,EACvB,IAAI,EAAE,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAWvB"}
|