@teemill/projects 1.25.0 → 1.26.0

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/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage PodOS Projects
4
4
  *
5
- * The version of the OpenAPI document: 1.25.0
5
+ * The version of the OpenAPI document: 1.26.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -70,6 +70,123 @@ export interface AuthResponse {
70
70
  */
71
71
  'auth'?: Array<Auth>;
72
72
  }
73
+ /**
74
+ *
75
+ * @export
76
+ * @interface Bookmark
77
+ */
78
+ export interface Bookmark {
79
+ /**
80
+ *
81
+ * @type {string}
82
+ * @memberof Bookmark
83
+ */
84
+ 'id': string;
85
+ /**
86
+ *
87
+ * @type {string}
88
+ * @memberof Bookmark
89
+ */
90
+ 'title': string | null;
91
+ /**
92
+ *
93
+ * @type {BookmarkData}
94
+ * @memberof Bookmark
95
+ */
96
+ 'data': BookmarkData;
97
+ }
98
+ /**
99
+ * @type BookmarkData
100
+ * @export
101
+ */
102
+ export type BookmarkData = BookmarkRoute | BookmarkUrl;
103
+ /**
104
+ *
105
+ * @export
106
+ * @interface BookmarkRoute
107
+ */
108
+ export interface BookmarkRoute {
109
+ /**
110
+ *
111
+ * @type {BookmarkRouteRoute}
112
+ * @memberof BookmarkRoute
113
+ */
114
+ 'route': BookmarkRouteRoute;
115
+ }
116
+ /**
117
+ *
118
+ * @export
119
+ * @interface BookmarkRouteRoute
120
+ */
121
+ export interface BookmarkRouteRoute {
122
+ /**
123
+ *
124
+ * @type {string}
125
+ * @memberof BookmarkRouteRoute
126
+ */
127
+ 'name': string;
128
+ /**
129
+ *
130
+ * @type {{ [key: string]: any; }}
131
+ * @memberof BookmarkRouteRoute
132
+ */
133
+ 'params'?: {
134
+ [key: string]: any;
135
+ };
136
+ /**
137
+ *
138
+ * @type {{ [key: string]: any; }}
139
+ * @memberof BookmarkRouteRoute
140
+ */
141
+ 'query'?: {
142
+ [key: string]: any;
143
+ };
144
+ }
145
+ /**
146
+ *
147
+ * @export
148
+ * @interface BookmarkUrl
149
+ */
150
+ export interface BookmarkUrl {
151
+ /**
152
+ *
153
+ * @type {string}
154
+ * @memberof BookmarkUrl
155
+ */
156
+ 'url': string;
157
+ }
158
+ /**
159
+ *
160
+ * @export
161
+ * @interface Bookmarks
162
+ */
163
+ export interface Bookmarks {
164
+ /**
165
+ *
166
+ * @type {Array<Bookmark>}
167
+ * @memberof Bookmarks
168
+ */
169
+ 'bookmarks': Array<Bookmark>;
170
+ }
171
+ /**
172
+ *
173
+ * @export
174
+ * @interface CreateBookmarkRequest
175
+ */
176
+ export interface CreateBookmarkRequest {
177
+ /**
178
+ *
179
+ * @type {string}
180
+ * @memberof CreateBookmarkRequest
181
+ */
182
+ 'title'?: string;
183
+ /**
184
+ *
185
+ * @type {BookmarkData}
186
+ * @memberof CreateBookmarkRequest
187
+ */
188
+ 'data': BookmarkData;
189
+ }
73
190
  /**
74
191
  *
75
192
  * @export
@@ -648,6 +765,25 @@ export interface TemplatesResponse {
648
765
  */
649
766
  'templates': Array<Template>;
650
767
  }
768
+ /**
769
+ *
770
+ * @export
771
+ * @interface UpdateBookmarkRequest
772
+ */
773
+ export interface UpdateBookmarkRequest {
774
+ /**
775
+ *
776
+ * @type {string}
777
+ * @memberof UpdateBookmarkRequest
778
+ */
779
+ 'title'?: string;
780
+ /**
781
+ *
782
+ * @type {BookmarkData}
783
+ * @memberof UpdateBookmarkRequest
784
+ */
785
+ 'data'?: BookmarkData;
786
+ }
651
787
  /**
652
788
  *
653
789
  * @export
@@ -718,6 +854,15 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
718
854
  * @throws {RequiredError}
719
855
  */
720
856
  createAuth: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
857
+ /**
858
+ * Create a bookmark in the project
859
+ * @summary Create bookmark
860
+ * @param {string} project Projects unique identifier
861
+ * @param {CreateBookmarkRequest} createBookmarkRequest Create a new bookmark in the project
862
+ * @param {*} [options] Override http request option.
863
+ * @throws {RequiredError}
864
+ */
865
+ createBookmark: (project: string, createBookmarkRequest: CreateBookmarkRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
721
866
  /**
722
867
  * Creates an invite for the project
723
868
  * @summary Creates an invite
@@ -753,6 +898,15 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
753
898
  * @throws {RequiredError}
754
899
  */
755
900
  deleteAuth: (project: string, auth: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
901
+ /**
902
+ * Delete a bookmark in the project
903
+ * @summary Delete bookmark
904
+ * @param {string} project Projects unique identifier
905
+ * @param {string} id The unique id of the bookmark
906
+ * @param {*} [options] Override http request option.
907
+ * @throws {RequiredError}
908
+ */
909
+ deleteBookmark: (project: string, id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
756
910
  /**
757
911
  * Deletes an invite to the project
758
912
  * @summary Deletes an invite
@@ -888,6 +1042,14 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
888
1042
  * @throws {RequiredError}
889
1043
  */
890
1044
  installTemplate: (project: string, template: TemplateCode, installTemplateRequest: InstallTemplateRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1045
+ /**
1046
+ * List the bookmarks in the project
1047
+ * @summary List bookmarks
1048
+ * @param {string} project Projects unique identifier
1049
+ * @param {*} [options] Override http request option.
1050
+ * @throws {RequiredError}
1051
+ */
1052
+ listBookmarks: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
891
1053
  /**
892
1054
  * List the tasks in the workflow
893
1055
  * @summary List Tasks
@@ -915,6 +1077,16 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
915
1077
  * @throws {RequiredError}
916
1078
  */
917
1079
  uninstallIntegration: (project: string, integration: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1080
+ /**
1081
+ * Update a bookmark in the project
1082
+ * @summary Update bookmark
1083
+ * @param {string} project Projects unique identifier
1084
+ * @param {string} id The unique id of the bookmark
1085
+ * @param {UpdateBookmarkRequest} updateBookmarkRequest Update a bookmark in the project
1086
+ * @param {*} [options] Override http request option.
1087
+ * @throws {RequiredError}
1088
+ */
1089
+ updateBookmark: (project: string, id: string, updateBookmarkRequest: UpdateBookmarkRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
918
1090
  /**
919
1091
  * Update an integration on the project
920
1092
  * @summary Update integration
@@ -958,6 +1130,15 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
958
1130
  * @throws {RequiredError}
959
1131
  */
960
1132
  createAuth(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Auth>>;
1133
+ /**
1134
+ * Create a bookmark in the project
1135
+ * @summary Create bookmark
1136
+ * @param {string} project Projects unique identifier
1137
+ * @param {CreateBookmarkRequest} createBookmarkRequest Create a new bookmark in the project
1138
+ * @param {*} [options] Override http request option.
1139
+ * @throws {RequiredError}
1140
+ */
1141
+ createBookmark(project: string, createBookmarkRequest: CreateBookmarkRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bookmark>>;
961
1142
  /**
962
1143
  * Creates an invite for the project
963
1144
  * @summary Creates an invite
@@ -993,6 +1174,15 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
993
1174
  * @throws {RequiredError}
994
1175
  */
995
1176
  deleteAuth(project: string, auth: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1177
+ /**
1178
+ * Delete a bookmark in the project
1179
+ * @summary Delete bookmark
1180
+ * @param {string} project Projects unique identifier
1181
+ * @param {string} id The unique id of the bookmark
1182
+ * @param {*} [options] Override http request option.
1183
+ * @throws {RequiredError}
1184
+ */
1185
+ deleteBookmark(project: string, id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
996
1186
  /**
997
1187
  * Deletes an invite to the project
998
1188
  * @summary Deletes an invite
@@ -1128,6 +1318,14 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
1128
1318
  * @throws {RequiredError}
1129
1319
  */
1130
1320
  installTemplate(project: string, template: TemplateCode, installTemplateRequest: InstallTemplateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntegrationsResponse>>;
1321
+ /**
1322
+ * List the bookmarks in the project
1323
+ * @summary List bookmarks
1324
+ * @param {string} project Projects unique identifier
1325
+ * @param {*} [options] Override http request option.
1326
+ * @throws {RequiredError}
1327
+ */
1328
+ listBookmarks(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bookmarks>>;
1131
1329
  /**
1132
1330
  * List the tasks in the workflow
1133
1331
  * @summary List Tasks
@@ -1155,6 +1353,16 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
1155
1353
  * @throws {RequiredError}
1156
1354
  */
1157
1355
  uninstallIntegration(project: string, integration: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1356
+ /**
1357
+ * Update a bookmark in the project
1358
+ * @summary Update bookmark
1359
+ * @param {string} project Projects unique identifier
1360
+ * @param {string} id The unique id of the bookmark
1361
+ * @param {UpdateBookmarkRequest} updateBookmarkRequest Update a bookmark in the project
1362
+ * @param {*} [options] Override http request option.
1363
+ * @throws {RequiredError}
1364
+ */
1365
+ updateBookmark(project: string, id: string, updateBookmarkRequest: UpdateBookmarkRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bookmark>>;
1158
1366
  /**
1159
1367
  * Update an integration on the project
1160
1368
  * @summary Update integration
@@ -1198,6 +1406,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
1198
1406
  * @throws {RequiredError}
1199
1407
  */
1200
1408
  createAuth(requestParameters: ProjectsApiCreateAuthRequest, options?: RawAxiosRequestConfig): AxiosPromise<Auth>;
1409
+ /**
1410
+ * Create a bookmark in the project
1411
+ * @summary Create bookmark
1412
+ * @param {ProjectsApiCreateBookmarkRequest} requestParameters Request parameters.
1413
+ * @param {*} [options] Override http request option.
1414
+ * @throws {RequiredError}
1415
+ */
1416
+ createBookmark(requestParameters: ProjectsApiCreateBookmarkRequest, options?: RawAxiosRequestConfig): AxiosPromise<Bookmark>;
1201
1417
  /**
1202
1418
  * Creates an invite for the project
1203
1419
  * @summary Creates an invite
@@ -1230,6 +1446,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
1230
1446
  * @throws {RequiredError}
1231
1447
  */
1232
1448
  deleteAuth(requestParameters: ProjectsApiDeleteAuthRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
1449
+ /**
1450
+ * Delete a bookmark in the project
1451
+ * @summary Delete bookmark
1452
+ * @param {ProjectsApiDeleteBookmarkRequest} requestParameters Request parameters.
1453
+ * @param {*} [options] Override http request option.
1454
+ * @throws {RequiredError}
1455
+ */
1456
+ deleteBookmark(requestParameters: ProjectsApiDeleteBookmarkRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
1233
1457
  /**
1234
1458
  * Deletes an invite to the project
1235
1459
  * @summary Deletes an invite
@@ -1350,6 +1574,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
1350
1574
  * @throws {RequiredError}
1351
1575
  */
1352
1576
  installTemplate(requestParameters: ProjectsApiInstallTemplateRequest, options?: RawAxiosRequestConfig): AxiosPromise<IntegrationsResponse>;
1577
+ /**
1578
+ * List the bookmarks in the project
1579
+ * @summary List bookmarks
1580
+ * @param {ProjectsApiListBookmarksRequest} requestParameters Request parameters.
1581
+ * @param {*} [options] Override http request option.
1582
+ * @throws {RequiredError}
1583
+ */
1584
+ listBookmarks(requestParameters: ProjectsApiListBookmarksRequest, options?: RawAxiosRequestConfig): AxiosPromise<Bookmarks>;
1353
1585
  /**
1354
1586
  * List the tasks in the workflow
1355
1587
  * @summary List Tasks
@@ -1374,6 +1606,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
1374
1606
  * @throws {RequiredError}
1375
1607
  */
1376
1608
  uninstallIntegration(requestParameters: ProjectsApiUninstallIntegrationRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
1609
+ /**
1610
+ * Update a bookmark in the project
1611
+ * @summary Update bookmark
1612
+ * @param {ProjectsApiUpdateBookmarkRequest} requestParameters Request parameters.
1613
+ * @param {*} [options] Override http request option.
1614
+ * @throws {RequiredError}
1615
+ */
1616
+ updateBookmark(requestParameters: ProjectsApiUpdateBookmarkRequest, options?: RawAxiosRequestConfig): AxiosPromise<Bookmark>;
1377
1617
  /**
1378
1618
  * Update an integration on the project
1379
1619
  * @summary Update integration
@@ -1412,6 +1652,25 @@ export interface ProjectsApiCreateAuthRequest {
1412
1652
  */
1413
1653
  readonly project: string;
1414
1654
  }
1655
+ /**
1656
+ * Request parameters for createBookmark operation in ProjectsApi.
1657
+ * @export
1658
+ * @interface ProjectsApiCreateBookmarkRequest
1659
+ */
1660
+ export interface ProjectsApiCreateBookmarkRequest {
1661
+ /**
1662
+ * Projects unique identifier
1663
+ * @type {string}
1664
+ * @memberof ProjectsApiCreateBookmark
1665
+ */
1666
+ readonly project: string;
1667
+ /**
1668
+ * Create a new bookmark in the project
1669
+ * @type {CreateBookmarkRequest}
1670
+ * @memberof ProjectsApiCreateBookmark
1671
+ */
1672
+ readonly createBookmarkRequest: CreateBookmarkRequest;
1673
+ }
1415
1674
  /**
1416
1675
  * Request parameters for createInvite operation in ProjectsApi.
1417
1676
  * @export
@@ -1482,6 +1741,25 @@ export interface ProjectsApiDeleteAuthRequest {
1482
1741
  */
1483
1742
  readonly auth: string;
1484
1743
  }
1744
+ /**
1745
+ * Request parameters for deleteBookmark operation in ProjectsApi.
1746
+ * @export
1747
+ * @interface ProjectsApiDeleteBookmarkRequest
1748
+ */
1749
+ export interface ProjectsApiDeleteBookmarkRequest {
1750
+ /**
1751
+ * Projects unique identifier
1752
+ * @type {string}
1753
+ * @memberof ProjectsApiDeleteBookmark
1754
+ */
1755
+ readonly project: string;
1756
+ /**
1757
+ * The unique id of the bookmark
1758
+ * @type {string}
1759
+ * @memberof ProjectsApiDeleteBookmark
1760
+ */
1761
+ readonly id: string;
1762
+ }
1485
1763
  /**
1486
1764
  * Request parameters for deleteInvite operation in ProjectsApi.
1487
1765
  * @export
@@ -1767,6 +2045,19 @@ export interface ProjectsApiInstallTemplateRequest {
1767
2045
  */
1768
2046
  readonly installTemplateRequest: InstallTemplateRequest;
1769
2047
  }
2048
+ /**
2049
+ * Request parameters for listBookmarks operation in ProjectsApi.
2050
+ * @export
2051
+ * @interface ProjectsApiListBookmarksRequest
2052
+ */
2053
+ export interface ProjectsApiListBookmarksRequest {
2054
+ /**
2055
+ * Projects unique identifier
2056
+ * @type {string}
2057
+ * @memberof ProjectsApiListBookmarks
2058
+ */
2059
+ readonly project: string;
2060
+ }
1770
2061
  /**
1771
2062
  * Request parameters for listTasks operation in ProjectsApi.
1772
2063
  * @export
@@ -1824,6 +2115,31 @@ export interface ProjectsApiUninstallIntegrationRequest {
1824
2115
  */
1825
2116
  readonly integration: string;
1826
2117
  }
2118
+ /**
2119
+ * Request parameters for updateBookmark operation in ProjectsApi.
2120
+ * @export
2121
+ * @interface ProjectsApiUpdateBookmarkRequest
2122
+ */
2123
+ export interface ProjectsApiUpdateBookmarkRequest {
2124
+ /**
2125
+ * Projects unique identifier
2126
+ * @type {string}
2127
+ * @memberof ProjectsApiUpdateBookmark
2128
+ */
2129
+ readonly project: string;
2130
+ /**
2131
+ * The unique id of the bookmark
2132
+ * @type {string}
2133
+ * @memberof ProjectsApiUpdateBookmark
2134
+ */
2135
+ readonly id: string;
2136
+ /**
2137
+ * Update a bookmark in the project
2138
+ * @type {UpdateBookmarkRequest}
2139
+ * @memberof ProjectsApiUpdateBookmark
2140
+ */
2141
+ readonly updateBookmarkRequest: UpdateBookmarkRequest;
2142
+ }
1827
2143
  /**
1828
2144
  * Request parameters for updateIntegration operation in ProjectsApi.
1829
2145
  * @export
@@ -1909,6 +2225,15 @@ export declare class ProjectsApi extends BaseAPI {
1909
2225
  * @memberof ProjectsApi
1910
2226
  */
1911
2227
  createAuth(requestParameters: ProjectsApiCreateAuthRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Auth, any>>;
2228
+ /**
2229
+ * Create a bookmark in the project
2230
+ * @summary Create bookmark
2231
+ * @param {ProjectsApiCreateBookmarkRequest} requestParameters Request parameters.
2232
+ * @param {*} [options] Override http request option.
2233
+ * @throws {RequiredError}
2234
+ * @memberof ProjectsApi
2235
+ */
2236
+ createBookmark(requestParameters: ProjectsApiCreateBookmarkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bookmark, any>>;
1912
2237
  /**
1913
2238
  * Creates an invite for the project
1914
2239
  * @summary Creates an invite
@@ -1945,6 +2270,15 @@ export declare class ProjectsApi extends BaseAPI {
1945
2270
  * @memberof ProjectsApi
1946
2271
  */
1947
2272
  deleteAuth(requestParameters: ProjectsApiDeleteAuthRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2273
+ /**
2274
+ * Delete a bookmark in the project
2275
+ * @summary Delete bookmark
2276
+ * @param {ProjectsApiDeleteBookmarkRequest} requestParameters Request parameters.
2277
+ * @param {*} [options] Override http request option.
2278
+ * @throws {RequiredError}
2279
+ * @memberof ProjectsApi
2280
+ */
2281
+ deleteBookmark(requestParameters: ProjectsApiDeleteBookmarkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
1948
2282
  /**
1949
2283
  * Deletes an invite to the project
1950
2284
  * @summary Deletes an invite
@@ -2080,6 +2414,15 @@ export declare class ProjectsApi extends BaseAPI {
2080
2414
  * @memberof ProjectsApi
2081
2415
  */
2082
2416
  installTemplate(requestParameters: ProjectsApiInstallTemplateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntegrationsResponse, any>>;
2417
+ /**
2418
+ * List the bookmarks in the project
2419
+ * @summary List bookmarks
2420
+ * @param {ProjectsApiListBookmarksRequest} requestParameters Request parameters.
2421
+ * @param {*} [options] Override http request option.
2422
+ * @throws {RequiredError}
2423
+ * @memberof ProjectsApi
2424
+ */
2425
+ listBookmarks(requestParameters: ProjectsApiListBookmarksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bookmarks, any>>;
2083
2426
  /**
2084
2427
  * List the tasks in the workflow
2085
2428
  * @summary List Tasks
@@ -2107,6 +2450,15 @@ export declare class ProjectsApi extends BaseAPI {
2107
2450
  * @memberof ProjectsApi
2108
2451
  */
2109
2452
  uninstallIntegration(requestParameters: ProjectsApiUninstallIntegrationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2453
+ /**
2454
+ * Update a bookmark in the project
2455
+ * @summary Update bookmark
2456
+ * @param {ProjectsApiUpdateBookmarkRequest} requestParameters Request parameters.
2457
+ * @param {*} [options] Override http request option.
2458
+ * @throws {RequiredError}
2459
+ * @memberof ProjectsApi
2460
+ */
2461
+ updateBookmark(requestParameters: ProjectsApiUpdateBookmarkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bookmark, any>>;
2110
2462
  /**
2111
2463
  * Update an integration on the project
2112
2464
  * @summary Update integration