plankapy 1.0.0__py3-none-any.whl
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.
- plankapy/__init__.py +2 -0
- plankapy/config/templates.json +145 -0
- plankapy/plankapy.py +823 -0
- plankapy-1.0.0.dist-info/LICENSE +661 -0
- plankapy-1.0.0.dist-info/METADATA +60 -0
- plankapy-1.0.0.dist-info/RECORD +8 -0
- plankapy-1.0.0.dist-info/WHEEL +5 -0
- plankapy-1.0.0.dist-info/top_level.txt +1 -0
plankapy/__init__.py
ADDED
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
{
|
|
2
|
+
"project":
|
|
3
|
+
{
|
|
4
|
+
"name": "str"
|
|
5
|
+
},
|
|
6
|
+
"board":
|
|
7
|
+
{
|
|
8
|
+
"name": "str",
|
|
9
|
+
"type": "str",
|
|
10
|
+
"position": "int"
|
|
11
|
+
},
|
|
12
|
+
"list":
|
|
13
|
+
{
|
|
14
|
+
"name": "str",
|
|
15
|
+
"position": "int"
|
|
16
|
+
},
|
|
17
|
+
"card":
|
|
18
|
+
{
|
|
19
|
+
"name": "str",
|
|
20
|
+
"description": "str",
|
|
21
|
+
"position": "int",
|
|
22
|
+
"dueDate": "str",
|
|
23
|
+
"stopwatch": "Stopwatch"
|
|
24
|
+
},
|
|
25
|
+
"task":
|
|
26
|
+
{
|
|
27
|
+
"name": "str",
|
|
28
|
+
"isCompleted": "bool",
|
|
29
|
+
"position": "int"
|
|
30
|
+
},
|
|
31
|
+
"label":
|
|
32
|
+
{
|
|
33
|
+
"name": "str",
|
|
34
|
+
"color": "str",
|
|
35
|
+
"position": "int"
|
|
36
|
+
},
|
|
37
|
+
"card-label":
|
|
38
|
+
{
|
|
39
|
+
"cardId": "int",
|
|
40
|
+
"labelId": "int"
|
|
41
|
+
},
|
|
42
|
+
"card-membership":
|
|
43
|
+
{
|
|
44
|
+
"cardId": "int",
|
|
45
|
+
"userId": "int"
|
|
46
|
+
},
|
|
47
|
+
"board-membership":
|
|
48
|
+
{
|
|
49
|
+
"boardId": "int",
|
|
50
|
+
"userId": "int",
|
|
51
|
+
"role": "str : editor | viewer",
|
|
52
|
+
"canComment": "bool : viewer only"
|
|
53
|
+
},
|
|
54
|
+
"project-manager":
|
|
55
|
+
{
|
|
56
|
+
"projectId": "int",
|
|
57
|
+
"userId": "int"
|
|
58
|
+
},
|
|
59
|
+
"user":
|
|
60
|
+
{
|
|
61
|
+
"name": "str",
|
|
62
|
+
"email": "str",
|
|
63
|
+
"password": "str",
|
|
64
|
+
"username": "str",
|
|
65
|
+
"phone": "str",
|
|
66
|
+
"organization": "str",
|
|
67
|
+
"subscribeToOwnCards": "bool"
|
|
68
|
+
},
|
|
69
|
+
"comment-action":
|
|
70
|
+
{
|
|
71
|
+
"cardId": "str",
|
|
72
|
+
"text": "str"
|
|
73
|
+
},
|
|
74
|
+
"attachment":
|
|
75
|
+
{
|
|
76
|
+
"cardId": "int",
|
|
77
|
+
"requestId": "int"
|
|
78
|
+
},
|
|
79
|
+
"stopwatch":
|
|
80
|
+
{
|
|
81
|
+
"startedAt": "str",
|
|
82
|
+
"total": "int"
|
|
83
|
+
},
|
|
84
|
+
"background":
|
|
85
|
+
{
|
|
86
|
+
"name": "str",
|
|
87
|
+
"type": "str : background | image"
|
|
88
|
+
},
|
|
89
|
+
"gradients":
|
|
90
|
+
[
|
|
91
|
+
"old-lime",
|
|
92
|
+
"ocean-dive",
|
|
93
|
+
"tzepesch-style",
|
|
94
|
+
"jungle-mesh",
|
|
95
|
+
"strawberry-dust",
|
|
96
|
+
"purple-rose",
|
|
97
|
+
"sun-scream",
|
|
98
|
+
"warm-rust",
|
|
99
|
+
"sky-change",
|
|
100
|
+
"green-eyes",
|
|
101
|
+
"blue-xchange",
|
|
102
|
+
"blood-orange",
|
|
103
|
+
"sour-peel",
|
|
104
|
+
"green-ninja",
|
|
105
|
+
"algae-green",
|
|
106
|
+
"coral-reef",
|
|
107
|
+
"steel-grey",
|
|
108
|
+
"heat-waves",
|
|
109
|
+
"velvet-lounge",
|
|
110
|
+
"purple-rain",
|
|
111
|
+
"blue-steel",
|
|
112
|
+
"blueish-curve",
|
|
113
|
+
"prism-light",
|
|
114
|
+
"green-mist",
|
|
115
|
+
"red-curtain"
|
|
116
|
+
],
|
|
117
|
+
"colors":
|
|
118
|
+
[
|
|
119
|
+
"berry-red",
|
|
120
|
+
"pumpkin-orange",
|
|
121
|
+
"lagoon-blue",
|
|
122
|
+
"pink-tulip",
|
|
123
|
+
"light-mud",
|
|
124
|
+
"orange-peel",
|
|
125
|
+
"bright-moss",
|
|
126
|
+
"antique-blue",
|
|
127
|
+
"dark-granite",
|
|
128
|
+
"lagune-blue",
|
|
129
|
+
"sunny-grass",
|
|
130
|
+
"morning-sky",
|
|
131
|
+
"light-orange",
|
|
132
|
+
"midnight-blue",
|
|
133
|
+
"tank-green",
|
|
134
|
+
"gun-metal",
|
|
135
|
+
"wet-moss",
|
|
136
|
+
"red-burgundy",
|
|
137
|
+
"light-concrete",
|
|
138
|
+
"apricot-red",
|
|
139
|
+
"desert-sand",
|
|
140
|
+
"navy-blue",
|
|
141
|
+
"egg-yellow",
|
|
142
|
+
"coral-green",
|
|
143
|
+
"light-cocoa"
|
|
144
|
+
]
|
|
145
|
+
}
|