@arbiwallet/contracts 1.0.123 → 1.0.124
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/gen/content.ts +2 -0
- package/package.json +1 -1
- package/proto/content.proto +2 -0
package/gen/content.ts
CHANGED
|
@@ -284,6 +284,7 @@ export interface ReorderBlogsResponse {
|
|
|
284
284
|
export interface CreateDocumentRequest {
|
|
285
285
|
slug: string;
|
|
286
286
|
body: string;
|
|
287
|
+
title: string;
|
|
287
288
|
}
|
|
288
289
|
|
|
289
290
|
export interface CreateDocumentResponse {
|
|
@@ -416,6 +417,7 @@ export interface Document {
|
|
|
416
417
|
body: string;
|
|
417
418
|
createdAt: string;
|
|
418
419
|
updatedAt: string;
|
|
420
|
+
title: string;
|
|
419
421
|
}
|
|
420
422
|
|
|
421
423
|
export interface Story {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arbiwallet/contracts",
|
|
3
3
|
"descriptions": "Generate and manage smart contracts for ArbiWallet",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.124",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
|
|
7
7
|
},
|
package/proto/content.proto
CHANGED
|
@@ -335,6 +335,7 @@ message ReorderBlogsResponse {}
|
|
|
335
335
|
message CreateDocumentRequest {
|
|
336
336
|
string slug = 1;
|
|
337
337
|
string body = 2;
|
|
338
|
+
string title = 3;
|
|
338
339
|
}
|
|
339
340
|
|
|
340
341
|
message CreateDocumentResponse {
|
|
@@ -466,6 +467,7 @@ message Document {
|
|
|
466
467
|
string body = 3;
|
|
467
468
|
string created_at = 4;
|
|
468
469
|
string updated_at = 5;
|
|
470
|
+
string title = 6;
|
|
469
471
|
}
|
|
470
472
|
|
|
471
473
|
message Story {
|