airbyte-source-gitlab 4.0.1__py3-none-any.whl → 4.0.3__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.
- {airbyte_source_gitlab-4.0.1.dist-info → airbyte_source_gitlab-4.0.3.dist-info}/METADATA +26 -12
- airbyte_source_gitlab-4.0.3.dist-info/RECORD +35 -0
- source_gitlab/schemas/branches.json +11 -0
- source_gitlab/schemas/commits.json +21 -0
- source_gitlab/schemas/deployments.json +61 -0
- source_gitlab/schemas/epic_issues.json +51 -0
- source_gitlab/schemas/epics.json +39 -0
- source_gitlab/schemas/group_issue_boards.json +21 -0
- source_gitlab/schemas/group_labels.json +11 -0
- source_gitlab/schemas/group_milestones.json +12 -0
- source_gitlab/schemas/groups.json +51 -0
- source_gitlab/schemas/issues.json +87 -0
- source_gitlab/schemas/jobs.json +31 -0
- source_gitlab/schemas/merge_request_commits.json +22 -0
- source_gitlab/schemas/merge_requests.json +60 -0
- source_gitlab/schemas/pipelines.json +11 -0
- source_gitlab/schemas/pipelines_extended.json +29 -0
- source_gitlab/schemas/project_labels.json +13 -0
- source_gitlab/schemas/project_milestones.json +12 -0
- source_gitlab/schemas/projects.json +163 -0
- source_gitlab/schemas/releases.json +22 -0
- source_gitlab/schemas/tags.json +10 -0
- source_gitlab/schemas/users.json +7 -0
- airbyte_source_gitlab-4.0.1.dist-info/RECORD +0 -35
- {airbyte_source_gitlab-4.0.1.dist-info → airbyte_source_gitlab-4.0.3.dist-info}/WHEEL +0 -0
- {airbyte_source_gitlab-4.0.1.dist-info → airbyte_source_gitlab-4.0.3.dist-info}/entry_points.txt +0 -0
@@ -3,83 +3,105 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"name": {
|
6
|
+
"description": "Name of the release",
|
6
7
|
"type": ["null", "string"]
|
7
8
|
},
|
8
9
|
"tag_name": {
|
10
|
+
"description": "Name of the tag associated with the release",
|
9
11
|
"type": ["null", "string"]
|
10
12
|
},
|
11
13
|
"description": {
|
14
|
+
"description": "Description of the release",
|
12
15
|
"type": ["null", "string"]
|
13
16
|
},
|
14
17
|
"created_at": {
|
18
|
+
"description": "Date and time when the release was created",
|
15
19
|
"type": ["null", "string"],
|
16
20
|
"format": "date-time"
|
17
21
|
},
|
18
22
|
"released_at": {
|
23
|
+
"description": "Date and time when the release was published",
|
19
24
|
"type": ["null", "string"],
|
20
25
|
"format": "date-time"
|
21
26
|
},
|
22
27
|
"upcoming_release": {
|
28
|
+
"description": "Indicator if the release is an upcoming release",
|
23
29
|
"type": ["null", "boolean"]
|
24
30
|
},
|
25
31
|
"milestones": {
|
32
|
+
"description": "List of milestones related to the release",
|
26
33
|
"type": ["null", "array"],
|
27
34
|
"items": {
|
28
35
|
"type": "integer"
|
29
36
|
}
|
30
37
|
},
|
31
38
|
"commit_path": {
|
39
|
+
"description": "Path to the commit related to the release",
|
32
40
|
"type": ["null", "string"]
|
33
41
|
},
|
34
42
|
"tag_path": {
|
43
|
+
"description": "Path to the tag associated with the release",
|
35
44
|
"type": ["null", "string"]
|
36
45
|
},
|
37
46
|
"assets": {
|
47
|
+
"description": "Information about assets related to the release",
|
38
48
|
"type": ["null", "object"],
|
39
49
|
"properties": {
|
40
50
|
"count": {
|
51
|
+
"description": "Number of assets in the release",
|
41
52
|
"type": ["null", "integer"]
|
42
53
|
},
|
43
54
|
"sources": {
|
55
|
+
"description": "List of sources for the assets",
|
44
56
|
"type": ["null", "array"],
|
45
57
|
"items": {
|
46
58
|
"type": "object",
|
47
59
|
"properties": {
|
48
60
|
"format": {
|
61
|
+
"description": "Format of the asset",
|
49
62
|
"type": ["null", "string"]
|
50
63
|
},
|
51
64
|
"url": {
|
65
|
+
"description": "URL of the asset file",
|
52
66
|
"type": ["null", "string"]
|
53
67
|
}
|
54
68
|
}
|
55
69
|
}
|
56
70
|
},
|
57
71
|
"links": {
|
72
|
+
"description": "Links related to the assets",
|
58
73
|
"type": "array"
|
59
74
|
}
|
60
75
|
}
|
61
76
|
},
|
62
77
|
"evidences": {
|
78
|
+
"description": "Any evidences associated with the release",
|
63
79
|
"type": ["null", "array"]
|
64
80
|
},
|
65
81
|
"_links": {
|
82
|
+
"description": "Links related to the releases data",
|
66
83
|
"type": ["null", "object"]
|
67
84
|
},
|
68
85
|
"author": {
|
86
|
+
"description": "Name of the author of the release",
|
69
87
|
"type": ["null", "object"],
|
70
88
|
"additionalProperties": true
|
71
89
|
},
|
72
90
|
"author_id": {
|
91
|
+
"description": "ID of the author of the release",
|
73
92
|
"type": ["null", "integer"]
|
74
93
|
},
|
75
94
|
"commit": {
|
95
|
+
"description": "Commit details related to the release",
|
76
96
|
"type": ["null", "object"],
|
77
97
|
"additionalProperties": true
|
78
98
|
},
|
79
99
|
"commit_id": {
|
100
|
+
"description": "ID of the commit related to the release",
|
80
101
|
"type": ["null", "string"]
|
81
102
|
},
|
82
103
|
"project_id": {
|
104
|
+
"description": "ID of the project associated with the release",
|
83
105
|
"type": ["null", "integer"]
|
84
106
|
}
|
85
107
|
}
|
source_gitlab/schemas/tags.json
CHANGED
@@ -3,36 +3,46 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"name": {
|
6
|
+
"description": "The name of the tag.",
|
6
7
|
"type": ["null", "string"]
|
7
8
|
},
|
8
9
|
"message": {
|
10
|
+
"description": "The message or description of the tag.",
|
9
11
|
"type": ["null", "string"]
|
10
12
|
},
|
11
13
|
"target": {
|
14
|
+
"description": "The target or object that the tag points to.",
|
12
15
|
"type": ["null", "string"]
|
13
16
|
},
|
14
17
|
"release": {
|
18
|
+
"description": "Details about the release associated with the tag.",
|
15
19
|
"type": ["null", "object"],
|
16
20
|
"properties": {
|
17
21
|
"tag_name": {
|
22
|
+
"description": "The name of the release tag.",
|
18
23
|
"type": ["null", "string"]
|
19
24
|
},
|
20
25
|
"description": {
|
26
|
+
"description": "Description of the release.",
|
21
27
|
"type": ["null", "string"]
|
22
28
|
}
|
23
29
|
}
|
24
30
|
},
|
25
31
|
"protected": {
|
32
|
+
"description": "Indicates whether the tag is protected.",
|
26
33
|
"type": ["null", "boolean"]
|
27
34
|
},
|
28
35
|
"commit": {
|
36
|
+
"description": "Details about the commit associated with the tag.",
|
29
37
|
"type": ["null", "object"],
|
30
38
|
"additionalProperties": true
|
31
39
|
},
|
32
40
|
"commit_id": {
|
41
|
+
"description": "Unique identifier for the commit associated with the tag.",
|
33
42
|
"type": ["null", "string"]
|
34
43
|
},
|
35
44
|
"project_id": {
|
45
|
+
"description": "Unique identifier of the project to which the tag belongs.",
|
36
46
|
"type": ["null", "integer"]
|
37
47
|
}
|
38
48
|
}
|
source_gitlab/schemas/users.json
CHANGED
@@ -3,24 +3,31 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"id": {
|
6
|
+
"description": "Unique identification number for the user",
|
6
7
|
"type": ["null", "integer"]
|
7
8
|
},
|
8
9
|
"name": {
|
10
|
+
"description": "Full name of the user",
|
9
11
|
"type": ["null", "string"]
|
10
12
|
},
|
11
13
|
"username": {
|
14
|
+
"description": "Unique username chosen by the user",
|
12
15
|
"type": ["null", "string"]
|
13
16
|
},
|
14
17
|
"state": {
|
18
|
+
"description": "Current state of the user's account (e.g., active, blocked)",
|
15
19
|
"type": ["null", "string"]
|
16
20
|
},
|
17
21
|
"avatar_url": {
|
22
|
+
"description": "URL of the user's avatar image",
|
18
23
|
"type": ["null", "string"]
|
19
24
|
},
|
20
25
|
"web_url": {
|
26
|
+
"description": "URL of the user's profile page on the Gitlab platform",
|
21
27
|
"type": ["null", "string"]
|
22
28
|
},
|
23
29
|
"locked": {
|
30
|
+
"description": "Boolean flag indicating if the user's account is locked",
|
24
31
|
"type": ["null", "boolean"]
|
25
32
|
}
|
26
33
|
}
|
@@ -1,35 +0,0 @@
|
|
1
|
-
source_gitlab/__init__.py,sha256=Bip0P3F1yGxbb0nNwdTE8i98KtkuTT_MzZbMeSxziBM,1134
|
2
|
-
source_gitlab/components/partition_routers.py,sha256=tu8gl2FoBCic6xohSbZr1YTdOAEyczQyZqMSBomhEG8,2054
|
3
|
-
source_gitlab/config_migrations.py,sha256=K6Bg8zh4Zz1U9QlilRyAC1oy8RQJOOsVhh62jVIPTrY,3816
|
4
|
-
source_gitlab/manifest.yaml,sha256=n0a-CfKB9OmsKD9fCYYGW8S8tt5nfg2VfebMPQbw9fM,20615
|
5
|
-
source_gitlab/run.py,sha256=opjAlKxINNpsekbyOYAAxh25DxI7gTKg5ohJmDwe0q0,403
|
6
|
-
source_gitlab/schemas/branches.json,sha256=iQMHidNwdx2g4UgfkeOZPhpG67K--S2jPM-XLBPhJb8,800
|
7
|
-
source_gitlab/schemas/commits.json,sha256=2VgI6Ih5lrzzeuIacVNqigM8RwR93u2cEwD21LmEpvU,1676
|
8
|
-
source_gitlab/schemas/deployments.json,sha256=GDnm625zWbz4YDTBI4x8_jeuIRcUn5LZLK8tP6ZHewo,5084
|
9
|
-
source_gitlab/schemas/epic_issues.json,sha256=TsRZr_YDqzLJCY2lcy-wvpQTlai2UHILaq2IG4f5w8k,5472
|
10
|
-
source_gitlab/schemas/epics.json,sha256=XceeYZDyqeqiZsRYhwn472YHh4ZE2fsog_bIOuk_YQI,2790
|
11
|
-
source_gitlab/schemas/group_issue_boards.json,sha256=CWr80x0rN0HGg_wI6Bi2ogKCqtRqZONK_0ol2W5R1jk,1687
|
12
|
-
source_gitlab/schemas/group_labels.json,sha256=bthJK3U3vUvOfTPQaXINgzQmVba7K1fDeMvl6aCI8GQ,785
|
13
|
-
source_gitlab/schemas/group_members.json,sha256=5NbL5GzDrEWyM3RGsQ1Yk30FHaT8N9w99-mUYkVyVXY,1261
|
14
|
-
source_gitlab/schemas/group_milestones.json,sha256=qdmCjvcqO5gdMy5Eos8zPvct0wKQkx8qgbk37ZE-Mgg,898
|
15
|
-
source_gitlab/schemas/groups.json,sha256=My48VM9tUuuEr-nu6tKweTn5NohVBeze3kk2zJtVdok,4148
|
16
|
-
source_gitlab/schemas/issues.json,sha256=47jGc7XXUJuIC99PGfV_ez57VZZSEWiZIf_kgniG2MM,6304
|
17
|
-
source_gitlab/schemas/jobs.json,sha256=yX5SnTg8z0iGInFjJ9WDMjD-3l70epwzKn4WrqClV4E,2275
|
18
|
-
source_gitlab/schemas/merge_request_commits.json,sha256=WyBDimMVUOaRcL5dOT3DBiu3nV4cGAqJqnc2S2kAKE4,1744
|
19
|
-
source_gitlab/schemas/merge_requests.json,sha256=qycpaRi_0l50vLUJflpbIheskeMZ1DQCtT-KHHOsjh0,4388
|
20
|
-
source_gitlab/schemas/pipelines.json,sha256=jcI4ucib_OipiXhsjzEUvECX301uHF8sPE7X2PanosY,777
|
21
|
-
source_gitlab/schemas/pipelines_extended.json,sha256=IG_RMwdBhJ7rslhVGXQjC_u9CC02Ttvhf4P7H2IesQQ,2041
|
22
|
-
source_gitlab/schemas/project_labels.json,sha256=uNvsTB3PiEsyb-iAr4qfCH4swYzoEpnsNjEahgRLqZQ,913
|
23
|
-
source_gitlab/schemas/project_members.json,sha256=TACxu3MWiteGh2oy1-MGlGmjPhsN3vHqrdmACT2Bzwo,1263
|
24
|
-
source_gitlab/schemas/project_milestones.json,sha256=18lSl2h-IMYkpc13DF86jQ7fODI5yZd4ad6eaiGlicQ,900
|
25
|
-
source_gitlab/schemas/projects.json,sha256=V9Plxh9SB-zPxH8wOTSgOhHm4BPb4XS87RqUYN5bf9c,12131
|
26
|
-
source_gitlab/schemas/releases.json,sha256=NfDIhLN2DBZhXjhn_5Xbw8PUO2e5KRgeiU8HgjsSoXU,1781
|
27
|
-
source_gitlab/schemas/tags.json,sha256=uyRFTJF2d9z2tbIp69NhkJmrRMmaEuHEdSagP99iqjw,771
|
28
|
-
source_gitlab/schemas/users.json,sha256=h89E6ZHQWbwU_MhErTZTtfiIZjF6aLAbHZQJ8TCTLY8,496
|
29
|
-
source_gitlab/source.py,sha256=Gc17C7D_cazqOdnVEIUNwRYYucDzNXrsGXqXnZy8CN8,1093
|
30
|
-
source_gitlab/spec.json,sha256=0eit0zD-6kdcaNhJ1sAf0ABgIUwnlPV87Sbu3A4JvG0,6132
|
31
|
-
source_gitlab/utils.py,sha256=idtKZiT-ILRRtpO0rxPJ1wim-mWN6ewzN_KgLCmogBs,456
|
32
|
-
airbyte_source_gitlab-4.0.1.dist-info/METADATA,sha256=HYXjnOyqR16tnvzGxD1Wpi6qtNc87480IJ_4QjosROc,5234
|
33
|
-
airbyte_source_gitlab-4.0.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
34
|
-
airbyte_source_gitlab-4.0.1.dist-info/entry_points.txt,sha256=sbp4881P3oluHtnFDy4ZCVHDfL5fIkVQhJ7vka_qzTc,55
|
35
|
-
airbyte_source_gitlab-4.0.1.dist-info/RECORD,,
|
File without changes
|
{airbyte_source_gitlab-4.0.1.dist-info → airbyte_source_gitlab-4.0.3.dist-info}/entry_points.txt
RENAMED
File without changes
|