gomtm 0.0.359 → 0.0.360
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/esm/components/curdView/curdViewEditor.d.ts +2 -0
- package/dist/esm/components/curdView/curdViewEditor.js +8 -0
- package/dist/esm/curd/CurdView.js +1 -1
- package/dist/esm/curd/CurdViewSS.js +3 -3
- package/dist/esm/curd/DynViews.d.ts +1 -0
- package/dist/esm/curd/DynViews.js +46 -3
- package/dist/esm/curd/form/formStore.d.ts +9 -14
- package/dist/esm/curd/form/formStore.js +58 -20
- package/dist/esm/curd/listview/CommonListView.js +35 -8
- package/dist/esm/curd/listview/list-store.d.ts +2 -2
- package/dist/esm/curd/listview/list-store.js +2 -14
- package/dist/esm/curd/remove/RemovePanel.js +2 -5
- package/dist/esm/gomtmpb/mtm/sppb/curd-CurdService_connectquery.d.ts +42 -2
- package/dist/esm/gomtmpb/mtm/sppb/curd-CurdService_connectquery.js +46 -2
- package/dist/esm/gomtmpb/mtm/sppb/curd_connect.d.ts +26 -2
- package/dist/esm/gomtmpb/mtm/sppb/curd_connect.js +43 -2
- package/dist/esm/gomtmpb/mtm/sppb/curd_pb.d.ts +44 -0
- package/dist/esm/gomtmpb/mtm/sppb/curd_pb.js +106 -0
- package/dist/esm/gomtmpb/mtm/sppb/mtm-MtmService_connectquery.d.ts +1 -41
- package/dist/esm/gomtmpb/mtm/sppb/mtm-MtmService_connectquery.js +1 -45
- package/dist/esm/gomtmpb/mtm/sppb/mtm_connect.d.ts +1 -25
- package/dist/esm/gomtmpb/mtm/sppb/mtm_connect.js +1 -37
- package/dist/esm/gomtmpb/mtm/sppb/mtm_pb.d.ts +0 -42
- package/dist/esm/gomtmpb/mtm/sppb/mtm_pb.js +0 -94
- package/dist/tsconfig.type.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { CurdConfig, GetCurdConfigReq } from "./curd_pb";
|
|
1
|
+
import { CurdConfig, CurdViewCreateReq, CurdViewGetRes, CurdViewUpdateReq, GetCurdConfigReq } from "./curd_pb";
|
|
2
2
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
3
|
-
import { CommontListReq, CommontListRes, CurdDetailReq, CurdDetailRes } from "./mtm_pb";
|
|
3
|
+
import { CommontListReq, CommontListRes, CurdDetailReq, CurdDetailRes, CurdViewGetReq, Result } from "./mtm_pb";
|
|
4
4
|
const CurdService = {
|
|
5
5
|
typeName: "sppb.CurdService",
|
|
6
6
|
methods: {
|
|
@@ -30,6 +30,47 @@ const CurdService = {
|
|
|
30
30
|
I: CurdDetailReq,
|
|
31
31
|
O: CurdDetailRes,
|
|
32
32
|
kind: MethodKind.Unary
|
|
33
|
+
},
|
|
34
|
+
/**
|
|
35
|
+
* rpc CurdViewList(sppb.CommontListReq) returns (sppb.CommontListRes) {}
|
|
36
|
+
* rpc CurdViewGet(CurdViewGetReq) returns (CurdViewGetRes) {}
|
|
37
|
+
* rpc CurdViewCreate(CurdViewCreateReq) returns (sppb.Result) {}
|
|
38
|
+
* rpc CurdViewUpdate(CurdViewUpdateReq) returns (sppb.Result) {}
|
|
39
|
+
*
|
|
40
|
+
* @generated from rpc sppb.CurdService.CurdViewList
|
|
41
|
+
*/
|
|
42
|
+
curdViewList: {
|
|
43
|
+
name: "CurdViewList",
|
|
44
|
+
I: CommontListReq,
|
|
45
|
+
O: CommontListRes,
|
|
46
|
+
kind: MethodKind.Unary
|
|
47
|
+
},
|
|
48
|
+
/**
|
|
49
|
+
* @generated from rpc sppb.CurdService.CurdViewGet
|
|
50
|
+
*/
|
|
51
|
+
curdViewGet: {
|
|
52
|
+
name: "CurdViewGet",
|
|
53
|
+
I: CurdViewGetReq,
|
|
54
|
+
O: CurdViewGetRes,
|
|
55
|
+
kind: MethodKind.Unary
|
|
56
|
+
},
|
|
57
|
+
/**
|
|
58
|
+
* @generated from rpc sppb.CurdService.CurdViewCreate
|
|
59
|
+
*/
|
|
60
|
+
curdViewCreate: {
|
|
61
|
+
name: "CurdViewCreate",
|
|
62
|
+
I: CurdViewCreateReq,
|
|
63
|
+
O: Result,
|
|
64
|
+
kind: MethodKind.Unary
|
|
65
|
+
},
|
|
66
|
+
/**
|
|
67
|
+
* @generated from rpc sppb.CurdService.CurdViewUpdate
|
|
68
|
+
*/
|
|
69
|
+
curdViewUpdate: {
|
|
70
|
+
name: "CurdViewUpdate",
|
|
71
|
+
I: CurdViewUpdateReq,
|
|
72
|
+
O: Result,
|
|
73
|
+
kind: MethodKind.Unary
|
|
33
74
|
}
|
|
34
75
|
}
|
|
35
76
|
};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
|
|
2
2
|
import { Message, proto3 } from "@bufbuild/protobuf";
|
|
3
|
+
import { CurdView, ErrorRes } from "./mtm_pb";
|
|
3
4
|
export declare class GetCurdConfigReq extends Message<GetCurdConfigReq> {
|
|
4
5
|
constructor(data?: PartialMessage<GetCurdConfigReq>);
|
|
5
6
|
static readonly runtime: typeof proto3;
|
|
@@ -96,3 +97,46 @@ export declare class CurdConfig extends Message<CurdConfig> {
|
|
|
96
97
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CurdConfig;
|
|
97
98
|
static equals(a: CurdConfig | PlainMessage<CurdConfig> | undefined, b: CurdConfig | PlainMessage<CurdConfig> | undefined): boolean;
|
|
98
99
|
}
|
|
100
|
+
export declare class CurdViewCreateReq extends Message<CurdViewCreateReq> {
|
|
101
|
+
title: string;
|
|
102
|
+
constructor(data?: PartialMessage<CurdViewCreateReq>);
|
|
103
|
+
static readonly runtime: typeof proto3;
|
|
104
|
+
static readonly typeName = "sppb.CurdViewCreateReq";
|
|
105
|
+
static readonly fields: FieldList;
|
|
106
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CurdViewCreateReq;
|
|
107
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CurdViewCreateReq;
|
|
108
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CurdViewCreateReq;
|
|
109
|
+
static equals(a: CurdViewCreateReq | PlainMessage<CurdViewCreateReq> | undefined, b: CurdViewCreateReq | PlainMessage<CurdViewCreateReq> | undefined): boolean;
|
|
110
|
+
}
|
|
111
|
+
export declare class CurdViewUpdateReq extends Message<CurdViewUpdateReq> {
|
|
112
|
+
id: number;
|
|
113
|
+
input?: CurdView;
|
|
114
|
+
constructor(data?: PartialMessage<CurdViewUpdateReq>);
|
|
115
|
+
static readonly runtime: typeof proto3;
|
|
116
|
+
static readonly typeName = "sppb.CurdViewUpdateReq";
|
|
117
|
+
static readonly fields: FieldList;
|
|
118
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CurdViewUpdateReq;
|
|
119
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CurdViewUpdateReq;
|
|
120
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CurdViewUpdateReq;
|
|
121
|
+
static equals(a: CurdViewUpdateReq | PlainMessage<CurdViewUpdateReq> | undefined, b: CurdViewUpdateReq | PlainMessage<CurdViewUpdateReq> | undefined): boolean;
|
|
122
|
+
}
|
|
123
|
+
export declare class CurdViewGetRes extends Message<CurdViewGetRes> {
|
|
124
|
+
item: {
|
|
125
|
+
value: ErrorRes;
|
|
126
|
+
case: "error";
|
|
127
|
+
} | {
|
|
128
|
+
value: CurdView;
|
|
129
|
+
case: "data";
|
|
130
|
+
} | {
|
|
131
|
+
case: undefined;
|
|
132
|
+
value?: undefined;
|
|
133
|
+
};
|
|
134
|
+
constructor(data?: PartialMessage<CurdViewGetRes>);
|
|
135
|
+
static readonly runtime: typeof proto3;
|
|
136
|
+
static readonly typeName = "sppb.CurdViewGetRes";
|
|
137
|
+
static readonly fields: FieldList;
|
|
138
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CurdViewGetRes;
|
|
139
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CurdViewGetRes;
|
|
140
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CurdViewGetRes;
|
|
141
|
+
static equals(a: CurdViewGetRes | PlainMessage<CurdViewGetRes> | undefined, b: CurdViewGetRes | PlainMessage<CurdViewGetRes> | undefined): boolean;
|
|
142
|
+
}
|
|
@@ -5,6 +5,7 @@ var __publicField = (obj, key, value) => {
|
|
|
5
5
|
return value;
|
|
6
6
|
};
|
|
7
7
|
import { Message, proto3 } from "@bufbuild/protobuf";
|
|
8
|
+
import { CurdView, ErrorRes } from "./mtm_pb";
|
|
8
9
|
const _GetCurdConfigReq = class _GetCurdConfigReq extends Message {
|
|
9
10
|
constructor(data) {
|
|
10
11
|
super();
|
|
@@ -310,6 +311,108 @@ __publicField(_CurdConfig, "fields", proto3.util.newFieldList(() => [
|
|
|
310
311
|
{ no: 2, name: "services", kind: "map", K: 9, V: { kind: "message", T: CurdConfigSvc } }
|
|
311
312
|
]));
|
|
312
313
|
let CurdConfig = _CurdConfig;
|
|
314
|
+
const _CurdViewCreateReq = class _CurdViewCreateReq extends Message {
|
|
315
|
+
constructor(data) {
|
|
316
|
+
super();
|
|
317
|
+
/**
|
|
318
|
+
* @generated from field: string title = 1;
|
|
319
|
+
*/
|
|
320
|
+
__publicField(this, "title", "");
|
|
321
|
+
proto3.util.initPartial(data, this);
|
|
322
|
+
}
|
|
323
|
+
static fromBinary(bytes, options) {
|
|
324
|
+
return new _CurdViewCreateReq().fromBinary(bytes, options);
|
|
325
|
+
}
|
|
326
|
+
static fromJson(jsonValue, options) {
|
|
327
|
+
return new _CurdViewCreateReq().fromJson(jsonValue, options);
|
|
328
|
+
}
|
|
329
|
+
static fromJsonString(jsonString, options) {
|
|
330
|
+
return new _CurdViewCreateReq().fromJsonString(jsonString, options);
|
|
331
|
+
}
|
|
332
|
+
static equals(a, b) {
|
|
333
|
+
return proto3.util.equals(_CurdViewCreateReq, a, b);
|
|
334
|
+
}
|
|
335
|
+
};
|
|
336
|
+
__publicField(_CurdViewCreateReq, "runtime", proto3);
|
|
337
|
+
__publicField(_CurdViewCreateReq, "typeName", "sppb.CurdViewCreateReq");
|
|
338
|
+
__publicField(_CurdViewCreateReq, "fields", proto3.util.newFieldList(() => [
|
|
339
|
+
{
|
|
340
|
+
no: 1,
|
|
341
|
+
name: "title",
|
|
342
|
+
kind: "scalar",
|
|
343
|
+
T: 9
|
|
344
|
+
/* ScalarType.STRING */
|
|
345
|
+
}
|
|
346
|
+
]));
|
|
347
|
+
let CurdViewCreateReq = _CurdViewCreateReq;
|
|
348
|
+
const _CurdViewUpdateReq = class _CurdViewUpdateReq extends Message {
|
|
349
|
+
constructor(data) {
|
|
350
|
+
super();
|
|
351
|
+
/**
|
|
352
|
+
* @generated from field: int32 id = 1;
|
|
353
|
+
*/
|
|
354
|
+
__publicField(this, "id", 0);
|
|
355
|
+
/**
|
|
356
|
+
* @generated from field: sppb.CurdView input = 2;
|
|
357
|
+
*/
|
|
358
|
+
__publicField(this, "input");
|
|
359
|
+
proto3.util.initPartial(data, this);
|
|
360
|
+
}
|
|
361
|
+
static fromBinary(bytes, options) {
|
|
362
|
+
return new _CurdViewUpdateReq().fromBinary(bytes, options);
|
|
363
|
+
}
|
|
364
|
+
static fromJson(jsonValue, options) {
|
|
365
|
+
return new _CurdViewUpdateReq().fromJson(jsonValue, options);
|
|
366
|
+
}
|
|
367
|
+
static fromJsonString(jsonString, options) {
|
|
368
|
+
return new _CurdViewUpdateReq().fromJsonString(jsonString, options);
|
|
369
|
+
}
|
|
370
|
+
static equals(a, b) {
|
|
371
|
+
return proto3.util.equals(_CurdViewUpdateReq, a, b);
|
|
372
|
+
}
|
|
373
|
+
};
|
|
374
|
+
__publicField(_CurdViewUpdateReq, "runtime", proto3);
|
|
375
|
+
__publicField(_CurdViewUpdateReq, "typeName", "sppb.CurdViewUpdateReq");
|
|
376
|
+
__publicField(_CurdViewUpdateReq, "fields", proto3.util.newFieldList(() => [
|
|
377
|
+
{
|
|
378
|
+
no: 1,
|
|
379
|
+
name: "id",
|
|
380
|
+
kind: "scalar",
|
|
381
|
+
T: 5
|
|
382
|
+
/* ScalarType.INT32 */
|
|
383
|
+
},
|
|
384
|
+
{ no: 2, name: "input", kind: "message", T: CurdView }
|
|
385
|
+
]));
|
|
386
|
+
let CurdViewUpdateReq = _CurdViewUpdateReq;
|
|
387
|
+
const _CurdViewGetRes = class _CurdViewGetRes extends Message {
|
|
388
|
+
constructor(data) {
|
|
389
|
+
super();
|
|
390
|
+
/**
|
|
391
|
+
* @generated from oneof sppb.CurdViewGetRes.item
|
|
392
|
+
*/
|
|
393
|
+
__publicField(this, "item", { case: void 0 });
|
|
394
|
+
proto3.util.initPartial(data, this);
|
|
395
|
+
}
|
|
396
|
+
static fromBinary(bytes, options) {
|
|
397
|
+
return new _CurdViewGetRes().fromBinary(bytes, options);
|
|
398
|
+
}
|
|
399
|
+
static fromJson(jsonValue, options) {
|
|
400
|
+
return new _CurdViewGetRes().fromJson(jsonValue, options);
|
|
401
|
+
}
|
|
402
|
+
static fromJsonString(jsonString, options) {
|
|
403
|
+
return new _CurdViewGetRes().fromJsonString(jsonString, options);
|
|
404
|
+
}
|
|
405
|
+
static equals(a, b) {
|
|
406
|
+
return proto3.util.equals(_CurdViewGetRes, a, b);
|
|
407
|
+
}
|
|
408
|
+
};
|
|
409
|
+
__publicField(_CurdViewGetRes, "runtime", proto3);
|
|
410
|
+
__publicField(_CurdViewGetRes, "typeName", "sppb.CurdViewGetRes");
|
|
411
|
+
__publicField(_CurdViewGetRes, "fields", proto3.util.newFieldList(() => [
|
|
412
|
+
{ no: 101, name: "error", kind: "message", T: ErrorRes, oneof: "item" },
|
|
413
|
+
{ no: 102, name: "data", kind: "message", T: CurdView, oneof: "item" }
|
|
414
|
+
]));
|
|
415
|
+
let CurdViewGetRes = _CurdViewGetRes;
|
|
313
416
|
export {
|
|
314
417
|
CurdConfig,
|
|
315
418
|
CurdConfigSvc,
|
|
@@ -318,5 +421,8 @@ export {
|
|
|
318
421
|
CurdConfigSvc_Detail,
|
|
319
422
|
CurdConfigSvc_List,
|
|
320
423
|
CurdConfigSvc_Update,
|
|
424
|
+
CurdViewCreateReq,
|
|
425
|
+
CurdViewGetRes,
|
|
426
|
+
CurdViewUpdateReq,
|
|
321
427
|
GetCurdConfigReq
|
|
322
428
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
2
|
-
import { ArtContentClassifyReply, ArtContentClassifyReq, ArtRewriteReply, ArtRewriteReq, AuthToken, BlogCategorie, BlogCategorieCreateReply, BlogCategorieCreateReq, BlogCategorieGetReq, BlogCategorieListReply, BlogCategorieListReq, BlogCategorieUpdateReq, BlogCategorieUpdateReqply, BlogCleanReq, BlogPost, BlogPostCreateReq, BlogPostGetReq, BlogPostImportReq, BlogPostUpdateReq, CommontListReq, CommontListRes,
|
|
2
|
+
import { ArtContentClassifyReply, ArtContentClassifyReq, ArtRewriteReply, ArtRewriteReq, AuthToken, BlogCategorie, BlogCategorieCreateReply, BlogCategorieCreateReq, BlogCategorieGetReq, BlogCategorieListReply, BlogCategorieListReq, BlogCategorieUpdateReq, BlogCategorieUpdateReqply, BlogCleanReq, BlogPost, BlogPostCreateReq, BlogPostGetReq, BlogPostImportReq, BlogPostUpdateReq, CommontListReq, CommontListRes, Empty, FormCreateReq, FormGetReq, FormSchema, GetMetaReq, GetMetaRes, LoginReply, LoginReq, MtmServerListReq, MtmServerListRes, Oauth2LoginHookRequest, PullLogReq, PullLogRes, RegisterReply, RegisterReq, ResDeleteReq, Result, ServiceMetaReq, ServiceMetaRes, Site, SiteCreateReq, SiteCreateRes, SiteGetReq, SiteHost, SiteHostCreateReq, SiteHostGetReq, SiteHostListReply, SiteHostListReq, SiteHostUpdateReq, SiteImportReq, SiteSetupCftunnelReply, SiteSetupCftunnelReq, SiteUpdateReq, SlugReq, SlugRes, UserinfoRes } from "./mtm_pb";
|
|
3
3
|
export declare const oauth2LoginHook: {
|
|
4
4
|
readonly localName: "oauth2LoginHook";
|
|
5
5
|
readonly name: "Oauth2LoginHook";
|
|
@@ -340,46 +340,6 @@ export declare const siteHostDelete: {
|
|
|
340
340
|
readonly typeName: "sppb.MtmService";
|
|
341
341
|
};
|
|
342
342
|
};
|
|
343
|
-
export declare const curdViewList: {
|
|
344
|
-
readonly localName: "curdViewList";
|
|
345
|
-
readonly name: "CurdViewList";
|
|
346
|
-
readonly kind: MethodKind.Unary;
|
|
347
|
-
readonly I: typeof CommontListReq;
|
|
348
|
-
readonly O: typeof CommontListRes;
|
|
349
|
-
readonly service: {
|
|
350
|
-
readonly typeName: "sppb.MtmService";
|
|
351
|
-
};
|
|
352
|
-
};
|
|
353
|
-
export declare const curdViewGet: {
|
|
354
|
-
readonly localName: "curdViewGet";
|
|
355
|
-
readonly name: "CurdViewGet";
|
|
356
|
-
readonly kind: MethodKind.Unary;
|
|
357
|
-
readonly I: typeof CurdViewGetReq;
|
|
358
|
-
readonly O: typeof CurdViewGetRes;
|
|
359
|
-
readonly service: {
|
|
360
|
-
readonly typeName: "sppb.MtmService";
|
|
361
|
-
};
|
|
362
|
-
};
|
|
363
|
-
export declare const curdViewCreate: {
|
|
364
|
-
readonly localName: "curdViewCreate";
|
|
365
|
-
readonly name: "CurdViewCreate";
|
|
366
|
-
readonly kind: MethodKind.Unary;
|
|
367
|
-
readonly I: typeof CurdViewCreateReq;
|
|
368
|
-
readonly O: typeof Result;
|
|
369
|
-
readonly service: {
|
|
370
|
-
readonly typeName: "sppb.MtmService";
|
|
371
|
-
};
|
|
372
|
-
};
|
|
373
|
-
export declare const curdViewUpdate: {
|
|
374
|
-
readonly localName: "curdViewUpdate";
|
|
375
|
-
readonly name: "CurdViewUpdate";
|
|
376
|
-
readonly kind: MethodKind.Unary;
|
|
377
|
-
readonly I: typeof CurdViewUpdateReq;
|
|
378
|
-
readonly O: typeof Result;
|
|
379
|
-
readonly service: {
|
|
380
|
-
readonly typeName: "sppb.MtmService";
|
|
381
|
-
};
|
|
382
|
-
};
|
|
383
343
|
export declare const formList: {
|
|
384
344
|
readonly localName: "formList";
|
|
385
345
|
readonly name: "FormList";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
2
|
-
import { ArtContentClassifyReply, ArtContentClassifyReq, ArtRewriteReply, ArtRewriteReq, AuthToken, BlogCategorie, BlogCategorieCreateReply, BlogCategorieCreateReq, BlogCategorieGetReq, BlogCategorieListReply, BlogCategorieListReq, BlogCategorieUpdateReq, BlogCategorieUpdateReqply, BlogCleanReq, BlogPost, BlogPostCreateReq, BlogPostGetReq, BlogPostImportReq, BlogPostUpdateReq, CommontListReq, CommontListRes,
|
|
2
|
+
import { ArtContentClassifyReply, ArtContentClassifyReq, ArtRewriteReply, ArtRewriteReq, AuthToken, BlogCategorie, BlogCategorieCreateReply, BlogCategorieCreateReq, BlogCategorieGetReq, BlogCategorieListReply, BlogCategorieListReq, BlogCategorieUpdateReq, BlogCategorieUpdateReqply, BlogCleanReq, BlogPost, BlogPostCreateReq, BlogPostGetReq, BlogPostImportReq, BlogPostUpdateReq, CommontListReq, CommontListRes, Empty, FormCreateReq, FormGetReq, FormSchema, GetMetaReq, GetMetaRes, LoginReply, LoginReq, MtmServerListReq, MtmServerListRes, Oauth2LoginHookRequest, PullLogReq, PullLogRes, RegisterReply, RegisterReq, ResDeleteReq, Result, ServiceMetaReq, ServiceMetaRes, Site, SiteCreateReq, SiteCreateRes, SiteGetReq, SiteHost, SiteHostCreateReq, SiteHostGetReq, SiteHostListReply, SiteHostListReq, SiteHostUpdateReq, SiteImportReq, SiteSetupCftunnelReply, SiteSetupCftunnelReq, SiteUpdateReq, SlugReq, SlugRes, UserinfoRes } from "./mtm_pb";
|
|
3
3
|
const oauth2LoginHook = {
|
|
4
4
|
localName: "oauth2LoginHook",
|
|
5
5
|
name: "Oauth2LoginHook",
|
|
@@ -340,46 +340,6 @@ const siteHostDelete = {
|
|
|
340
340
|
typeName: "sppb.MtmService"
|
|
341
341
|
}
|
|
342
342
|
};
|
|
343
|
-
const curdViewList = {
|
|
344
|
-
localName: "curdViewList",
|
|
345
|
-
name: "CurdViewList",
|
|
346
|
-
kind: MethodKind.Unary,
|
|
347
|
-
I: CommontListReq,
|
|
348
|
-
O: CommontListRes,
|
|
349
|
-
service: {
|
|
350
|
-
typeName: "sppb.MtmService"
|
|
351
|
-
}
|
|
352
|
-
};
|
|
353
|
-
const curdViewGet = {
|
|
354
|
-
localName: "curdViewGet",
|
|
355
|
-
name: "CurdViewGet",
|
|
356
|
-
kind: MethodKind.Unary,
|
|
357
|
-
I: CurdViewGetReq,
|
|
358
|
-
O: CurdViewGetRes,
|
|
359
|
-
service: {
|
|
360
|
-
typeName: "sppb.MtmService"
|
|
361
|
-
}
|
|
362
|
-
};
|
|
363
|
-
const curdViewCreate = {
|
|
364
|
-
localName: "curdViewCreate",
|
|
365
|
-
name: "CurdViewCreate",
|
|
366
|
-
kind: MethodKind.Unary,
|
|
367
|
-
I: CurdViewCreateReq,
|
|
368
|
-
O: Result,
|
|
369
|
-
service: {
|
|
370
|
-
typeName: "sppb.MtmService"
|
|
371
|
-
}
|
|
372
|
-
};
|
|
373
|
-
const curdViewUpdate = {
|
|
374
|
-
localName: "curdViewUpdate",
|
|
375
|
-
name: "CurdViewUpdate",
|
|
376
|
-
kind: MethodKind.Unary,
|
|
377
|
-
I: CurdViewUpdateReq,
|
|
378
|
-
O: Result,
|
|
379
|
-
service: {
|
|
380
|
-
typeName: "sppb.MtmService"
|
|
381
|
-
}
|
|
382
|
-
};
|
|
383
343
|
const formList = {
|
|
384
344
|
localName: "formList",
|
|
385
345
|
name: "FormList",
|
|
@@ -445,10 +405,6 @@ export {
|
|
|
445
405
|
blogPostImport,
|
|
446
406
|
blogPostList,
|
|
447
407
|
blogPostUpdate,
|
|
448
|
-
curdViewCreate,
|
|
449
|
-
curdViewGet,
|
|
450
|
-
curdViewList,
|
|
451
|
-
curdViewUpdate,
|
|
452
408
|
formCreate,
|
|
453
409
|
formGet,
|
|
454
410
|
formList,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ArtContentClassifyReply, ArtContentClassifyReq, ArtRewriteReply, ArtRewriteReq, AuthToken, BlogCategorie, BlogCategorieCreateReply, BlogCategorieCreateReq, BlogCategorieGetReq, BlogCategorieListReply, BlogCategorieListReq, BlogCategorieUpdateReq, BlogCategorieUpdateReqply, BlogCleanReq, BlogPost, BlogPostCreateReq, BlogPostGetReq, BlogPostImportReq, BlogPostUpdateReq, CommontListReq, CommontListRes,
|
|
1
|
+
import { ArtContentClassifyReply, ArtContentClassifyReq, ArtRewriteReply, ArtRewriteReq, AuthToken, BlogCategorie, BlogCategorieCreateReply, BlogCategorieCreateReq, BlogCategorieGetReq, BlogCategorieListReply, BlogCategorieListReq, BlogCategorieUpdateReq, BlogCategorieUpdateReqply, BlogCleanReq, BlogPost, BlogPostCreateReq, BlogPostGetReq, BlogPostImportReq, BlogPostUpdateReq, CommontListReq, CommontListRes, Empty, FormCreateReq, FormGetReq, FormSchema, GetMetaReq, GetMetaRes, LoginReply, LoginReq, MtmServerListReq, MtmServerListRes, Oauth2LoginHookRequest, PullLogReq, PullLogRes, RegisterReply, RegisterReq, ResDeleteReq, Result, ServiceMetaReq, ServiceMetaRes, Site, SiteCreateReq, SiteCreateRes, SiteGetReq, SiteHost, SiteHostCreateReq, SiteHostGetReq, SiteHostListReply, SiteHostListReq, SiteHostUpdateReq, SiteImportReq, SiteSetupCftunnelReply, SiteSetupCftunnelReq, SiteUpdateReq, SlugReq, SlugRes, UserinfoRes } from "./mtm_pb";
|
|
2
2
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
3
3
|
export declare const MtmService: {
|
|
4
4
|
readonly typeName: "sppb.MtmService";
|
|
@@ -207,30 +207,6 @@ export declare const MtmService: {
|
|
|
207
207
|
readonly O: typeof Result;
|
|
208
208
|
readonly kind: MethodKind.Unary;
|
|
209
209
|
};
|
|
210
|
-
readonly curdViewList: {
|
|
211
|
-
readonly name: "CurdViewList";
|
|
212
|
-
readonly I: typeof CommontListReq;
|
|
213
|
-
readonly O: typeof CommontListRes;
|
|
214
|
-
readonly kind: MethodKind.Unary;
|
|
215
|
-
};
|
|
216
|
-
readonly curdViewGet: {
|
|
217
|
-
readonly name: "CurdViewGet";
|
|
218
|
-
readonly I: typeof CurdViewGetReq;
|
|
219
|
-
readonly O: typeof CurdViewGetRes;
|
|
220
|
-
readonly kind: MethodKind.Unary;
|
|
221
|
-
};
|
|
222
|
-
readonly curdViewCreate: {
|
|
223
|
-
readonly name: "CurdViewCreate";
|
|
224
|
-
readonly I: typeof CurdViewCreateReq;
|
|
225
|
-
readonly O: typeof Result;
|
|
226
|
-
readonly kind: MethodKind.Unary;
|
|
227
|
-
};
|
|
228
|
-
readonly curdViewUpdate: {
|
|
229
|
-
readonly name: "CurdViewUpdate";
|
|
230
|
-
readonly I: typeof CurdViewUpdateReq;
|
|
231
|
-
readonly O: typeof Result;
|
|
232
|
-
readonly kind: MethodKind.Unary;
|
|
233
|
-
};
|
|
234
210
|
readonly formList: {
|
|
235
211
|
readonly name: "FormList";
|
|
236
212
|
readonly I: typeof CommontListReq;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ArtContentClassifyReply, ArtContentClassifyReq, ArtRewriteReply, ArtRewriteReq, AuthToken, BlogCategorie, BlogCategorieCreateReply, BlogCategorieCreateReq, BlogCategorieGetReq, BlogCategorieListReply, BlogCategorieListReq, BlogCategorieUpdateReq, BlogCategorieUpdateReqply, BlogCleanReq, BlogPost, BlogPostCreateReq, BlogPostGetReq, BlogPostImportReq, BlogPostUpdateReq, CommontListReq, CommontListRes,
|
|
1
|
+
import { ArtContentClassifyReply, ArtContentClassifyReq, ArtRewriteReply, ArtRewriteReq, AuthToken, BlogCategorie, BlogCategorieCreateReply, BlogCategorieCreateReq, BlogCategorieGetReq, BlogCategorieListReply, BlogCategorieListReq, BlogCategorieUpdateReq, BlogCategorieUpdateReqply, BlogCleanReq, BlogPost, BlogPostCreateReq, BlogPostGetReq, BlogPostImportReq, BlogPostUpdateReq, CommontListReq, CommontListRes, Empty, FormCreateReq, FormGetReq, FormSchema, GetMetaReq, GetMetaRes, LoginReply, LoginReq, MtmServerListReq, MtmServerListRes, Oauth2LoginHookRequest, PullLogReq, PullLogRes, RegisterReply, RegisterReq, ResDeleteReq, Result, ServiceMetaReq, ServiceMetaRes, Site, SiteCreateReq, SiteCreateRes, SiteGetReq, SiteHost, SiteHostCreateReq, SiteHostGetReq, SiteHostListReply, SiteHostListReq, SiteHostUpdateReq, SiteImportReq, SiteSetupCftunnelReply, SiteSetupCftunnelReq, SiteUpdateReq, SlugReq, SlugRes, UserinfoRes } from "./mtm_pb";
|
|
2
2
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
3
3
|
const MtmService = {
|
|
4
4
|
typeName: "sppb.MtmService",
|
|
@@ -339,42 +339,6 @@ const MtmService = {
|
|
|
339
339
|
O: Result,
|
|
340
340
|
kind: MethodKind.Unary
|
|
341
341
|
},
|
|
342
|
-
/**
|
|
343
|
-
* @generated from rpc sppb.MtmService.CurdViewList
|
|
344
|
-
*/
|
|
345
|
-
curdViewList: {
|
|
346
|
-
name: "CurdViewList",
|
|
347
|
-
I: CommontListReq,
|
|
348
|
-
O: CommontListRes,
|
|
349
|
-
kind: MethodKind.Unary
|
|
350
|
-
},
|
|
351
|
-
/**
|
|
352
|
-
* @generated from rpc sppb.MtmService.CurdViewGet
|
|
353
|
-
*/
|
|
354
|
-
curdViewGet: {
|
|
355
|
-
name: "CurdViewGet",
|
|
356
|
-
I: CurdViewGetReq,
|
|
357
|
-
O: CurdViewGetRes,
|
|
358
|
-
kind: MethodKind.Unary
|
|
359
|
-
},
|
|
360
|
-
/**
|
|
361
|
-
* @generated from rpc sppb.MtmService.CurdViewCreate
|
|
362
|
-
*/
|
|
363
|
-
curdViewCreate: {
|
|
364
|
-
name: "CurdViewCreate",
|
|
365
|
-
I: CurdViewCreateReq,
|
|
366
|
-
O: Result,
|
|
367
|
-
kind: MethodKind.Unary
|
|
368
|
-
},
|
|
369
|
-
/**
|
|
370
|
-
* @generated from rpc sppb.MtmService.CurdViewUpdate
|
|
371
|
-
*/
|
|
372
|
-
curdViewUpdate: {
|
|
373
|
-
name: "CurdViewUpdate",
|
|
374
|
-
I: CurdViewUpdateReq,
|
|
375
|
-
O: Result,
|
|
376
|
-
kind: MethodKind.Unary
|
|
377
|
-
},
|
|
378
342
|
/**
|
|
379
343
|
* @generated from rpc sppb.MtmService.FormList
|
|
380
344
|
*/
|
|
@@ -1590,48 +1590,6 @@ export declare class CurdView extends Message<CurdView> {
|
|
|
1590
1590
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CurdView;
|
|
1591
1591
|
static equals(a: CurdView | PlainMessage<CurdView> | undefined, b: CurdView | PlainMessage<CurdView> | undefined): boolean;
|
|
1592
1592
|
}
|
|
1593
|
-
export declare class CurdViewCreateReq extends Message<CurdViewCreateReq> {
|
|
1594
|
-
title: string;
|
|
1595
|
-
constructor(data?: PartialMessage<CurdViewCreateReq>);
|
|
1596
|
-
static readonly runtime: typeof proto3;
|
|
1597
|
-
static readonly typeName = "sppb.CurdViewCreateReq";
|
|
1598
|
-
static readonly fields: FieldList;
|
|
1599
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CurdViewCreateReq;
|
|
1600
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CurdViewCreateReq;
|
|
1601
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CurdViewCreateReq;
|
|
1602
|
-
static equals(a: CurdViewCreateReq | PlainMessage<CurdViewCreateReq> | undefined, b: CurdViewCreateReq | PlainMessage<CurdViewCreateReq> | undefined): boolean;
|
|
1603
|
-
}
|
|
1604
|
-
export declare class CurdViewUpdateReq extends Message<CurdViewUpdateReq> {
|
|
1605
|
-
input?: CurdView;
|
|
1606
|
-
constructor(data?: PartialMessage<CurdViewUpdateReq>);
|
|
1607
|
-
static readonly runtime: typeof proto3;
|
|
1608
|
-
static readonly typeName = "sppb.CurdViewUpdateReq";
|
|
1609
|
-
static readonly fields: FieldList;
|
|
1610
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CurdViewUpdateReq;
|
|
1611
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CurdViewUpdateReq;
|
|
1612
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CurdViewUpdateReq;
|
|
1613
|
-
static equals(a: CurdViewUpdateReq | PlainMessage<CurdViewUpdateReq> | undefined, b: CurdViewUpdateReq | PlainMessage<CurdViewUpdateReq> | undefined): boolean;
|
|
1614
|
-
}
|
|
1615
|
-
export declare class CurdViewGetRes extends Message<CurdViewGetRes> {
|
|
1616
|
-
item: {
|
|
1617
|
-
value: ErrorRes;
|
|
1618
|
-
case: "error";
|
|
1619
|
-
} | {
|
|
1620
|
-
value: CurdView;
|
|
1621
|
-
case: "data";
|
|
1622
|
-
} | {
|
|
1623
|
-
case: undefined;
|
|
1624
|
-
value?: undefined;
|
|
1625
|
-
};
|
|
1626
|
-
constructor(data?: PartialMessage<CurdViewGetRes>);
|
|
1627
|
-
static readonly runtime: typeof proto3;
|
|
1628
|
-
static readonly typeName = "sppb.CurdViewGetRes";
|
|
1629
|
-
static readonly fields: FieldList;
|
|
1630
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CurdViewGetRes;
|
|
1631
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CurdViewGetRes;
|
|
1632
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CurdViewGetRes;
|
|
1633
|
-
static equals(a: CurdViewGetRes | PlainMessage<CurdViewGetRes> | undefined, b: CurdViewGetRes | PlainMessage<CurdViewGetRes> | undefined): boolean;
|
|
1634
|
-
}
|
|
1635
1593
|
export declare class ArtContentClassifyReq extends Message<ArtContentClassifyReq> {
|
|
1636
1594
|
text: string;
|
|
1637
1595
|
categories: string[];
|
|
@@ -6439,97 +6439,6 @@ __publicField(_CurdView, "fields", proto3.util.newFieldList(() => [
|
|
|
6439
6439
|
}
|
|
6440
6440
|
]));
|
|
6441
6441
|
let CurdView = _CurdView;
|
|
6442
|
-
const _CurdViewCreateReq = class _CurdViewCreateReq extends Message {
|
|
6443
|
-
constructor(data) {
|
|
6444
|
-
super();
|
|
6445
|
-
/**
|
|
6446
|
-
* @generated from field: string title = 1;
|
|
6447
|
-
*/
|
|
6448
|
-
__publicField(this, "title", "");
|
|
6449
|
-
proto3.util.initPartial(data, this);
|
|
6450
|
-
}
|
|
6451
|
-
static fromBinary(bytes, options) {
|
|
6452
|
-
return new _CurdViewCreateReq().fromBinary(bytes, options);
|
|
6453
|
-
}
|
|
6454
|
-
static fromJson(jsonValue, options) {
|
|
6455
|
-
return new _CurdViewCreateReq().fromJson(jsonValue, options);
|
|
6456
|
-
}
|
|
6457
|
-
static fromJsonString(jsonString, options) {
|
|
6458
|
-
return new _CurdViewCreateReq().fromJsonString(jsonString, options);
|
|
6459
|
-
}
|
|
6460
|
-
static equals(a, b) {
|
|
6461
|
-
return proto3.util.equals(_CurdViewCreateReq, a, b);
|
|
6462
|
-
}
|
|
6463
|
-
};
|
|
6464
|
-
__publicField(_CurdViewCreateReq, "runtime", proto3);
|
|
6465
|
-
__publicField(_CurdViewCreateReq, "typeName", "sppb.CurdViewCreateReq");
|
|
6466
|
-
__publicField(_CurdViewCreateReq, "fields", proto3.util.newFieldList(() => [
|
|
6467
|
-
{
|
|
6468
|
-
no: 1,
|
|
6469
|
-
name: "title",
|
|
6470
|
-
kind: "scalar",
|
|
6471
|
-
T: 9
|
|
6472
|
-
/* ScalarType.STRING */
|
|
6473
|
-
}
|
|
6474
|
-
]));
|
|
6475
|
-
let CurdViewCreateReq = _CurdViewCreateReq;
|
|
6476
|
-
const _CurdViewUpdateReq = class _CurdViewUpdateReq extends Message {
|
|
6477
|
-
constructor(data) {
|
|
6478
|
-
super();
|
|
6479
|
-
/**
|
|
6480
|
-
* @generated from field: sppb.CurdView input = 1;
|
|
6481
|
-
*/
|
|
6482
|
-
__publicField(this, "input");
|
|
6483
|
-
proto3.util.initPartial(data, this);
|
|
6484
|
-
}
|
|
6485
|
-
static fromBinary(bytes, options) {
|
|
6486
|
-
return new _CurdViewUpdateReq().fromBinary(bytes, options);
|
|
6487
|
-
}
|
|
6488
|
-
static fromJson(jsonValue, options) {
|
|
6489
|
-
return new _CurdViewUpdateReq().fromJson(jsonValue, options);
|
|
6490
|
-
}
|
|
6491
|
-
static fromJsonString(jsonString, options) {
|
|
6492
|
-
return new _CurdViewUpdateReq().fromJsonString(jsonString, options);
|
|
6493
|
-
}
|
|
6494
|
-
static equals(a, b) {
|
|
6495
|
-
return proto3.util.equals(_CurdViewUpdateReq, a, b);
|
|
6496
|
-
}
|
|
6497
|
-
};
|
|
6498
|
-
__publicField(_CurdViewUpdateReq, "runtime", proto3);
|
|
6499
|
-
__publicField(_CurdViewUpdateReq, "typeName", "sppb.CurdViewUpdateReq");
|
|
6500
|
-
__publicField(_CurdViewUpdateReq, "fields", proto3.util.newFieldList(() => [
|
|
6501
|
-
{ no: 1, name: "input", kind: "message", T: CurdView }
|
|
6502
|
-
]));
|
|
6503
|
-
let CurdViewUpdateReq = _CurdViewUpdateReq;
|
|
6504
|
-
const _CurdViewGetRes = class _CurdViewGetRes extends Message {
|
|
6505
|
-
constructor(data) {
|
|
6506
|
-
super();
|
|
6507
|
-
/**
|
|
6508
|
-
* @generated from oneof sppb.CurdViewGetRes.item
|
|
6509
|
-
*/
|
|
6510
|
-
__publicField(this, "item", { case: void 0 });
|
|
6511
|
-
proto3.util.initPartial(data, this);
|
|
6512
|
-
}
|
|
6513
|
-
static fromBinary(bytes, options) {
|
|
6514
|
-
return new _CurdViewGetRes().fromBinary(bytes, options);
|
|
6515
|
-
}
|
|
6516
|
-
static fromJson(jsonValue, options) {
|
|
6517
|
-
return new _CurdViewGetRes().fromJson(jsonValue, options);
|
|
6518
|
-
}
|
|
6519
|
-
static fromJsonString(jsonString, options) {
|
|
6520
|
-
return new _CurdViewGetRes().fromJsonString(jsonString, options);
|
|
6521
|
-
}
|
|
6522
|
-
static equals(a, b) {
|
|
6523
|
-
return proto3.util.equals(_CurdViewGetRes, a, b);
|
|
6524
|
-
}
|
|
6525
|
-
};
|
|
6526
|
-
__publicField(_CurdViewGetRes, "runtime", proto3);
|
|
6527
|
-
__publicField(_CurdViewGetRes, "typeName", "sppb.CurdViewGetRes");
|
|
6528
|
-
__publicField(_CurdViewGetRes, "fields", proto3.util.newFieldList(() => [
|
|
6529
|
-
{ no: 101, name: "error", kind: "message", T: ErrorRes, oneof: "item" },
|
|
6530
|
-
{ no: 102, name: "data", kind: "message", T: CurdView, oneof: "item" }
|
|
6531
|
-
]));
|
|
6532
|
-
let CurdViewGetRes = _CurdViewGetRes;
|
|
6533
6442
|
const _ArtContentClassifyReq = class _ArtContentClassifyReq extends Message {
|
|
6534
6443
|
constructor(data) {
|
|
6535
6444
|
super();
|
|
@@ -7117,10 +7026,7 @@ export {
|
|
|
7117
7026
|
CurdDetailReq,
|
|
7118
7027
|
CurdDetailRes,
|
|
7119
7028
|
CurdView,
|
|
7120
|
-
CurdViewCreateReq,
|
|
7121
7029
|
CurdViewGetReq,
|
|
7122
|
-
CurdViewGetRes,
|
|
7123
|
-
CurdViewUpdateReq,
|
|
7124
7030
|
DemoGetProductionRequest,
|
|
7125
7031
|
DevInitConfig,
|
|
7126
7032
|
DomainCollResult,
|