@teemill/projects 1.58.0 → 1.59.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/README.md +5 -2
- package/api.ts +161 -71
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +62 -6
- package/dist/api.js +129 -2
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +62 -6
- package/dist/esm/api.js +128 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/GenerateBrandContextRequest.md +22 -0
- package/docs/GenerateBrandContextRequestReferenceFileRefsInner.md +24 -0
- package/docs/ProjectUser.md +0 -2
- package/docs/ProjectsApi.md +60 -0
- package/docs/UpdateUserRequest.md +0 -2
- package/index.ts +1 -1
- package/package.json +1 -1
package/base.ts
CHANGED
package/common.ts
CHANGED
package/configuration.ts
CHANGED
package/dist/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.
|
|
5
|
+
* The version of the OpenAPI document: 1.59.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -127,6 +127,20 @@ export interface ExportTasks202Response {
|
|
|
127
127
|
*/
|
|
128
128
|
'message'?: string;
|
|
129
129
|
}
|
|
130
|
+
export interface GenerateBrandContextRequest {
|
|
131
|
+
'mainSiteUrl'?: string | null;
|
|
132
|
+
'referenceFileRefs'?: Array<GenerateBrandContextRequestReferenceFileRefsInner> | null;
|
|
133
|
+
}
|
|
134
|
+
export interface GenerateBrandContextRequestReferenceFileRefsInner {
|
|
135
|
+
'driveSrc': string;
|
|
136
|
+
'src'?: string;
|
|
137
|
+
'type': GenerateBrandContextRequestReferenceFileRefsInnerTypeEnum;
|
|
138
|
+
}
|
|
139
|
+
export declare const GenerateBrandContextRequestReferenceFileRefsInnerTypeEnum: {
|
|
140
|
+
readonly Image: "image";
|
|
141
|
+
readonly Pdf: "pdf";
|
|
142
|
+
};
|
|
143
|
+
export type GenerateBrandContextRequestReferenceFileRefsInnerTypeEnum = typeof GenerateBrandContextRequestReferenceFileRefsInnerTypeEnum[keyof typeof GenerateBrandContextRequestReferenceFileRefsInnerTypeEnum];
|
|
130
144
|
export interface GetClients200Response {
|
|
131
145
|
'clients': Array<UserClient>;
|
|
132
146
|
}
|
|
@@ -252,10 +266,6 @@ export interface ProjectUser {
|
|
|
252
266
|
'email': string;
|
|
253
267
|
'avatar': ProjectUserAvatar;
|
|
254
268
|
'twoFactorAuthentication': TwoFactorAuthentication;
|
|
255
|
-
/**
|
|
256
|
-
* Whether the user provides support for the project
|
|
257
|
-
*/
|
|
258
|
-
'providesSupport'?: boolean;
|
|
259
269
|
'lastAccessed'?: string;
|
|
260
270
|
'createdAt': string;
|
|
261
271
|
}
|
|
@@ -471,7 +481,6 @@ export interface UpdateUserRequest {
|
|
|
471
481
|
'lastName'?: string;
|
|
472
482
|
'username'?: string;
|
|
473
483
|
'avatar'?: string;
|
|
474
|
-
'providesSupport'?: boolean;
|
|
475
484
|
}
|
|
476
485
|
export interface UserClient {
|
|
477
486
|
'name': string;
|
|
@@ -650,6 +659,15 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
650
659
|
* @throws {RequiredError}
|
|
651
660
|
*/
|
|
652
661
|
exportTasks: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
662
|
+
/**
|
|
663
|
+
*
|
|
664
|
+
* @summary Generate or update brand context
|
|
665
|
+
* @param {string} project Projects unique identifier
|
|
666
|
+
* @param {GenerateBrandContextRequest} [generateBrandContextRequest] Request body to generate or update brand context
|
|
667
|
+
* @param {*} [options] Override http request option.
|
|
668
|
+
* @throws {RequiredError}
|
|
669
|
+
*/
|
|
670
|
+
generateBrandContext: (project: string, generateBrandContextRequest?: GenerateBrandContextRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
653
671
|
/**
|
|
654
672
|
* Lists the auth tokens for the project
|
|
655
673
|
* @summary List auth tokens
|
|
@@ -1084,6 +1102,15 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
|
|
|
1084
1102
|
* @throws {RequiredError}
|
|
1085
1103
|
*/
|
|
1086
1104
|
exportTasks(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
1105
|
+
/**
|
|
1106
|
+
*
|
|
1107
|
+
* @summary Generate or update brand context
|
|
1108
|
+
* @param {string} project Projects unique identifier
|
|
1109
|
+
* @param {GenerateBrandContextRequest} [generateBrandContextRequest] Request body to generate or update brand context
|
|
1110
|
+
* @param {*} [options] Override http request option.
|
|
1111
|
+
* @throws {RequiredError}
|
|
1112
|
+
*/
|
|
1113
|
+
generateBrandContext(project: string, generateBrandContextRequest?: GenerateBrandContextRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Integration>>;
|
|
1087
1114
|
/**
|
|
1088
1115
|
* Lists the auth tokens for the project
|
|
1089
1116
|
* @summary List auth tokens
|
|
@@ -1506,6 +1533,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
|
|
|
1506
1533
|
* @throws {RequiredError}
|
|
1507
1534
|
*/
|
|
1508
1535
|
exportTasks(requestParameters: ProjectsApiExportTasksRequest, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
1536
|
+
/**
|
|
1537
|
+
*
|
|
1538
|
+
* @summary Generate or update brand context
|
|
1539
|
+
* @param {ProjectsApiGenerateBrandContextRequest} requestParameters Request parameters.
|
|
1540
|
+
* @param {*} [options] Override http request option.
|
|
1541
|
+
* @throws {RequiredError}
|
|
1542
|
+
*/
|
|
1543
|
+
generateBrandContext(requestParameters: ProjectsApiGenerateBrandContextRequest, options?: RawAxiosRequestConfig): AxiosPromise<Integration>;
|
|
1509
1544
|
/**
|
|
1510
1545
|
* Lists the auth tokens for the project
|
|
1511
1546
|
* @summary List auth tokens
|
|
@@ -1956,6 +1991,19 @@ export interface ProjectsApiExportTasksRequest {
|
|
|
1956
1991
|
*/
|
|
1957
1992
|
readonly project: string;
|
|
1958
1993
|
}
|
|
1994
|
+
/**
|
|
1995
|
+
* Request parameters for generateBrandContext operation in ProjectsApi.
|
|
1996
|
+
*/
|
|
1997
|
+
export interface ProjectsApiGenerateBrandContextRequest {
|
|
1998
|
+
/**
|
|
1999
|
+
* Projects unique identifier
|
|
2000
|
+
*/
|
|
2001
|
+
readonly project: string;
|
|
2002
|
+
/**
|
|
2003
|
+
* Request body to generate or update brand context
|
|
2004
|
+
*/
|
|
2005
|
+
readonly generateBrandContextRequest?: GenerateBrandContextRequest;
|
|
2006
|
+
}
|
|
1959
2007
|
/**
|
|
1960
2008
|
* Request parameters for getAuth operation in ProjectsApi.
|
|
1961
2009
|
*/
|
|
@@ -2507,6 +2555,14 @@ export declare class ProjectsApi extends BaseAPI {
|
|
|
2507
2555
|
* @throws {RequiredError}
|
|
2508
2556
|
*/
|
|
2509
2557
|
exportTasks(requestParameters: ProjectsApiExportTasksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
|
|
2558
|
+
/**
|
|
2559
|
+
*
|
|
2560
|
+
* @summary Generate or update brand context
|
|
2561
|
+
* @param {ProjectsApiGenerateBrandContextRequest} requestParameters Request parameters.
|
|
2562
|
+
* @param {*} [options] Override http request option.
|
|
2563
|
+
* @throws {RequiredError}
|
|
2564
|
+
*/
|
|
2565
|
+
generateBrandContext(requestParameters: ProjectsApiGenerateBrandContextRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Integration, any, {}>>;
|
|
2510
2566
|
/**
|
|
2511
2567
|
* Lists the auth tokens for the project
|
|
2512
2568
|
* @summary List auth tokens
|