-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.contracts.json
More file actions
83 lines (83 loc) · 2.08 KB
/
plugin.contracts.json
File metadata and controls
83 lines (83 loc) · 2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"version": "1",
"contracts": [
{
"kind": "module",
"type": "erp.provider",
"mode": "strict",
"config": "erp.v1.ProviderConfig"
},
{
"kind": "step",
"type": "step.erp_entity_read",
"mode": "strict",
"config": "erp.v1.StepConfig",
"input": "erp.v1.EntityReadInput",
"output": "erp.v1.EntityReadOutput"
},
{
"kind": "step",
"type": "step.erp_entity_query",
"mode": "strict",
"config": "erp.v1.StepConfig",
"input": "erp.v1.EntityQueryInput",
"output": "erp.v1.EntityQueryOutput"
},
{
"kind": "step",
"type": "step.erp_entity_create",
"mode": "strict",
"config": "erp.v1.StepConfig",
"input": "erp.v1.EntityCreateInput",
"output": "erp.v1.EntityCreateOutput"
},
{
"kind": "step",
"type": "step.erp_entity_update",
"mode": "strict",
"config": "erp.v1.StepConfig",
"input": "erp.v1.EntityUpdateInput",
"output": "erp.v1.EntityUpdateOutput"
},
{
"kind": "step",
"type": "step.erp_entity_delete",
"mode": "strict",
"config": "erp.v1.StepConfig",
"input": "erp.v1.EntityDeleteInput",
"output": "erp.v1.EntityDeleteOutput"
},
{
"kind": "step",
"type": "step.erp_batch",
"mode": "strict",
"config": "erp.v1.StepConfig",
"input": "erp.v1.BatchInput",
"output": "erp.v1.BatchOutput"
},
{
"kind": "step",
"type": "step.erp_function_call",
"mode": "strict",
"config": "erp.v1.StepConfig",
"input": "erp.v1.FunctionCallInput",
"output": "erp.v1.FunctionCallOutput"
},
{
"kind": "step",
"type": "step.erp_metadata",
"mode": "strict",
"config": "erp.v1.StepConfig",
"input": "erp.v1.MetadataInput",
"output": "erp.v1.MetadataOutput"
},
{
"kind": "step",
"type": "step.erp_raw_request",
"mode": "strict",
"config": "erp.v1.StepConfig",
"input": "erp.v1.RawRequestInput",
"output": "erp.v1.RawRequestOutput"
}
]
}