faros-airbyte-common 0.10.21 → 0.10.23

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.
@@ -54,57 +54,23 @@ export interface Commit {
54
54
  readonly date: string;
55
55
  readonly message: string;
56
56
  readonly type: string;
57
- readonly rendered: {
58
- readonly message: {
59
- readonly raw: string;
60
- readonly markup: string;
61
- readonly html: string;
62
- readonly type: string;
63
- };
64
- };
65
57
  readonly repository: {
66
- readonly type: string;
67
- readonly name: string;
68
58
  readonly fullName: string;
69
- readonly uuid: string;
70
- readonly links: {
71
- readonly htmlUrl: string;
72
- };
73
59
  };
74
60
  readonly links: {
75
- readonly commentsUrl: string;
76
61
  readonly htmlUrl: string;
77
- readonly diffUrl: string;
78
- readonly approveUrl: string;
79
- readonly statusesUrl: string;
80
62
  };
81
63
  readonly author: {
82
- readonly raw: string;
83
- readonly type: string;
84
64
  readonly user?: {
85
65
  readonly displayName: string;
86
66
  readonly uuid: string;
87
67
  readonly type: string;
88
- readonly nickname: string;
89
68
  readonly accountId: string;
90
69
  readonly links: {
91
70
  readonly htmlUrl: string;
92
71
  };
93
72
  };
94
73
  };
95
- readonly summary: {
96
- readonly raw: string;
97
- readonly markup: string;
98
- readonly html: string;
99
- readonly type: string;
100
- };
101
- parents: {
102
- readonly hash: string;
103
- readonly type: string;
104
- readonly links: {
105
- readonly htmlUrl: string;
106
- };
107
- }[];
108
74
  }
109
75
  export interface Deployment {
110
76
  readonly type: string;
@@ -273,6 +239,7 @@ export interface User {
273
239
  readonly links: {
274
240
  readonly htmlUrl: string;
275
241
  };
242
+ readonly workspace?: string;
276
243
  }
277
244
  export interface Pipeline {
278
245
  readonly type: string;