@gooddata/api-client-tiger 11.47.0 → 11.48.0-alpha.1
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/esm/__version.d.ts +1 -1
- package/esm/__version.d.ts.map +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +3035 -3
- package/esm/endpoints/entitiesObjects/index.d.ts +1 -1
- package/esm/endpoints/entitiesObjects/index.d.ts.map +1 -1
- package/esm/endpoints/entitiesObjects/index.js +4 -0
- package/esm/generated/ai-json-api/api.d.ts +3 -2
- package/esm/generated/ai-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +2890 -0
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +3449 -541
- package/esm/generated/result-json-api/base.d.ts.map +1 -1
- package/esm/generated/result-json-api/base.js +1 -1
- package/esm/index.d.ts +1 -1
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +1 -1
- package/esm/metadataUtilities.d.ts +2 -2
- package/esm/metadataUtilities.d.ts.map +1 -1
- package/package.json +4 -4
|
@@ -9097,6 +9097,112 @@ export interface JsonApiWorkspaceAutomationOutWithLinks {
|
|
|
9097
9097
|
'links'?: ObjectLinks;
|
|
9098
9098
|
}
|
|
9099
9099
|
export type JsonApiWorkspaceAutomationOutWithLinksTypeEnum = 'workspaceAutomation';
|
|
9100
|
+
/**
|
|
9101
|
+
* JSON:API representation of workspaceColorPalette entity.
|
|
9102
|
+
*/
|
|
9103
|
+
export interface JsonApiWorkspaceColorPaletteIn {
|
|
9104
|
+
'attributes': JsonApiWorkspaceColorPaletteInAttributes;
|
|
9105
|
+
/**
|
|
9106
|
+
* API identifier of an object
|
|
9107
|
+
*/
|
|
9108
|
+
'id': string;
|
|
9109
|
+
/**
|
|
9110
|
+
* Object type
|
|
9111
|
+
*/
|
|
9112
|
+
'type': JsonApiWorkspaceColorPaletteInTypeEnum;
|
|
9113
|
+
}
|
|
9114
|
+
export type JsonApiWorkspaceColorPaletteInTypeEnum = 'workspaceColorPalette';
|
|
9115
|
+
export interface JsonApiWorkspaceColorPaletteInAttributes {
|
|
9116
|
+
/**
|
|
9117
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
9118
|
+
*/
|
|
9119
|
+
'content': object;
|
|
9120
|
+
'name': string;
|
|
9121
|
+
}
|
|
9122
|
+
export interface JsonApiWorkspaceColorPaletteInDocument {
|
|
9123
|
+
'data': JsonApiWorkspaceColorPaletteIn;
|
|
9124
|
+
}
|
|
9125
|
+
/**
|
|
9126
|
+
* JSON:API representation of workspaceColorPalette entity.
|
|
9127
|
+
*/
|
|
9128
|
+
export interface JsonApiWorkspaceColorPaletteOut {
|
|
9129
|
+
'attributes': JsonApiWorkspaceColorPaletteInAttributes;
|
|
9130
|
+
/**
|
|
9131
|
+
* API identifier of an object
|
|
9132
|
+
*/
|
|
9133
|
+
'id': string;
|
|
9134
|
+
'meta'?: JsonApiWorkspaceColorPaletteOutMeta;
|
|
9135
|
+
/**
|
|
9136
|
+
* Object type
|
|
9137
|
+
*/
|
|
9138
|
+
'type': JsonApiWorkspaceColorPaletteOutTypeEnum;
|
|
9139
|
+
}
|
|
9140
|
+
export type JsonApiWorkspaceColorPaletteOutTypeEnum = 'workspaceColorPalette';
|
|
9141
|
+
export interface JsonApiWorkspaceColorPaletteOutDocument {
|
|
9142
|
+
'data': JsonApiWorkspaceColorPaletteOut;
|
|
9143
|
+
'links'?: ObjectLinks;
|
|
9144
|
+
}
|
|
9145
|
+
/**
|
|
9146
|
+
* A JSON:API document with a list of resources
|
|
9147
|
+
*/
|
|
9148
|
+
export interface JsonApiWorkspaceColorPaletteOutList {
|
|
9149
|
+
'data': Array<JsonApiWorkspaceColorPaletteOutWithLinks>;
|
|
9150
|
+
'links'?: ListLinks;
|
|
9151
|
+
'meta'?: JsonApiAgentOutListMeta;
|
|
9152
|
+
}
|
|
9153
|
+
export interface JsonApiWorkspaceColorPaletteOutMeta {
|
|
9154
|
+
'origin'?: JsonApiWorkspaceColorPaletteOutMetaOrigin;
|
|
9155
|
+
}
|
|
9156
|
+
export interface JsonApiWorkspaceColorPaletteOutMetaOrigin {
|
|
9157
|
+
/**
|
|
9158
|
+
* defines id of the workspace where the entity comes from
|
|
9159
|
+
*/
|
|
9160
|
+
'originId': string;
|
|
9161
|
+
/**
|
|
9162
|
+
* defines type of the origin of the entity
|
|
9163
|
+
*/
|
|
9164
|
+
'originType': JsonApiWorkspaceColorPaletteOutMetaOriginOriginTypeEnum;
|
|
9165
|
+
}
|
|
9166
|
+
export type JsonApiWorkspaceColorPaletteOutMetaOriginOriginTypeEnum = 'NATIVE' | 'PARENT';
|
|
9167
|
+
export interface JsonApiWorkspaceColorPaletteOutWithLinks {
|
|
9168
|
+
'attributes': JsonApiWorkspaceColorPaletteInAttributes;
|
|
9169
|
+
/**
|
|
9170
|
+
* API identifier of an object
|
|
9171
|
+
*/
|
|
9172
|
+
'id': string;
|
|
9173
|
+
'meta'?: JsonApiWorkspaceColorPaletteOutMeta;
|
|
9174
|
+
/**
|
|
9175
|
+
* Object type
|
|
9176
|
+
*/
|
|
9177
|
+
'type': JsonApiWorkspaceColorPaletteOutWithLinksTypeEnum;
|
|
9178
|
+
'links'?: ObjectLinks;
|
|
9179
|
+
}
|
|
9180
|
+
export type JsonApiWorkspaceColorPaletteOutWithLinksTypeEnum = 'workspaceColorPalette';
|
|
9181
|
+
/**
|
|
9182
|
+
* JSON:API representation of patching workspaceColorPalette entity.
|
|
9183
|
+
*/
|
|
9184
|
+
export interface JsonApiWorkspaceColorPalettePatch {
|
|
9185
|
+
'attributes': JsonApiWorkspaceColorPalettePatchAttributes;
|
|
9186
|
+
/**
|
|
9187
|
+
* API identifier of an object
|
|
9188
|
+
*/
|
|
9189
|
+
'id': string;
|
|
9190
|
+
/**
|
|
9191
|
+
* Object type
|
|
9192
|
+
*/
|
|
9193
|
+
'type': JsonApiWorkspaceColorPalettePatchTypeEnum;
|
|
9194
|
+
}
|
|
9195
|
+
export type JsonApiWorkspaceColorPalettePatchTypeEnum = 'workspaceColorPalette';
|
|
9196
|
+
export interface JsonApiWorkspaceColorPalettePatchAttributes {
|
|
9197
|
+
/**
|
|
9198
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
9199
|
+
*/
|
|
9200
|
+
'content'?: object;
|
|
9201
|
+
'name'?: string;
|
|
9202
|
+
}
|
|
9203
|
+
export interface JsonApiWorkspaceColorPalettePatchDocument {
|
|
9204
|
+
'data': JsonApiWorkspaceColorPalettePatch;
|
|
9205
|
+
}
|
|
9100
9206
|
/**
|
|
9101
9207
|
* JSON:API representation of workspaceDataFilter entity.
|
|
9102
9208
|
*/
|
|
@@ -9746,6 +9852,84 @@ export type JsonApiWorkspaceSettingPostOptionalIdTypeEnum = 'workspaceSetting';
|
|
|
9746
9852
|
export interface JsonApiWorkspaceSettingPostOptionalIdDocument {
|
|
9747
9853
|
'data': JsonApiWorkspaceSettingPostOptionalId;
|
|
9748
9854
|
}
|
|
9855
|
+
/**
|
|
9856
|
+
* JSON:API representation of workspaceTheme entity.
|
|
9857
|
+
*/
|
|
9858
|
+
export interface JsonApiWorkspaceThemeIn {
|
|
9859
|
+
'attributes': JsonApiWorkspaceColorPaletteInAttributes;
|
|
9860
|
+
/**
|
|
9861
|
+
* API identifier of an object
|
|
9862
|
+
*/
|
|
9863
|
+
'id': string;
|
|
9864
|
+
/**
|
|
9865
|
+
* Object type
|
|
9866
|
+
*/
|
|
9867
|
+
'type': JsonApiWorkspaceThemeInTypeEnum;
|
|
9868
|
+
}
|
|
9869
|
+
export type JsonApiWorkspaceThemeInTypeEnum = 'workspaceTheme';
|
|
9870
|
+
export interface JsonApiWorkspaceThemeInDocument {
|
|
9871
|
+
'data': JsonApiWorkspaceThemeIn;
|
|
9872
|
+
}
|
|
9873
|
+
/**
|
|
9874
|
+
* JSON:API representation of workspaceTheme entity.
|
|
9875
|
+
*/
|
|
9876
|
+
export interface JsonApiWorkspaceThemeOut {
|
|
9877
|
+
'attributes': JsonApiWorkspaceColorPaletteInAttributes;
|
|
9878
|
+
/**
|
|
9879
|
+
* API identifier of an object
|
|
9880
|
+
*/
|
|
9881
|
+
'id': string;
|
|
9882
|
+
'meta'?: JsonApiWorkspaceColorPaletteOutMeta;
|
|
9883
|
+
/**
|
|
9884
|
+
* Object type
|
|
9885
|
+
*/
|
|
9886
|
+
'type': JsonApiWorkspaceThemeOutTypeEnum;
|
|
9887
|
+
}
|
|
9888
|
+
export type JsonApiWorkspaceThemeOutTypeEnum = 'workspaceTheme';
|
|
9889
|
+
export interface JsonApiWorkspaceThemeOutDocument {
|
|
9890
|
+
'data': JsonApiWorkspaceThemeOut;
|
|
9891
|
+
'links'?: ObjectLinks;
|
|
9892
|
+
}
|
|
9893
|
+
/**
|
|
9894
|
+
* A JSON:API document with a list of resources
|
|
9895
|
+
*/
|
|
9896
|
+
export interface JsonApiWorkspaceThemeOutList {
|
|
9897
|
+
'data': Array<JsonApiWorkspaceThemeOutWithLinks>;
|
|
9898
|
+
'links'?: ListLinks;
|
|
9899
|
+
'meta'?: JsonApiAgentOutListMeta;
|
|
9900
|
+
}
|
|
9901
|
+
export interface JsonApiWorkspaceThemeOutWithLinks {
|
|
9902
|
+
'attributes': JsonApiWorkspaceColorPaletteInAttributes;
|
|
9903
|
+
/**
|
|
9904
|
+
* API identifier of an object
|
|
9905
|
+
*/
|
|
9906
|
+
'id': string;
|
|
9907
|
+
'meta'?: JsonApiWorkspaceColorPaletteOutMeta;
|
|
9908
|
+
/**
|
|
9909
|
+
* Object type
|
|
9910
|
+
*/
|
|
9911
|
+
'type': JsonApiWorkspaceThemeOutWithLinksTypeEnum;
|
|
9912
|
+
'links'?: ObjectLinks;
|
|
9913
|
+
}
|
|
9914
|
+
export type JsonApiWorkspaceThemeOutWithLinksTypeEnum = 'workspaceTheme';
|
|
9915
|
+
/**
|
|
9916
|
+
* JSON:API representation of patching workspaceTheme entity.
|
|
9917
|
+
*/
|
|
9918
|
+
export interface JsonApiWorkspaceThemePatch {
|
|
9919
|
+
'attributes': JsonApiWorkspaceColorPalettePatchAttributes;
|
|
9920
|
+
/**
|
|
9921
|
+
* API identifier of an object
|
|
9922
|
+
*/
|
|
9923
|
+
'id': string;
|
|
9924
|
+
/**
|
|
9925
|
+
* Object type
|
|
9926
|
+
*/
|
|
9927
|
+
'type': JsonApiWorkspaceThemePatchTypeEnum;
|
|
9928
|
+
}
|
|
9929
|
+
export type JsonApiWorkspaceThemePatchTypeEnum = 'workspaceTheme';
|
|
9930
|
+
export interface JsonApiWorkspaceThemePatchDocument {
|
|
9931
|
+
'data': JsonApiWorkspaceThemePatch;
|
|
9932
|
+
}
|
|
9749
9933
|
/**
|
|
9750
9934
|
* A label identifier.
|
|
9751
9935
|
*/
|
|
@@ -18152,6 +18336,28 @@ export declare function AppearanceApiAxiosParamCreator_CreateEntityColorPalettes
|
|
|
18152
18336
|
* @throws {RequiredError}
|
|
18153
18337
|
*/
|
|
18154
18338
|
export declare function AppearanceApiAxiosParamCreator_CreateEntityThemes(jsonApiThemeInDocument: JsonApiThemeInDocument, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
18339
|
+
/**
|
|
18340
|
+
*
|
|
18341
|
+
* @summary Post Workspace Color Palette
|
|
18342
|
+
* @param {string} workspaceId
|
|
18343
|
+
* @param {JsonApiWorkspaceColorPaletteInDocument} jsonApiWorkspaceColorPaletteInDocument
|
|
18344
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
18345
|
+
* @param {*} [options] Override http request option.
|
|
18346
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
18347
|
+
* @throws {RequiredError}
|
|
18348
|
+
*/
|
|
18349
|
+
export declare function AppearanceApiAxiosParamCreator_CreateEntityWorkspaceColorPalettes(workspaceId: string, jsonApiWorkspaceColorPaletteInDocument: JsonApiWorkspaceColorPaletteInDocument, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
18350
|
+
/**
|
|
18351
|
+
*
|
|
18352
|
+
* @summary Post Workspace Theme
|
|
18353
|
+
* @param {string} workspaceId
|
|
18354
|
+
* @param {JsonApiWorkspaceThemeInDocument} jsonApiWorkspaceThemeInDocument
|
|
18355
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
18356
|
+
* @param {*} [options] Override http request option.
|
|
18357
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
18358
|
+
* @throws {RequiredError}
|
|
18359
|
+
*/
|
|
18360
|
+
export declare function AppearanceApiAxiosParamCreator_CreateEntityWorkspaceThemes(workspaceId: string, jsonApiWorkspaceThemeInDocument: JsonApiWorkspaceThemeInDocument, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
18155
18361
|
/**
|
|
18156
18362
|
*
|
|
18157
18363
|
* @summary Delete a Color Pallette
|
|
@@ -18170,6 +18376,26 @@ export declare function AppearanceApiAxiosParamCreator_DeleteEntityColorPalettes
|
|
|
18170
18376
|
* @throws {RequiredError}
|
|
18171
18377
|
*/
|
|
18172
18378
|
export declare function AppearanceApiAxiosParamCreator_DeleteEntityThemes(id: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
18379
|
+
/**
|
|
18380
|
+
*
|
|
18381
|
+
* @summary Delete a Workspace Color Palette
|
|
18382
|
+
* @param {string} workspaceId
|
|
18383
|
+
* @param {string} objectId
|
|
18384
|
+
* @param {*} [options] Override http request option.
|
|
18385
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
18386
|
+
* @throws {RequiredError}
|
|
18387
|
+
*/
|
|
18388
|
+
export declare function AppearanceApiAxiosParamCreator_DeleteEntityWorkspaceColorPalettes(workspaceId: string, objectId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
18389
|
+
/**
|
|
18390
|
+
*
|
|
18391
|
+
* @summary Delete a Workspace Theme
|
|
18392
|
+
* @param {string} workspaceId
|
|
18393
|
+
* @param {string} objectId
|
|
18394
|
+
* @param {*} [options] Override http request option.
|
|
18395
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
18396
|
+
* @throws {RequiredError}
|
|
18397
|
+
*/
|
|
18398
|
+
export declare function AppearanceApiAxiosParamCreator_DeleteEntityWorkspaceThemes(workspaceId: string, objectId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
18173
18399
|
/**
|
|
18174
18400
|
*
|
|
18175
18401
|
* @summary Get all Color Pallettes
|
|
@@ -18196,6 +18422,38 @@ export declare function AppearanceApiAxiosParamCreator_GetAllEntitiesColorPalett
|
|
|
18196
18422
|
* @throws {RequiredError}
|
|
18197
18423
|
*/
|
|
18198
18424
|
export declare function AppearanceApiAxiosParamCreator_GetAllEntitiesThemes(filter?: string, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
18425
|
+
/**
|
|
18426
|
+
*
|
|
18427
|
+
* @summary Get all Workspace Color Palettes
|
|
18428
|
+
* @param {string} workspaceId
|
|
18429
|
+
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
18430
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
18431
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
18432
|
+
* @param {number} [size] The size of the page to be returned
|
|
18433
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
18434
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
18435
|
+
* @param {Array<'origin' | 'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
18436
|
+
* @param {*} [options] Override http request option.
|
|
18437
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
18438
|
+
* @throws {RequiredError}
|
|
18439
|
+
*/
|
|
18440
|
+
export declare function AppearanceApiAxiosParamCreator_GetAllEntitiesWorkspaceColorPalettes(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
18441
|
+
/**
|
|
18442
|
+
*
|
|
18443
|
+
* @summary Get all Workspace Themes
|
|
18444
|
+
* @param {string} workspaceId
|
|
18445
|
+
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
18446
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
18447
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
18448
|
+
* @param {number} [size] The size of the page to be returned
|
|
18449
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
18450
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
18451
|
+
* @param {Array<'origin' | 'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
18452
|
+
* @param {*} [options] Override http request option.
|
|
18453
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
18454
|
+
* @throws {RequiredError}
|
|
18455
|
+
*/
|
|
18456
|
+
export declare function AppearanceApiAxiosParamCreator_GetAllEntitiesWorkspaceThemes(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
18199
18457
|
/**
|
|
18200
18458
|
*
|
|
18201
18459
|
* @summary Get Color Pallette
|
|
@@ -18216,6 +18474,32 @@ export declare function AppearanceApiAxiosParamCreator_GetEntityColorPalettes(id
|
|
|
18216
18474
|
* @throws {RequiredError}
|
|
18217
18475
|
*/
|
|
18218
18476
|
export declare function AppearanceApiAxiosParamCreator_GetEntityThemes(id: string, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
18477
|
+
/**
|
|
18478
|
+
*
|
|
18479
|
+
* @summary Get a Workspace Color Palette
|
|
18480
|
+
* @param {string} workspaceId
|
|
18481
|
+
* @param {string} objectId
|
|
18482
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
18483
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
18484
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
18485
|
+
* @param {*} [options] Override http request option.
|
|
18486
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
18487
|
+
* @throws {RequiredError}
|
|
18488
|
+
*/
|
|
18489
|
+
export declare function AppearanceApiAxiosParamCreator_GetEntityWorkspaceColorPalettes(workspaceId: string, objectId: string, filter?: string, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
18490
|
+
/**
|
|
18491
|
+
*
|
|
18492
|
+
* @summary Get a Workspace Theme
|
|
18493
|
+
* @param {string} workspaceId
|
|
18494
|
+
* @param {string} objectId
|
|
18495
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
18496
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
18497
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
18498
|
+
* @param {*} [options] Override http request option.
|
|
18499
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
18500
|
+
* @throws {RequiredError}
|
|
18501
|
+
*/
|
|
18502
|
+
export declare function AppearanceApiAxiosParamCreator_GetEntityWorkspaceThemes(workspaceId: string, objectId: string, filter?: string, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
18219
18503
|
/**
|
|
18220
18504
|
*
|
|
18221
18505
|
* @summary Patch Color Pallette
|
|
@@ -18238,6 +18522,30 @@ export declare function AppearanceApiAxiosParamCreator_PatchEntityColorPalettes(
|
|
|
18238
18522
|
* @throws {RequiredError}
|
|
18239
18523
|
*/
|
|
18240
18524
|
export declare function AppearanceApiAxiosParamCreator_PatchEntityThemes(id: string, jsonApiThemePatchDocument: JsonApiThemePatchDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
18525
|
+
/**
|
|
18526
|
+
*
|
|
18527
|
+
* @summary Patch a Workspace Color Palette
|
|
18528
|
+
* @param {string} workspaceId
|
|
18529
|
+
* @param {string} objectId
|
|
18530
|
+
* @param {JsonApiWorkspaceColorPalettePatchDocument} jsonApiWorkspaceColorPalettePatchDocument
|
|
18531
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
18532
|
+
* @param {*} [options] Override http request option.
|
|
18533
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
18534
|
+
* @throws {RequiredError}
|
|
18535
|
+
*/
|
|
18536
|
+
export declare function AppearanceApiAxiosParamCreator_PatchEntityWorkspaceColorPalettes(workspaceId: string, objectId: string, jsonApiWorkspaceColorPalettePatchDocument: JsonApiWorkspaceColorPalettePatchDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
18537
|
+
/**
|
|
18538
|
+
*
|
|
18539
|
+
* @summary Patch a Workspace Theme
|
|
18540
|
+
* @param {string} workspaceId
|
|
18541
|
+
* @param {string} objectId
|
|
18542
|
+
* @param {JsonApiWorkspaceThemePatchDocument} jsonApiWorkspaceThemePatchDocument
|
|
18543
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
18544
|
+
* @param {*} [options] Override http request option.
|
|
18545
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
18546
|
+
* @throws {RequiredError}
|
|
18547
|
+
*/
|
|
18548
|
+
export declare function AppearanceApiAxiosParamCreator_PatchEntityWorkspaceThemes(workspaceId: string, objectId: string, jsonApiWorkspaceThemePatchDocument: JsonApiWorkspaceThemePatchDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
18241
18549
|
/**
|
|
18242
18550
|
*
|
|
18243
18551
|
* @summary Put Color Pallette
|
|
@@ -18260,6 +18568,30 @@ export declare function AppearanceApiAxiosParamCreator_UpdateEntityColorPalettes
|
|
|
18260
18568
|
* @throws {RequiredError}
|
|
18261
18569
|
*/
|
|
18262
18570
|
export declare function AppearanceApiAxiosParamCreator_UpdateEntityThemes(id: string, jsonApiThemeInDocument: JsonApiThemeInDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
18571
|
+
/**
|
|
18572
|
+
*
|
|
18573
|
+
* @summary Put a Workspace Color Palette
|
|
18574
|
+
* @param {string} workspaceId
|
|
18575
|
+
* @param {string} objectId
|
|
18576
|
+
* @param {JsonApiWorkspaceColorPaletteInDocument} jsonApiWorkspaceColorPaletteInDocument
|
|
18577
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
18578
|
+
* @param {*} [options] Override http request option.
|
|
18579
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
18580
|
+
* @throws {RequiredError}
|
|
18581
|
+
*/
|
|
18582
|
+
export declare function AppearanceApiAxiosParamCreator_UpdateEntityWorkspaceColorPalettes(workspaceId: string, objectId: string, jsonApiWorkspaceColorPaletteInDocument: JsonApiWorkspaceColorPaletteInDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
18583
|
+
/**
|
|
18584
|
+
*
|
|
18585
|
+
* @summary Put a Workspace Theme
|
|
18586
|
+
* @param {string} workspaceId
|
|
18587
|
+
* @param {string} objectId
|
|
18588
|
+
* @param {JsonApiWorkspaceThemeInDocument} jsonApiWorkspaceThemeInDocument
|
|
18589
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
18590
|
+
* @param {*} [options] Override http request option.
|
|
18591
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
18592
|
+
* @throws {RequiredError}
|
|
18593
|
+
*/
|
|
18594
|
+
export declare function AppearanceApiAxiosParamCreator_UpdateEntityWorkspaceThemes(workspaceId: string, objectId: string, jsonApiWorkspaceThemeInDocument: JsonApiWorkspaceThemeInDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
18263
18595
|
/**
|
|
18264
18596
|
*
|
|
18265
18597
|
* @summary Post Color Pallettes
|
|
@@ -18282,6 +18614,28 @@ export declare function AppearanceApi_CreateEntityColorPalettes(axios: AxiosInst
|
|
|
18282
18614
|
* @throws {RequiredError}
|
|
18283
18615
|
*/
|
|
18284
18616
|
export declare function AppearanceApi_CreateEntityThemes(axios: AxiosInstance, basePath: string, requestParameters: AppearanceApiCreateEntityThemesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiThemeOutDocument>;
|
|
18617
|
+
/**
|
|
18618
|
+
*
|
|
18619
|
+
* @summary Post Workspace Color Palette
|
|
18620
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
18621
|
+
* @param {string} basePath Base path.
|
|
18622
|
+
* @param {AppearanceApiCreateEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
18623
|
+
* @param {*} [options] Override http request option.
|
|
18624
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
18625
|
+
* @throws {RequiredError}
|
|
18626
|
+
*/
|
|
18627
|
+
export declare function AppearanceApi_CreateEntityWorkspaceColorPalettes(axios: AxiosInstance, basePath: string, requestParameters: AppearanceApiCreateEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
18628
|
+
/**
|
|
18629
|
+
*
|
|
18630
|
+
* @summary Post Workspace Theme
|
|
18631
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
18632
|
+
* @param {string} basePath Base path.
|
|
18633
|
+
* @param {AppearanceApiCreateEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
18634
|
+
* @param {*} [options] Override http request option.
|
|
18635
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
18636
|
+
* @throws {RequiredError}
|
|
18637
|
+
*/
|
|
18638
|
+
export declare function AppearanceApi_CreateEntityWorkspaceThemes(axios: AxiosInstance, basePath: string, requestParameters: AppearanceApiCreateEntityWorkspaceThemesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
18285
18639
|
/**
|
|
18286
18640
|
*
|
|
18287
18641
|
* @summary Delete a Color Pallette
|
|
@@ -18304,6 +18658,28 @@ export declare function AppearanceApi_DeleteEntityColorPalettes(axios: AxiosInst
|
|
|
18304
18658
|
* @throws {RequiredError}
|
|
18305
18659
|
*/
|
|
18306
18660
|
export declare function AppearanceApi_DeleteEntityThemes(axios: AxiosInstance, basePath: string, requestParameters: AppearanceApiDeleteEntityThemesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
18661
|
+
/**
|
|
18662
|
+
*
|
|
18663
|
+
* @summary Delete a Workspace Color Palette
|
|
18664
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
18665
|
+
* @param {string} basePath Base path.
|
|
18666
|
+
* @param {AppearanceApiDeleteEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
18667
|
+
* @param {*} [options] Override http request option.
|
|
18668
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
18669
|
+
* @throws {RequiredError}
|
|
18670
|
+
*/
|
|
18671
|
+
export declare function AppearanceApi_DeleteEntityWorkspaceColorPalettes(axios: AxiosInstance, basePath: string, requestParameters: AppearanceApiDeleteEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
18672
|
+
/**
|
|
18673
|
+
*
|
|
18674
|
+
* @summary Delete a Workspace Theme
|
|
18675
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
18676
|
+
* @param {string} basePath Base path.
|
|
18677
|
+
* @param {AppearanceApiDeleteEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
18678
|
+
* @param {*} [options] Override http request option.
|
|
18679
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
18680
|
+
* @throws {RequiredError}
|
|
18681
|
+
*/
|
|
18682
|
+
export declare function AppearanceApi_DeleteEntityWorkspaceThemes(axios: AxiosInstance, basePath: string, requestParameters: AppearanceApiDeleteEntityWorkspaceThemesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
18307
18683
|
/**
|
|
18308
18684
|
*
|
|
18309
18685
|
* @summary Get all Color Pallettes
|
|
@@ -18326,6 +18702,28 @@ export declare function AppearanceApi_GetAllEntitiesColorPalettes(axios: AxiosIn
|
|
|
18326
18702
|
* @throws {RequiredError}
|
|
18327
18703
|
*/
|
|
18328
18704
|
export declare function AppearanceApi_GetAllEntitiesThemes(axios: AxiosInstance, basePath: string, requestParameters: AppearanceApiGetAllEntitiesThemesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiThemeOutList>;
|
|
18705
|
+
/**
|
|
18706
|
+
*
|
|
18707
|
+
* @summary Get all Workspace Color Palettes
|
|
18708
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
18709
|
+
* @param {string} basePath Base path.
|
|
18710
|
+
* @param {AppearanceApiGetAllEntitiesWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
18711
|
+
* @param {*} [options] Override http request option.
|
|
18712
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
18713
|
+
* @throws {RequiredError}
|
|
18714
|
+
*/
|
|
18715
|
+
export declare function AppearanceApi_GetAllEntitiesWorkspaceColorPalettes(axios: AxiosInstance, basePath: string, requestParameters: AppearanceApiGetAllEntitiesWorkspaceColorPalettesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceColorPaletteOutList>;
|
|
18716
|
+
/**
|
|
18717
|
+
*
|
|
18718
|
+
* @summary Get all Workspace Themes
|
|
18719
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
18720
|
+
* @param {string} basePath Base path.
|
|
18721
|
+
* @param {AppearanceApiGetAllEntitiesWorkspaceThemesRequest} requestParameters Request parameters.
|
|
18722
|
+
* @param {*} [options] Override http request option.
|
|
18723
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
18724
|
+
* @throws {RequiredError}
|
|
18725
|
+
*/
|
|
18726
|
+
export declare function AppearanceApi_GetAllEntitiesWorkspaceThemes(axios: AxiosInstance, basePath: string, requestParameters: AppearanceApiGetAllEntitiesWorkspaceThemesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceThemeOutList>;
|
|
18329
18727
|
/**
|
|
18330
18728
|
*
|
|
18331
18729
|
* @summary Get Color Pallette
|
|
@@ -18348,6 +18746,28 @@ export declare function AppearanceApi_GetEntityColorPalettes(axios: AxiosInstanc
|
|
|
18348
18746
|
* @throws {RequiredError}
|
|
18349
18747
|
*/
|
|
18350
18748
|
export declare function AppearanceApi_GetEntityThemes(axios: AxiosInstance, basePath: string, requestParameters: AppearanceApiGetEntityThemesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiThemeOutDocument>;
|
|
18749
|
+
/**
|
|
18750
|
+
*
|
|
18751
|
+
* @summary Get a Workspace Color Palette
|
|
18752
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
18753
|
+
* @param {string} basePath Base path.
|
|
18754
|
+
* @param {AppearanceApiGetEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
18755
|
+
* @param {*} [options] Override http request option.
|
|
18756
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
18757
|
+
* @throws {RequiredError}
|
|
18758
|
+
*/
|
|
18759
|
+
export declare function AppearanceApi_GetEntityWorkspaceColorPalettes(axios: AxiosInstance, basePath: string, requestParameters: AppearanceApiGetEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
18760
|
+
/**
|
|
18761
|
+
*
|
|
18762
|
+
* @summary Get a Workspace Theme
|
|
18763
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
18764
|
+
* @param {string} basePath Base path.
|
|
18765
|
+
* @param {AppearanceApiGetEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
18766
|
+
* @param {*} [options] Override http request option.
|
|
18767
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
18768
|
+
* @throws {RequiredError}
|
|
18769
|
+
*/
|
|
18770
|
+
export declare function AppearanceApi_GetEntityWorkspaceThemes(axios: AxiosInstance, basePath: string, requestParameters: AppearanceApiGetEntityWorkspaceThemesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
18351
18771
|
/**
|
|
18352
18772
|
*
|
|
18353
18773
|
* @summary Patch Color Pallette
|
|
@@ -18370,6 +18790,28 @@ export declare function AppearanceApi_PatchEntityColorPalettes(axios: AxiosInsta
|
|
|
18370
18790
|
* @throws {RequiredError}
|
|
18371
18791
|
*/
|
|
18372
18792
|
export declare function AppearanceApi_PatchEntityThemes(axios: AxiosInstance, basePath: string, requestParameters: AppearanceApiPatchEntityThemesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiThemeOutDocument>;
|
|
18793
|
+
/**
|
|
18794
|
+
*
|
|
18795
|
+
* @summary Patch a Workspace Color Palette
|
|
18796
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
18797
|
+
* @param {string} basePath Base path.
|
|
18798
|
+
* @param {AppearanceApiPatchEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
18799
|
+
* @param {*} [options] Override http request option.
|
|
18800
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
18801
|
+
* @throws {RequiredError}
|
|
18802
|
+
*/
|
|
18803
|
+
export declare function AppearanceApi_PatchEntityWorkspaceColorPalettes(axios: AxiosInstance, basePath: string, requestParameters: AppearanceApiPatchEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
18804
|
+
/**
|
|
18805
|
+
*
|
|
18806
|
+
* @summary Patch a Workspace Theme
|
|
18807
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
18808
|
+
* @param {string} basePath Base path.
|
|
18809
|
+
* @param {AppearanceApiPatchEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
18810
|
+
* @param {*} [options] Override http request option.
|
|
18811
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
18812
|
+
* @throws {RequiredError}
|
|
18813
|
+
*/
|
|
18814
|
+
export declare function AppearanceApi_PatchEntityWorkspaceThemes(axios: AxiosInstance, basePath: string, requestParameters: AppearanceApiPatchEntityWorkspaceThemesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
18373
18815
|
/**
|
|
18374
18816
|
*
|
|
18375
18817
|
* @summary Put Color Pallette
|
|
@@ -18392,6 +18834,28 @@ export declare function AppearanceApi_UpdateEntityColorPalettes(axios: AxiosInst
|
|
|
18392
18834
|
* @throws {RequiredError}
|
|
18393
18835
|
*/
|
|
18394
18836
|
export declare function AppearanceApi_UpdateEntityThemes(axios: AxiosInstance, basePath: string, requestParameters: AppearanceApiUpdateEntityThemesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiThemeOutDocument>;
|
|
18837
|
+
/**
|
|
18838
|
+
*
|
|
18839
|
+
* @summary Put a Workspace Color Palette
|
|
18840
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
18841
|
+
* @param {string} basePath Base path.
|
|
18842
|
+
* @param {AppearanceApiUpdateEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
18843
|
+
* @param {*} [options] Override http request option.
|
|
18844
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
18845
|
+
* @throws {RequiredError}
|
|
18846
|
+
*/
|
|
18847
|
+
export declare function AppearanceApi_UpdateEntityWorkspaceColorPalettes(axios: AxiosInstance, basePath: string, requestParameters: AppearanceApiUpdateEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
18848
|
+
/**
|
|
18849
|
+
*
|
|
18850
|
+
* @summary Put a Workspace Theme
|
|
18851
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
18852
|
+
* @param {string} basePath Base path.
|
|
18853
|
+
* @param {AppearanceApiUpdateEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
18854
|
+
* @param {*} [options] Override http request option.
|
|
18855
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
18856
|
+
* @throws {RequiredError}
|
|
18857
|
+
*/
|
|
18858
|
+
export declare function AppearanceApi_UpdateEntityWorkspaceThemes(axios: AxiosInstance, basePath: string, requestParameters: AppearanceApiUpdateEntityWorkspaceThemesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
18395
18859
|
/**
|
|
18396
18860
|
* AppearanceApi - interface
|
|
18397
18861
|
* @export
|
|
@@ -18416,6 +18880,24 @@ export interface AppearanceApiInterface {
|
|
|
18416
18880
|
* @memberof AppearanceApiInterface
|
|
18417
18881
|
*/
|
|
18418
18882
|
createEntityThemes(requestParameters: AppearanceApiCreateEntityThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiThemeOutDocument>;
|
|
18883
|
+
/**
|
|
18884
|
+
*
|
|
18885
|
+
* @summary Post Workspace Color Palette
|
|
18886
|
+
* @param {AppearanceApiCreateEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
18887
|
+
* @param {*} [options] Override http request option.
|
|
18888
|
+
* @throws {RequiredError}
|
|
18889
|
+
* @memberof AppearanceApiInterface
|
|
18890
|
+
*/
|
|
18891
|
+
createEntityWorkspaceColorPalettes(requestParameters: AppearanceApiCreateEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
18892
|
+
/**
|
|
18893
|
+
*
|
|
18894
|
+
* @summary Post Workspace Theme
|
|
18895
|
+
* @param {AppearanceApiCreateEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
18896
|
+
* @param {*} [options] Override http request option.
|
|
18897
|
+
* @throws {RequiredError}
|
|
18898
|
+
* @memberof AppearanceApiInterface
|
|
18899
|
+
*/
|
|
18900
|
+
createEntityWorkspaceThemes(requestParameters: AppearanceApiCreateEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
18419
18901
|
/**
|
|
18420
18902
|
*
|
|
18421
18903
|
* @summary Delete a Color Pallette
|
|
@@ -18434,6 +18916,24 @@ export interface AppearanceApiInterface {
|
|
|
18434
18916
|
* @memberof AppearanceApiInterface
|
|
18435
18917
|
*/
|
|
18436
18918
|
deleteEntityThemes(requestParameters: AppearanceApiDeleteEntityThemesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
18919
|
+
/**
|
|
18920
|
+
*
|
|
18921
|
+
* @summary Delete a Workspace Color Palette
|
|
18922
|
+
* @param {AppearanceApiDeleteEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
18923
|
+
* @param {*} [options] Override http request option.
|
|
18924
|
+
* @throws {RequiredError}
|
|
18925
|
+
* @memberof AppearanceApiInterface
|
|
18926
|
+
*/
|
|
18927
|
+
deleteEntityWorkspaceColorPalettes(requestParameters: AppearanceApiDeleteEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
18928
|
+
/**
|
|
18929
|
+
*
|
|
18930
|
+
* @summary Delete a Workspace Theme
|
|
18931
|
+
* @param {AppearanceApiDeleteEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
18932
|
+
* @param {*} [options] Override http request option.
|
|
18933
|
+
* @throws {RequiredError}
|
|
18934
|
+
* @memberof AppearanceApiInterface
|
|
18935
|
+
*/
|
|
18936
|
+
deleteEntityWorkspaceThemes(requestParameters: AppearanceApiDeleteEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
18437
18937
|
/**
|
|
18438
18938
|
*
|
|
18439
18939
|
* @summary Get all Color Pallettes
|
|
@@ -18452,6 +18952,24 @@ export interface AppearanceApiInterface {
|
|
|
18452
18952
|
* @memberof AppearanceApiInterface
|
|
18453
18953
|
*/
|
|
18454
18954
|
getAllEntitiesThemes(requestParameters: AppearanceApiGetAllEntitiesThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiThemeOutList>;
|
|
18955
|
+
/**
|
|
18956
|
+
*
|
|
18957
|
+
* @summary Get all Workspace Color Palettes
|
|
18958
|
+
* @param {AppearanceApiGetAllEntitiesWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
18959
|
+
* @param {*} [options] Override http request option.
|
|
18960
|
+
* @throws {RequiredError}
|
|
18961
|
+
* @memberof AppearanceApiInterface
|
|
18962
|
+
*/
|
|
18963
|
+
getAllEntitiesWorkspaceColorPalettes(requestParameters: AppearanceApiGetAllEntitiesWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutList>;
|
|
18964
|
+
/**
|
|
18965
|
+
*
|
|
18966
|
+
* @summary Get all Workspace Themes
|
|
18967
|
+
* @param {AppearanceApiGetAllEntitiesWorkspaceThemesRequest} requestParameters Request parameters.
|
|
18968
|
+
* @param {*} [options] Override http request option.
|
|
18969
|
+
* @throws {RequiredError}
|
|
18970
|
+
* @memberof AppearanceApiInterface
|
|
18971
|
+
*/
|
|
18972
|
+
getAllEntitiesWorkspaceThemes(requestParameters: AppearanceApiGetAllEntitiesWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutList>;
|
|
18455
18973
|
/**
|
|
18456
18974
|
*
|
|
18457
18975
|
* @summary Get Color Pallette
|
|
@@ -18470,6 +18988,24 @@ export interface AppearanceApiInterface {
|
|
|
18470
18988
|
* @memberof AppearanceApiInterface
|
|
18471
18989
|
*/
|
|
18472
18990
|
getEntityThemes(requestParameters: AppearanceApiGetEntityThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiThemeOutDocument>;
|
|
18991
|
+
/**
|
|
18992
|
+
*
|
|
18993
|
+
* @summary Get a Workspace Color Palette
|
|
18994
|
+
* @param {AppearanceApiGetEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
18995
|
+
* @param {*} [options] Override http request option.
|
|
18996
|
+
* @throws {RequiredError}
|
|
18997
|
+
* @memberof AppearanceApiInterface
|
|
18998
|
+
*/
|
|
18999
|
+
getEntityWorkspaceColorPalettes(requestParameters: AppearanceApiGetEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
19000
|
+
/**
|
|
19001
|
+
*
|
|
19002
|
+
* @summary Get a Workspace Theme
|
|
19003
|
+
* @param {AppearanceApiGetEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
19004
|
+
* @param {*} [options] Override http request option.
|
|
19005
|
+
* @throws {RequiredError}
|
|
19006
|
+
* @memberof AppearanceApiInterface
|
|
19007
|
+
*/
|
|
19008
|
+
getEntityWorkspaceThemes(requestParameters: AppearanceApiGetEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
18473
19009
|
/**
|
|
18474
19010
|
*
|
|
18475
19011
|
* @summary Patch Color Pallette
|
|
@@ -18488,6 +19024,24 @@ export interface AppearanceApiInterface {
|
|
|
18488
19024
|
* @memberof AppearanceApiInterface
|
|
18489
19025
|
*/
|
|
18490
19026
|
patchEntityThemes(requestParameters: AppearanceApiPatchEntityThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiThemeOutDocument>;
|
|
19027
|
+
/**
|
|
19028
|
+
*
|
|
19029
|
+
* @summary Patch a Workspace Color Palette
|
|
19030
|
+
* @param {AppearanceApiPatchEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
19031
|
+
* @param {*} [options] Override http request option.
|
|
19032
|
+
* @throws {RequiredError}
|
|
19033
|
+
* @memberof AppearanceApiInterface
|
|
19034
|
+
*/
|
|
19035
|
+
patchEntityWorkspaceColorPalettes(requestParameters: AppearanceApiPatchEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
19036
|
+
/**
|
|
19037
|
+
*
|
|
19038
|
+
* @summary Patch a Workspace Theme
|
|
19039
|
+
* @param {AppearanceApiPatchEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
19040
|
+
* @param {*} [options] Override http request option.
|
|
19041
|
+
* @throws {RequiredError}
|
|
19042
|
+
* @memberof AppearanceApiInterface
|
|
19043
|
+
*/
|
|
19044
|
+
patchEntityWorkspaceThemes(requestParameters: AppearanceApiPatchEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
18491
19045
|
/**
|
|
18492
19046
|
*
|
|
18493
19047
|
* @summary Put Color Pallette
|
|
@@ -18506,6 +19060,24 @@ export interface AppearanceApiInterface {
|
|
|
18506
19060
|
* @memberof AppearanceApiInterface
|
|
18507
19061
|
*/
|
|
18508
19062
|
updateEntityThemes(requestParameters: AppearanceApiUpdateEntityThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiThemeOutDocument>;
|
|
19063
|
+
/**
|
|
19064
|
+
*
|
|
19065
|
+
* @summary Put a Workspace Color Palette
|
|
19066
|
+
* @param {AppearanceApiUpdateEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
19067
|
+
* @param {*} [options] Override http request option.
|
|
19068
|
+
* @throws {RequiredError}
|
|
19069
|
+
* @memberof AppearanceApiInterface
|
|
19070
|
+
*/
|
|
19071
|
+
updateEntityWorkspaceColorPalettes(requestParameters: AppearanceApiUpdateEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
19072
|
+
/**
|
|
19073
|
+
*
|
|
19074
|
+
* @summary Put a Workspace Theme
|
|
19075
|
+
* @param {AppearanceApiUpdateEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
19076
|
+
* @param {*} [options] Override http request option.
|
|
19077
|
+
* @throws {RequiredError}
|
|
19078
|
+
* @memberof AppearanceApiInterface
|
|
19079
|
+
*/
|
|
19080
|
+
updateEntityWorkspaceThemes(requestParameters: AppearanceApiUpdateEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
18509
19081
|
}
|
|
18510
19082
|
/**
|
|
18511
19083
|
* Request parameters for createEntityColorPalettes operation in AppearanceApi.
|
|
@@ -18533,6 +19105,56 @@ export interface AppearanceApiCreateEntityThemesRequest {
|
|
|
18533
19105
|
*/
|
|
18534
19106
|
readonly jsonApiThemeInDocument: JsonApiThemeInDocument;
|
|
18535
19107
|
}
|
|
19108
|
+
/**
|
|
19109
|
+
* Request parameters for createEntityWorkspaceColorPalettes operation in AppearanceApi.
|
|
19110
|
+
* @export
|
|
19111
|
+
* @interface AppearanceApiCreateEntityWorkspaceColorPalettesRequest
|
|
19112
|
+
*/
|
|
19113
|
+
export interface AppearanceApiCreateEntityWorkspaceColorPalettesRequest {
|
|
19114
|
+
/**
|
|
19115
|
+
*
|
|
19116
|
+
* @type {string}
|
|
19117
|
+
* @memberof AppearanceApiCreateEntityWorkspaceColorPalettes
|
|
19118
|
+
*/
|
|
19119
|
+
readonly workspaceId: string;
|
|
19120
|
+
/**
|
|
19121
|
+
*
|
|
19122
|
+
* @type {JsonApiWorkspaceColorPaletteInDocument}
|
|
19123
|
+
* @memberof AppearanceApiCreateEntityWorkspaceColorPalettes
|
|
19124
|
+
*/
|
|
19125
|
+
readonly jsonApiWorkspaceColorPaletteInDocument: JsonApiWorkspaceColorPaletteInDocument;
|
|
19126
|
+
/**
|
|
19127
|
+
* Include Meta objects.
|
|
19128
|
+
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
19129
|
+
* @memberof AppearanceApiCreateEntityWorkspaceColorPalettes
|
|
19130
|
+
*/
|
|
19131
|
+
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
19132
|
+
}
|
|
19133
|
+
/**
|
|
19134
|
+
* Request parameters for createEntityWorkspaceThemes operation in AppearanceApi.
|
|
19135
|
+
* @export
|
|
19136
|
+
* @interface AppearanceApiCreateEntityWorkspaceThemesRequest
|
|
19137
|
+
*/
|
|
19138
|
+
export interface AppearanceApiCreateEntityWorkspaceThemesRequest {
|
|
19139
|
+
/**
|
|
19140
|
+
*
|
|
19141
|
+
* @type {string}
|
|
19142
|
+
* @memberof AppearanceApiCreateEntityWorkspaceThemes
|
|
19143
|
+
*/
|
|
19144
|
+
readonly workspaceId: string;
|
|
19145
|
+
/**
|
|
19146
|
+
*
|
|
19147
|
+
* @type {JsonApiWorkspaceThemeInDocument}
|
|
19148
|
+
* @memberof AppearanceApiCreateEntityWorkspaceThemes
|
|
19149
|
+
*/
|
|
19150
|
+
readonly jsonApiWorkspaceThemeInDocument: JsonApiWorkspaceThemeInDocument;
|
|
19151
|
+
/**
|
|
19152
|
+
* Include Meta objects.
|
|
19153
|
+
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
19154
|
+
* @memberof AppearanceApiCreateEntityWorkspaceThemes
|
|
19155
|
+
*/
|
|
19156
|
+
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
19157
|
+
}
|
|
18536
19158
|
/**
|
|
18537
19159
|
* Request parameters for deleteEntityColorPalettes operation in AppearanceApi.
|
|
18538
19160
|
* @export
|
|
@@ -18559,6 +19181,44 @@ export interface AppearanceApiDeleteEntityThemesRequest {
|
|
|
18559
19181
|
*/
|
|
18560
19182
|
readonly id: string;
|
|
18561
19183
|
}
|
|
19184
|
+
/**
|
|
19185
|
+
* Request parameters for deleteEntityWorkspaceColorPalettes operation in AppearanceApi.
|
|
19186
|
+
* @export
|
|
19187
|
+
* @interface AppearanceApiDeleteEntityWorkspaceColorPalettesRequest
|
|
19188
|
+
*/
|
|
19189
|
+
export interface AppearanceApiDeleteEntityWorkspaceColorPalettesRequest {
|
|
19190
|
+
/**
|
|
19191
|
+
*
|
|
19192
|
+
* @type {string}
|
|
19193
|
+
* @memberof AppearanceApiDeleteEntityWorkspaceColorPalettes
|
|
19194
|
+
*/
|
|
19195
|
+
readonly workspaceId: string;
|
|
19196
|
+
/**
|
|
19197
|
+
*
|
|
19198
|
+
* @type {string}
|
|
19199
|
+
* @memberof AppearanceApiDeleteEntityWorkspaceColorPalettes
|
|
19200
|
+
*/
|
|
19201
|
+
readonly objectId: string;
|
|
19202
|
+
}
|
|
19203
|
+
/**
|
|
19204
|
+
* Request parameters for deleteEntityWorkspaceThemes operation in AppearanceApi.
|
|
19205
|
+
* @export
|
|
19206
|
+
* @interface AppearanceApiDeleteEntityWorkspaceThemesRequest
|
|
19207
|
+
*/
|
|
19208
|
+
export interface AppearanceApiDeleteEntityWorkspaceThemesRequest {
|
|
19209
|
+
/**
|
|
19210
|
+
*
|
|
19211
|
+
* @type {string}
|
|
19212
|
+
* @memberof AppearanceApiDeleteEntityWorkspaceThemes
|
|
19213
|
+
*/
|
|
19214
|
+
readonly workspaceId: string;
|
|
19215
|
+
/**
|
|
19216
|
+
*
|
|
19217
|
+
* @type {string}
|
|
19218
|
+
* @memberof AppearanceApiDeleteEntityWorkspaceThemes
|
|
19219
|
+
*/
|
|
19220
|
+
readonly objectId: string;
|
|
19221
|
+
}
|
|
18562
19222
|
/**
|
|
18563
19223
|
* Request parameters for getAllEntitiesColorPalettes operation in AppearanceApi.
|
|
18564
19224
|
* @export
|
|
@@ -18633,6 +19293,116 @@ export interface AppearanceApiGetAllEntitiesThemesRequest {
|
|
|
18633
19293
|
*/
|
|
18634
19294
|
readonly metaInclude?: Array<'page' | 'all' | 'ALL'>;
|
|
18635
19295
|
}
|
|
19296
|
+
/**
|
|
19297
|
+
* Request parameters for getAllEntitiesWorkspaceColorPalettes operation in AppearanceApi.
|
|
19298
|
+
* @export
|
|
19299
|
+
* @interface AppearanceApiGetAllEntitiesWorkspaceColorPalettesRequest
|
|
19300
|
+
*/
|
|
19301
|
+
export interface AppearanceApiGetAllEntitiesWorkspaceColorPalettesRequest {
|
|
19302
|
+
/**
|
|
19303
|
+
*
|
|
19304
|
+
* @type {string}
|
|
19305
|
+
* @memberof AppearanceApiGetAllEntitiesWorkspaceColorPalettes
|
|
19306
|
+
*/
|
|
19307
|
+
readonly workspaceId: string;
|
|
19308
|
+
/**
|
|
19309
|
+
*
|
|
19310
|
+
* @type {'ALL' | 'PARENTS' | 'NATIVE'}
|
|
19311
|
+
* @memberof AppearanceApiGetAllEntitiesWorkspaceColorPalettes
|
|
19312
|
+
*/
|
|
19313
|
+
readonly origin?: 'ALL' | 'PARENTS' | 'NATIVE';
|
|
19314
|
+
/**
|
|
19315
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
19316
|
+
* @type {string}
|
|
19317
|
+
* @memberof AppearanceApiGetAllEntitiesWorkspaceColorPalettes
|
|
19318
|
+
*/
|
|
19319
|
+
readonly filter?: string;
|
|
19320
|
+
/**
|
|
19321
|
+
* Zero-based page index (0..N)
|
|
19322
|
+
* @type {number}
|
|
19323
|
+
* @memberof AppearanceApiGetAllEntitiesWorkspaceColorPalettes
|
|
19324
|
+
*/
|
|
19325
|
+
readonly page?: number;
|
|
19326
|
+
/**
|
|
19327
|
+
* The size of the page to be returned
|
|
19328
|
+
* @type {number}
|
|
19329
|
+
* @memberof AppearanceApiGetAllEntitiesWorkspaceColorPalettes
|
|
19330
|
+
*/
|
|
19331
|
+
readonly size?: number;
|
|
19332
|
+
/**
|
|
19333
|
+
* Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
19334
|
+
* @type {Array<string>}
|
|
19335
|
+
* @memberof AppearanceApiGetAllEntitiesWorkspaceColorPalettes
|
|
19336
|
+
*/
|
|
19337
|
+
readonly sort?: Array<string>;
|
|
19338
|
+
/**
|
|
19339
|
+
*
|
|
19340
|
+
* @type {boolean}
|
|
19341
|
+
* @memberof AppearanceApiGetAllEntitiesWorkspaceColorPalettes
|
|
19342
|
+
*/
|
|
19343
|
+
readonly xGDCVALIDATERELATIONS?: boolean;
|
|
19344
|
+
/**
|
|
19345
|
+
* Include Meta objects.
|
|
19346
|
+
* @type {Array<'origin' | 'page' | 'all' | 'ALL'>}
|
|
19347
|
+
* @memberof AppearanceApiGetAllEntitiesWorkspaceColorPalettes
|
|
19348
|
+
*/
|
|
19349
|
+
readonly metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>;
|
|
19350
|
+
}
|
|
19351
|
+
/**
|
|
19352
|
+
* Request parameters for getAllEntitiesWorkspaceThemes operation in AppearanceApi.
|
|
19353
|
+
* @export
|
|
19354
|
+
* @interface AppearanceApiGetAllEntitiesWorkspaceThemesRequest
|
|
19355
|
+
*/
|
|
19356
|
+
export interface AppearanceApiGetAllEntitiesWorkspaceThemesRequest {
|
|
19357
|
+
/**
|
|
19358
|
+
*
|
|
19359
|
+
* @type {string}
|
|
19360
|
+
* @memberof AppearanceApiGetAllEntitiesWorkspaceThemes
|
|
19361
|
+
*/
|
|
19362
|
+
readonly workspaceId: string;
|
|
19363
|
+
/**
|
|
19364
|
+
*
|
|
19365
|
+
* @type {'ALL' | 'PARENTS' | 'NATIVE'}
|
|
19366
|
+
* @memberof AppearanceApiGetAllEntitiesWorkspaceThemes
|
|
19367
|
+
*/
|
|
19368
|
+
readonly origin?: 'ALL' | 'PARENTS' | 'NATIVE';
|
|
19369
|
+
/**
|
|
19370
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
19371
|
+
* @type {string}
|
|
19372
|
+
* @memberof AppearanceApiGetAllEntitiesWorkspaceThemes
|
|
19373
|
+
*/
|
|
19374
|
+
readonly filter?: string;
|
|
19375
|
+
/**
|
|
19376
|
+
* Zero-based page index (0..N)
|
|
19377
|
+
* @type {number}
|
|
19378
|
+
* @memberof AppearanceApiGetAllEntitiesWorkspaceThemes
|
|
19379
|
+
*/
|
|
19380
|
+
readonly page?: number;
|
|
19381
|
+
/**
|
|
19382
|
+
* The size of the page to be returned
|
|
19383
|
+
* @type {number}
|
|
19384
|
+
* @memberof AppearanceApiGetAllEntitiesWorkspaceThemes
|
|
19385
|
+
*/
|
|
19386
|
+
readonly size?: number;
|
|
19387
|
+
/**
|
|
19388
|
+
* Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
19389
|
+
* @type {Array<string>}
|
|
19390
|
+
* @memberof AppearanceApiGetAllEntitiesWorkspaceThemes
|
|
19391
|
+
*/
|
|
19392
|
+
readonly sort?: Array<string>;
|
|
19393
|
+
/**
|
|
19394
|
+
*
|
|
19395
|
+
* @type {boolean}
|
|
19396
|
+
* @memberof AppearanceApiGetAllEntitiesWorkspaceThemes
|
|
19397
|
+
*/
|
|
19398
|
+
readonly xGDCVALIDATERELATIONS?: boolean;
|
|
19399
|
+
/**
|
|
19400
|
+
* Include Meta objects.
|
|
19401
|
+
* @type {Array<'origin' | 'page' | 'all' | 'ALL'>}
|
|
19402
|
+
* @memberof AppearanceApiGetAllEntitiesWorkspaceThemes
|
|
19403
|
+
*/
|
|
19404
|
+
readonly metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>;
|
|
19405
|
+
}
|
|
18636
19406
|
/**
|
|
18637
19407
|
* Request parameters for getEntityColorPalettes operation in AppearanceApi.
|
|
18638
19408
|
* @export
|
|
@@ -18671,6 +19441,80 @@ export interface AppearanceApiGetEntityThemesRequest {
|
|
|
18671
19441
|
*/
|
|
18672
19442
|
readonly filter?: string;
|
|
18673
19443
|
}
|
|
19444
|
+
/**
|
|
19445
|
+
* Request parameters for getEntityWorkspaceColorPalettes operation in AppearanceApi.
|
|
19446
|
+
* @export
|
|
19447
|
+
* @interface AppearanceApiGetEntityWorkspaceColorPalettesRequest
|
|
19448
|
+
*/
|
|
19449
|
+
export interface AppearanceApiGetEntityWorkspaceColorPalettesRequest {
|
|
19450
|
+
/**
|
|
19451
|
+
*
|
|
19452
|
+
* @type {string}
|
|
19453
|
+
* @memberof AppearanceApiGetEntityWorkspaceColorPalettes
|
|
19454
|
+
*/
|
|
19455
|
+
readonly workspaceId: string;
|
|
19456
|
+
/**
|
|
19457
|
+
*
|
|
19458
|
+
* @type {string}
|
|
19459
|
+
* @memberof AppearanceApiGetEntityWorkspaceColorPalettes
|
|
19460
|
+
*/
|
|
19461
|
+
readonly objectId: string;
|
|
19462
|
+
/**
|
|
19463
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
19464
|
+
* @type {string}
|
|
19465
|
+
* @memberof AppearanceApiGetEntityWorkspaceColorPalettes
|
|
19466
|
+
*/
|
|
19467
|
+
readonly filter?: string;
|
|
19468
|
+
/**
|
|
19469
|
+
*
|
|
19470
|
+
* @type {boolean}
|
|
19471
|
+
* @memberof AppearanceApiGetEntityWorkspaceColorPalettes
|
|
19472
|
+
*/
|
|
19473
|
+
readonly xGDCVALIDATERELATIONS?: boolean;
|
|
19474
|
+
/**
|
|
19475
|
+
* Include Meta objects.
|
|
19476
|
+
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
19477
|
+
* @memberof AppearanceApiGetEntityWorkspaceColorPalettes
|
|
19478
|
+
*/
|
|
19479
|
+
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
19480
|
+
}
|
|
19481
|
+
/**
|
|
19482
|
+
* Request parameters for getEntityWorkspaceThemes operation in AppearanceApi.
|
|
19483
|
+
* @export
|
|
19484
|
+
* @interface AppearanceApiGetEntityWorkspaceThemesRequest
|
|
19485
|
+
*/
|
|
19486
|
+
export interface AppearanceApiGetEntityWorkspaceThemesRequest {
|
|
19487
|
+
/**
|
|
19488
|
+
*
|
|
19489
|
+
* @type {string}
|
|
19490
|
+
* @memberof AppearanceApiGetEntityWorkspaceThemes
|
|
19491
|
+
*/
|
|
19492
|
+
readonly workspaceId: string;
|
|
19493
|
+
/**
|
|
19494
|
+
*
|
|
19495
|
+
* @type {string}
|
|
19496
|
+
* @memberof AppearanceApiGetEntityWorkspaceThemes
|
|
19497
|
+
*/
|
|
19498
|
+
readonly objectId: string;
|
|
19499
|
+
/**
|
|
19500
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
19501
|
+
* @type {string}
|
|
19502
|
+
* @memberof AppearanceApiGetEntityWorkspaceThemes
|
|
19503
|
+
*/
|
|
19504
|
+
readonly filter?: string;
|
|
19505
|
+
/**
|
|
19506
|
+
*
|
|
19507
|
+
* @type {boolean}
|
|
19508
|
+
* @memberof AppearanceApiGetEntityWorkspaceThemes
|
|
19509
|
+
*/
|
|
19510
|
+
readonly xGDCVALIDATERELATIONS?: boolean;
|
|
19511
|
+
/**
|
|
19512
|
+
* Include Meta objects.
|
|
19513
|
+
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
19514
|
+
* @memberof AppearanceApiGetEntityWorkspaceThemes
|
|
19515
|
+
*/
|
|
19516
|
+
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
19517
|
+
}
|
|
18674
19518
|
/**
|
|
18675
19519
|
* Request parameters for patchEntityColorPalettes operation in AppearanceApi.
|
|
18676
19520
|
* @export
|
|
@@ -18721,6 +19565,68 @@ export interface AppearanceApiPatchEntityThemesRequest {
|
|
|
18721
19565
|
*/
|
|
18722
19566
|
readonly filter?: string;
|
|
18723
19567
|
}
|
|
19568
|
+
/**
|
|
19569
|
+
* Request parameters for patchEntityWorkspaceColorPalettes operation in AppearanceApi.
|
|
19570
|
+
* @export
|
|
19571
|
+
* @interface AppearanceApiPatchEntityWorkspaceColorPalettesRequest
|
|
19572
|
+
*/
|
|
19573
|
+
export interface AppearanceApiPatchEntityWorkspaceColorPalettesRequest {
|
|
19574
|
+
/**
|
|
19575
|
+
*
|
|
19576
|
+
* @type {string}
|
|
19577
|
+
* @memberof AppearanceApiPatchEntityWorkspaceColorPalettes
|
|
19578
|
+
*/
|
|
19579
|
+
readonly workspaceId: string;
|
|
19580
|
+
/**
|
|
19581
|
+
*
|
|
19582
|
+
* @type {string}
|
|
19583
|
+
* @memberof AppearanceApiPatchEntityWorkspaceColorPalettes
|
|
19584
|
+
*/
|
|
19585
|
+
readonly objectId: string;
|
|
19586
|
+
/**
|
|
19587
|
+
*
|
|
19588
|
+
* @type {JsonApiWorkspaceColorPalettePatchDocument}
|
|
19589
|
+
* @memberof AppearanceApiPatchEntityWorkspaceColorPalettes
|
|
19590
|
+
*/
|
|
19591
|
+
readonly jsonApiWorkspaceColorPalettePatchDocument: JsonApiWorkspaceColorPalettePatchDocument;
|
|
19592
|
+
/**
|
|
19593
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
19594
|
+
* @type {string}
|
|
19595
|
+
* @memberof AppearanceApiPatchEntityWorkspaceColorPalettes
|
|
19596
|
+
*/
|
|
19597
|
+
readonly filter?: string;
|
|
19598
|
+
}
|
|
19599
|
+
/**
|
|
19600
|
+
* Request parameters for patchEntityWorkspaceThemes operation in AppearanceApi.
|
|
19601
|
+
* @export
|
|
19602
|
+
* @interface AppearanceApiPatchEntityWorkspaceThemesRequest
|
|
19603
|
+
*/
|
|
19604
|
+
export interface AppearanceApiPatchEntityWorkspaceThemesRequest {
|
|
19605
|
+
/**
|
|
19606
|
+
*
|
|
19607
|
+
* @type {string}
|
|
19608
|
+
* @memberof AppearanceApiPatchEntityWorkspaceThemes
|
|
19609
|
+
*/
|
|
19610
|
+
readonly workspaceId: string;
|
|
19611
|
+
/**
|
|
19612
|
+
*
|
|
19613
|
+
* @type {string}
|
|
19614
|
+
* @memberof AppearanceApiPatchEntityWorkspaceThemes
|
|
19615
|
+
*/
|
|
19616
|
+
readonly objectId: string;
|
|
19617
|
+
/**
|
|
19618
|
+
*
|
|
19619
|
+
* @type {JsonApiWorkspaceThemePatchDocument}
|
|
19620
|
+
* @memberof AppearanceApiPatchEntityWorkspaceThemes
|
|
19621
|
+
*/
|
|
19622
|
+
readonly jsonApiWorkspaceThemePatchDocument: JsonApiWorkspaceThemePatchDocument;
|
|
19623
|
+
/**
|
|
19624
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
19625
|
+
* @type {string}
|
|
19626
|
+
* @memberof AppearanceApiPatchEntityWorkspaceThemes
|
|
19627
|
+
*/
|
|
19628
|
+
readonly filter?: string;
|
|
19629
|
+
}
|
|
18724
19630
|
/**
|
|
18725
19631
|
* Request parameters for updateEntityColorPalettes operation in AppearanceApi.
|
|
18726
19632
|
* @export
|
|
@@ -18771,6 +19677,68 @@ export interface AppearanceApiUpdateEntityThemesRequest {
|
|
|
18771
19677
|
*/
|
|
18772
19678
|
readonly filter?: string;
|
|
18773
19679
|
}
|
|
19680
|
+
/**
|
|
19681
|
+
* Request parameters for updateEntityWorkspaceColorPalettes operation in AppearanceApi.
|
|
19682
|
+
* @export
|
|
19683
|
+
* @interface AppearanceApiUpdateEntityWorkspaceColorPalettesRequest
|
|
19684
|
+
*/
|
|
19685
|
+
export interface AppearanceApiUpdateEntityWorkspaceColorPalettesRequest {
|
|
19686
|
+
/**
|
|
19687
|
+
*
|
|
19688
|
+
* @type {string}
|
|
19689
|
+
* @memberof AppearanceApiUpdateEntityWorkspaceColorPalettes
|
|
19690
|
+
*/
|
|
19691
|
+
readonly workspaceId: string;
|
|
19692
|
+
/**
|
|
19693
|
+
*
|
|
19694
|
+
* @type {string}
|
|
19695
|
+
* @memberof AppearanceApiUpdateEntityWorkspaceColorPalettes
|
|
19696
|
+
*/
|
|
19697
|
+
readonly objectId: string;
|
|
19698
|
+
/**
|
|
19699
|
+
*
|
|
19700
|
+
* @type {JsonApiWorkspaceColorPaletteInDocument}
|
|
19701
|
+
* @memberof AppearanceApiUpdateEntityWorkspaceColorPalettes
|
|
19702
|
+
*/
|
|
19703
|
+
readonly jsonApiWorkspaceColorPaletteInDocument: JsonApiWorkspaceColorPaletteInDocument;
|
|
19704
|
+
/**
|
|
19705
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
19706
|
+
* @type {string}
|
|
19707
|
+
* @memberof AppearanceApiUpdateEntityWorkspaceColorPalettes
|
|
19708
|
+
*/
|
|
19709
|
+
readonly filter?: string;
|
|
19710
|
+
}
|
|
19711
|
+
/**
|
|
19712
|
+
* Request parameters for updateEntityWorkspaceThemes operation in AppearanceApi.
|
|
19713
|
+
* @export
|
|
19714
|
+
* @interface AppearanceApiUpdateEntityWorkspaceThemesRequest
|
|
19715
|
+
*/
|
|
19716
|
+
export interface AppearanceApiUpdateEntityWorkspaceThemesRequest {
|
|
19717
|
+
/**
|
|
19718
|
+
*
|
|
19719
|
+
* @type {string}
|
|
19720
|
+
* @memberof AppearanceApiUpdateEntityWorkspaceThemes
|
|
19721
|
+
*/
|
|
19722
|
+
readonly workspaceId: string;
|
|
19723
|
+
/**
|
|
19724
|
+
*
|
|
19725
|
+
* @type {string}
|
|
19726
|
+
* @memberof AppearanceApiUpdateEntityWorkspaceThemes
|
|
19727
|
+
*/
|
|
19728
|
+
readonly objectId: string;
|
|
19729
|
+
/**
|
|
19730
|
+
*
|
|
19731
|
+
* @type {JsonApiWorkspaceThemeInDocument}
|
|
19732
|
+
* @memberof AppearanceApiUpdateEntityWorkspaceThemes
|
|
19733
|
+
*/
|
|
19734
|
+
readonly jsonApiWorkspaceThemeInDocument: JsonApiWorkspaceThemeInDocument;
|
|
19735
|
+
/**
|
|
19736
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
19737
|
+
* @type {string}
|
|
19738
|
+
* @memberof AppearanceApiUpdateEntityWorkspaceThemes
|
|
19739
|
+
*/
|
|
19740
|
+
readonly filter?: string;
|
|
19741
|
+
}
|
|
18774
19742
|
/**
|
|
18775
19743
|
* AppearanceApi - object-oriented interface
|
|
18776
19744
|
* @export
|
|
@@ -18796,6 +19764,24 @@ export declare class AppearanceApi extends BaseAPI implements AppearanceApiInter
|
|
|
18796
19764
|
* @memberof AppearanceApi
|
|
18797
19765
|
*/
|
|
18798
19766
|
createEntityThemes(requestParameters: AppearanceApiCreateEntityThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiThemeOutDocument>;
|
|
19767
|
+
/**
|
|
19768
|
+
*
|
|
19769
|
+
* @summary Post Workspace Color Palette
|
|
19770
|
+
* @param {AppearanceApiCreateEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
19771
|
+
* @param {*} [options] Override http request option.
|
|
19772
|
+
* @throws {RequiredError}
|
|
19773
|
+
* @memberof AppearanceApi
|
|
19774
|
+
*/
|
|
19775
|
+
createEntityWorkspaceColorPalettes(requestParameters: AppearanceApiCreateEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
19776
|
+
/**
|
|
19777
|
+
*
|
|
19778
|
+
* @summary Post Workspace Theme
|
|
19779
|
+
* @param {AppearanceApiCreateEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
19780
|
+
* @param {*} [options] Override http request option.
|
|
19781
|
+
* @throws {RequiredError}
|
|
19782
|
+
* @memberof AppearanceApi
|
|
19783
|
+
*/
|
|
19784
|
+
createEntityWorkspaceThemes(requestParameters: AppearanceApiCreateEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
18799
19785
|
/**
|
|
18800
19786
|
*
|
|
18801
19787
|
* @summary Delete a Color Pallette
|
|
@@ -18814,6 +19800,24 @@ export declare class AppearanceApi extends BaseAPI implements AppearanceApiInter
|
|
|
18814
19800
|
* @memberof AppearanceApi
|
|
18815
19801
|
*/
|
|
18816
19802
|
deleteEntityThemes(requestParameters: AppearanceApiDeleteEntityThemesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
19803
|
+
/**
|
|
19804
|
+
*
|
|
19805
|
+
* @summary Delete a Workspace Color Palette
|
|
19806
|
+
* @param {AppearanceApiDeleteEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
19807
|
+
* @param {*} [options] Override http request option.
|
|
19808
|
+
* @throws {RequiredError}
|
|
19809
|
+
* @memberof AppearanceApi
|
|
19810
|
+
*/
|
|
19811
|
+
deleteEntityWorkspaceColorPalettes(requestParameters: AppearanceApiDeleteEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
19812
|
+
/**
|
|
19813
|
+
*
|
|
19814
|
+
* @summary Delete a Workspace Theme
|
|
19815
|
+
* @param {AppearanceApiDeleteEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
19816
|
+
* @param {*} [options] Override http request option.
|
|
19817
|
+
* @throws {RequiredError}
|
|
19818
|
+
* @memberof AppearanceApi
|
|
19819
|
+
*/
|
|
19820
|
+
deleteEntityWorkspaceThemes(requestParameters: AppearanceApiDeleteEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
18817
19821
|
/**
|
|
18818
19822
|
*
|
|
18819
19823
|
* @summary Get all Color Pallettes
|
|
@@ -18832,6 +19836,24 @@ export declare class AppearanceApi extends BaseAPI implements AppearanceApiInter
|
|
|
18832
19836
|
* @memberof AppearanceApi
|
|
18833
19837
|
*/
|
|
18834
19838
|
getAllEntitiesThemes(requestParameters?: AppearanceApiGetAllEntitiesThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiThemeOutList>;
|
|
19839
|
+
/**
|
|
19840
|
+
*
|
|
19841
|
+
* @summary Get all Workspace Color Palettes
|
|
19842
|
+
* @param {AppearanceApiGetAllEntitiesWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
19843
|
+
* @param {*} [options] Override http request option.
|
|
19844
|
+
* @throws {RequiredError}
|
|
19845
|
+
* @memberof AppearanceApi
|
|
19846
|
+
*/
|
|
19847
|
+
getAllEntitiesWorkspaceColorPalettes(requestParameters: AppearanceApiGetAllEntitiesWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutList>;
|
|
19848
|
+
/**
|
|
19849
|
+
*
|
|
19850
|
+
* @summary Get all Workspace Themes
|
|
19851
|
+
* @param {AppearanceApiGetAllEntitiesWorkspaceThemesRequest} requestParameters Request parameters.
|
|
19852
|
+
* @param {*} [options] Override http request option.
|
|
19853
|
+
* @throws {RequiredError}
|
|
19854
|
+
* @memberof AppearanceApi
|
|
19855
|
+
*/
|
|
19856
|
+
getAllEntitiesWorkspaceThemes(requestParameters: AppearanceApiGetAllEntitiesWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutList>;
|
|
18835
19857
|
/**
|
|
18836
19858
|
*
|
|
18837
19859
|
* @summary Get Color Pallette
|
|
@@ -18850,6 +19872,24 @@ export declare class AppearanceApi extends BaseAPI implements AppearanceApiInter
|
|
|
18850
19872
|
* @memberof AppearanceApi
|
|
18851
19873
|
*/
|
|
18852
19874
|
getEntityThemes(requestParameters: AppearanceApiGetEntityThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiThemeOutDocument>;
|
|
19875
|
+
/**
|
|
19876
|
+
*
|
|
19877
|
+
* @summary Get a Workspace Color Palette
|
|
19878
|
+
* @param {AppearanceApiGetEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
19879
|
+
* @param {*} [options] Override http request option.
|
|
19880
|
+
* @throws {RequiredError}
|
|
19881
|
+
* @memberof AppearanceApi
|
|
19882
|
+
*/
|
|
19883
|
+
getEntityWorkspaceColorPalettes(requestParameters: AppearanceApiGetEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
19884
|
+
/**
|
|
19885
|
+
*
|
|
19886
|
+
* @summary Get a Workspace Theme
|
|
19887
|
+
* @param {AppearanceApiGetEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
19888
|
+
* @param {*} [options] Override http request option.
|
|
19889
|
+
* @throws {RequiredError}
|
|
19890
|
+
* @memberof AppearanceApi
|
|
19891
|
+
*/
|
|
19892
|
+
getEntityWorkspaceThemes(requestParameters: AppearanceApiGetEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
18853
19893
|
/**
|
|
18854
19894
|
*
|
|
18855
19895
|
* @summary Patch Color Pallette
|
|
@@ -18868,6 +19908,24 @@ export declare class AppearanceApi extends BaseAPI implements AppearanceApiInter
|
|
|
18868
19908
|
* @memberof AppearanceApi
|
|
18869
19909
|
*/
|
|
18870
19910
|
patchEntityThemes(requestParameters: AppearanceApiPatchEntityThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiThemeOutDocument>;
|
|
19911
|
+
/**
|
|
19912
|
+
*
|
|
19913
|
+
* @summary Patch a Workspace Color Palette
|
|
19914
|
+
* @param {AppearanceApiPatchEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
19915
|
+
* @param {*} [options] Override http request option.
|
|
19916
|
+
* @throws {RequiredError}
|
|
19917
|
+
* @memberof AppearanceApi
|
|
19918
|
+
*/
|
|
19919
|
+
patchEntityWorkspaceColorPalettes(requestParameters: AppearanceApiPatchEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
19920
|
+
/**
|
|
19921
|
+
*
|
|
19922
|
+
* @summary Patch a Workspace Theme
|
|
19923
|
+
* @param {AppearanceApiPatchEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
19924
|
+
* @param {*} [options] Override http request option.
|
|
19925
|
+
* @throws {RequiredError}
|
|
19926
|
+
* @memberof AppearanceApi
|
|
19927
|
+
*/
|
|
19928
|
+
patchEntityWorkspaceThemes(requestParameters: AppearanceApiPatchEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
18871
19929
|
/**
|
|
18872
19930
|
*
|
|
18873
19931
|
* @summary Put Color Pallette
|
|
@@ -18886,6 +19944,24 @@ export declare class AppearanceApi extends BaseAPI implements AppearanceApiInter
|
|
|
18886
19944
|
* @memberof AppearanceApi
|
|
18887
19945
|
*/
|
|
18888
19946
|
updateEntityThemes(requestParameters: AppearanceApiUpdateEntityThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiThemeOutDocument>;
|
|
19947
|
+
/**
|
|
19948
|
+
*
|
|
19949
|
+
* @summary Put a Workspace Color Palette
|
|
19950
|
+
* @param {AppearanceApiUpdateEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
19951
|
+
* @param {*} [options] Override http request option.
|
|
19952
|
+
* @throws {RequiredError}
|
|
19953
|
+
* @memberof AppearanceApi
|
|
19954
|
+
*/
|
|
19955
|
+
updateEntityWorkspaceColorPalettes(requestParameters: AppearanceApiUpdateEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
19956
|
+
/**
|
|
19957
|
+
*
|
|
19958
|
+
* @summary Put a Workspace Theme
|
|
19959
|
+
* @param {AppearanceApiUpdateEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
19960
|
+
* @param {*} [options] Override http request option.
|
|
19961
|
+
* @throws {RequiredError}
|
|
19962
|
+
* @memberof AppearanceApi
|
|
19963
|
+
*/
|
|
19964
|
+
updateEntityWorkspaceThemes(requestParameters: AppearanceApiUpdateEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
18889
19965
|
}
|
|
18890
19966
|
/**
|
|
18891
19967
|
*
|
|
@@ -31403,6 +32479,17 @@ export declare function EntitiesApiAxiosParamCreator_CreateEntityUsers(jsonApiUs
|
|
|
31403
32479
|
* @throws {RequiredError}
|
|
31404
32480
|
*/
|
|
31405
32481
|
export declare function EntitiesApiAxiosParamCreator_CreateEntityVisualizationObjects(workspaceId: string, jsonApiVisualizationObjectPostOptionalIdDocument: JsonApiVisualizationObjectPostOptionalIdDocument, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
32482
|
+
/**
|
|
32483
|
+
*
|
|
32484
|
+
* @summary Post Workspace Color Palette
|
|
32485
|
+
* @param {string} workspaceId
|
|
32486
|
+
* @param {JsonApiWorkspaceColorPaletteInDocument} jsonApiWorkspaceColorPaletteInDocument
|
|
32487
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
32488
|
+
* @param {*} [options] Override http request option.
|
|
32489
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
32490
|
+
* @throws {RequiredError}
|
|
32491
|
+
*/
|
|
32492
|
+
export declare function EntitiesApiAxiosParamCreator_CreateEntityWorkspaceColorPalettes(workspaceId: string, jsonApiWorkspaceColorPaletteInDocument: JsonApiWorkspaceColorPaletteInDocument, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
31406
32493
|
/**
|
|
31407
32494
|
*
|
|
31408
32495
|
* @summary Post Settings for Workspace Data Filters
|
|
@@ -31449,6 +32536,17 @@ export declare function EntitiesApiAxiosParamCreator_CreateEntityWorkspaceExport
|
|
|
31449
32536
|
* @throws {RequiredError}
|
|
31450
32537
|
*/
|
|
31451
32538
|
export declare function EntitiesApiAxiosParamCreator_CreateEntityWorkspaceSettings(workspaceId: string, jsonApiWorkspaceSettingPostOptionalIdDocument: JsonApiWorkspaceSettingPostOptionalIdDocument, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
32539
|
+
/**
|
|
32540
|
+
*
|
|
32541
|
+
* @summary Post Workspace Theme
|
|
32542
|
+
* @param {string} workspaceId
|
|
32543
|
+
* @param {JsonApiWorkspaceThemeInDocument} jsonApiWorkspaceThemeInDocument
|
|
32544
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
32545
|
+
* @param {*} [options] Override http request option.
|
|
32546
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
32547
|
+
* @throws {RequiredError}
|
|
32548
|
+
*/
|
|
32549
|
+
export declare function EntitiesApiAxiosParamCreator_CreateEntityWorkspaceThemes(workspaceId: string, jsonApiWorkspaceThemeInDocument: JsonApiWorkspaceThemeInDocument, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
31452
32550
|
/**
|
|
31453
32551
|
* Space of the shared interest
|
|
31454
32552
|
* @summary Post Workspace entities
|
|
@@ -31783,6 +32881,16 @@ export declare function EntitiesApiAxiosParamCreator_DeleteEntityUsers(id: strin
|
|
|
31783
32881
|
* @throws {RequiredError}
|
|
31784
32882
|
*/
|
|
31785
32883
|
export declare function EntitiesApiAxiosParamCreator_DeleteEntityVisualizationObjects(workspaceId: string, objectId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
32884
|
+
/**
|
|
32885
|
+
*
|
|
32886
|
+
* @summary Delete a Workspace Color Palette
|
|
32887
|
+
* @param {string} workspaceId
|
|
32888
|
+
* @param {string} objectId
|
|
32889
|
+
* @param {*} [options] Override http request option.
|
|
32890
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
32891
|
+
* @throws {RequiredError}
|
|
32892
|
+
*/
|
|
32893
|
+
export declare function EntitiesApiAxiosParamCreator_DeleteEntityWorkspaceColorPalettes(workspaceId: string, objectId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
31786
32894
|
/**
|
|
31787
32895
|
*
|
|
31788
32896
|
* @summary Delete a Settings for Workspace Data Filter
|
|
@@ -31823,6 +32931,16 @@ export declare function EntitiesApiAxiosParamCreator_DeleteEntityWorkspaceExport
|
|
|
31823
32931
|
* @throws {RequiredError}
|
|
31824
32932
|
*/
|
|
31825
32933
|
export declare function EntitiesApiAxiosParamCreator_DeleteEntityWorkspaceSettings(workspaceId: string, objectId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
32934
|
+
/**
|
|
32935
|
+
*
|
|
32936
|
+
* @summary Delete a Workspace Theme
|
|
32937
|
+
* @param {string} workspaceId
|
|
32938
|
+
* @param {string} objectId
|
|
32939
|
+
* @param {*} [options] Override http request option.
|
|
32940
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
32941
|
+
* @throws {RequiredError}
|
|
32942
|
+
*/
|
|
32943
|
+
export declare function EntitiesApiAxiosParamCreator_DeleteEntityWorkspaceThemes(workspaceId: string, objectId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
31826
32944
|
/**
|
|
31827
32945
|
* Space of the shared interest
|
|
31828
32946
|
* @summary Delete Workspace entity
|
|
@@ -32483,6 +33601,22 @@ export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesUsers(filter?
|
|
|
32483
33601
|
* @throws {RequiredError}
|
|
32484
33602
|
*/
|
|
32485
33603
|
export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesVisualizationObjects(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
33604
|
+
/**
|
|
33605
|
+
*
|
|
33606
|
+
* @summary Get all Workspace Color Palettes
|
|
33607
|
+
* @param {string} workspaceId
|
|
33608
|
+
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
33609
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
33610
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
33611
|
+
* @param {number} [size] The size of the page to be returned
|
|
33612
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
33613
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
33614
|
+
* @param {Array<'origin' | 'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
33615
|
+
* @param {*} [options] Override http request option.
|
|
33616
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
33617
|
+
* @throws {RequiredError}
|
|
33618
|
+
*/
|
|
33619
|
+
export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesWorkspaceColorPalettes(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
32486
33620
|
/**
|
|
32487
33621
|
*
|
|
32488
33622
|
* @summary Get all Settings for Workspace Data Filters
|
|
@@ -32549,6 +33683,22 @@ export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesWorkspaceExpo
|
|
|
32549
33683
|
* @throws {RequiredError}
|
|
32550
33684
|
*/
|
|
32551
33685
|
export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesWorkspaceSettings(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
33686
|
+
/**
|
|
33687
|
+
*
|
|
33688
|
+
* @summary Get all Workspace Themes
|
|
33689
|
+
* @param {string} workspaceId
|
|
33690
|
+
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
33691
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
33692
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
33693
|
+
* @param {number} [size] The size of the page to be returned
|
|
33694
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
33695
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
33696
|
+
* @param {Array<'origin' | 'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
33697
|
+
* @param {*} [options] Override http request option.
|
|
33698
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
33699
|
+
* @throws {RequiredError}
|
|
33700
|
+
*/
|
|
33701
|
+
export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesWorkspaceThemes(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
32552
33702
|
/**
|
|
32553
33703
|
* Space of the shared interest
|
|
32554
33704
|
* @summary Get Workspace entities
|
|
@@ -33114,6 +34264,19 @@ export declare function EntitiesApiAxiosParamCreator_GetEntityUsers(id: string,
|
|
|
33114
34264
|
* @throws {RequiredError}
|
|
33115
34265
|
*/
|
|
33116
34266
|
export declare function EntitiesApiAxiosParamCreator_GetEntityVisualizationObjects(workspaceId: string, objectId: string, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
34267
|
+
/**
|
|
34268
|
+
*
|
|
34269
|
+
* @summary Get a Workspace Color Palette
|
|
34270
|
+
* @param {string} workspaceId
|
|
34271
|
+
* @param {string} objectId
|
|
34272
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
34273
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
34274
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
34275
|
+
* @param {*} [options] Override http request option.
|
|
34276
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
34277
|
+
* @throws {RequiredError}
|
|
34278
|
+
*/
|
|
34279
|
+
export declare function EntitiesApiAxiosParamCreator_GetEntityWorkspaceColorPalettes(workspaceId: string, objectId: string, filter?: string, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
33117
34280
|
/**
|
|
33118
34281
|
*
|
|
33119
34282
|
* @summary Get a Setting for Workspace Data Filter
|
|
@@ -33168,6 +34331,19 @@ export declare function EntitiesApiAxiosParamCreator_GetEntityWorkspaceExportTem
|
|
|
33168
34331
|
* @throws {RequiredError}
|
|
33169
34332
|
*/
|
|
33170
34333
|
export declare function EntitiesApiAxiosParamCreator_GetEntityWorkspaceSettings(workspaceId: string, objectId: string, filter?: string, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
34334
|
+
/**
|
|
34335
|
+
*
|
|
34336
|
+
* @summary Get a Workspace Theme
|
|
34337
|
+
* @param {string} workspaceId
|
|
34338
|
+
* @param {string} objectId
|
|
34339
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
34340
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
34341
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
34342
|
+
* @param {*} [options] Override http request option.
|
|
34343
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
34344
|
+
* @throws {RequiredError}
|
|
34345
|
+
*/
|
|
34346
|
+
export declare function EntitiesApiAxiosParamCreator_GetEntityWorkspaceThemes(workspaceId: string, objectId: string, filter?: string, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
33171
34347
|
/**
|
|
33172
34348
|
* Space of the shared interest
|
|
33173
34349
|
* @summary Get Workspace entity
|
|
@@ -33623,6 +34799,18 @@ export declare function EntitiesApiAxiosParamCreator_PatchEntityUsers(id: string
|
|
|
33623
34799
|
* @throws {RequiredError}
|
|
33624
34800
|
*/
|
|
33625
34801
|
export declare function EntitiesApiAxiosParamCreator_PatchEntityVisualizationObjects(workspaceId: string, objectId: string, jsonApiVisualizationObjectPatchDocument: JsonApiVisualizationObjectPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
34802
|
+
/**
|
|
34803
|
+
*
|
|
34804
|
+
* @summary Patch a Workspace Color Palette
|
|
34805
|
+
* @param {string} workspaceId
|
|
34806
|
+
* @param {string} objectId
|
|
34807
|
+
* @param {JsonApiWorkspaceColorPalettePatchDocument} jsonApiWorkspaceColorPalettePatchDocument
|
|
34808
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
34809
|
+
* @param {*} [options] Override http request option.
|
|
34810
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
34811
|
+
* @throws {RequiredError}
|
|
34812
|
+
*/
|
|
34813
|
+
export declare function EntitiesApiAxiosParamCreator_PatchEntityWorkspaceColorPalettes(workspaceId: string, objectId: string, jsonApiWorkspaceColorPalettePatchDocument: JsonApiWorkspaceColorPalettePatchDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
33626
34814
|
/**
|
|
33627
34815
|
*
|
|
33628
34816
|
* @summary Patch a Settings for Workspace Data Filter
|
|
@@ -33673,6 +34861,18 @@ export declare function EntitiesApiAxiosParamCreator_PatchEntityWorkspaceExportT
|
|
|
33673
34861
|
* @throws {RequiredError}
|
|
33674
34862
|
*/
|
|
33675
34863
|
export declare function EntitiesApiAxiosParamCreator_PatchEntityWorkspaceSettings(workspaceId: string, objectId: string, jsonApiWorkspaceSettingPatchDocument: JsonApiWorkspaceSettingPatchDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
34864
|
+
/**
|
|
34865
|
+
*
|
|
34866
|
+
* @summary Patch a Workspace Theme
|
|
34867
|
+
* @param {string} workspaceId
|
|
34868
|
+
* @param {string} objectId
|
|
34869
|
+
* @param {JsonApiWorkspaceThemePatchDocument} jsonApiWorkspaceThemePatchDocument
|
|
34870
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
34871
|
+
* @param {*} [options] Override http request option.
|
|
34872
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
34873
|
+
* @throws {RequiredError}
|
|
34874
|
+
*/
|
|
34875
|
+
export declare function EntitiesApiAxiosParamCreator_PatchEntityWorkspaceThemes(workspaceId: string, objectId: string, jsonApiWorkspaceThemePatchDocument: JsonApiWorkspaceThemePatchDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
33676
34876
|
/**
|
|
33677
34877
|
* Space of the shared interest
|
|
33678
34878
|
* @summary Patch Workspace entity
|
|
@@ -34379,6 +35579,18 @@ export declare function EntitiesApiAxiosParamCreator_UpdateEntityUsers(id: strin
|
|
|
34379
35579
|
* @throws {RequiredError}
|
|
34380
35580
|
*/
|
|
34381
35581
|
export declare function EntitiesApiAxiosParamCreator_UpdateEntityVisualizationObjects(workspaceId: string, objectId: string, jsonApiVisualizationObjectInDocument: JsonApiVisualizationObjectInDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
35582
|
+
/**
|
|
35583
|
+
*
|
|
35584
|
+
* @summary Put a Workspace Color Palette
|
|
35585
|
+
* @param {string} workspaceId
|
|
35586
|
+
* @param {string} objectId
|
|
35587
|
+
* @param {JsonApiWorkspaceColorPaletteInDocument} jsonApiWorkspaceColorPaletteInDocument
|
|
35588
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
35589
|
+
* @param {*} [options] Override http request option.
|
|
35590
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
35591
|
+
* @throws {RequiredError}
|
|
35592
|
+
*/
|
|
35593
|
+
export declare function EntitiesApiAxiosParamCreator_UpdateEntityWorkspaceColorPalettes(workspaceId: string, objectId: string, jsonApiWorkspaceColorPaletteInDocument: JsonApiWorkspaceColorPaletteInDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
34382
35594
|
/**
|
|
34383
35595
|
*
|
|
34384
35596
|
* @summary Put a Settings for Workspace Data Filter
|
|
@@ -34429,6 +35641,18 @@ export declare function EntitiesApiAxiosParamCreator_UpdateEntityWorkspaceExport
|
|
|
34429
35641
|
* @throws {RequiredError}
|
|
34430
35642
|
*/
|
|
34431
35643
|
export declare function EntitiesApiAxiosParamCreator_UpdateEntityWorkspaceSettings(workspaceId: string, objectId: string, jsonApiWorkspaceSettingInDocument: JsonApiWorkspaceSettingInDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
35644
|
+
/**
|
|
35645
|
+
*
|
|
35646
|
+
* @summary Put a Workspace Theme
|
|
35647
|
+
* @param {string} workspaceId
|
|
35648
|
+
* @param {string} objectId
|
|
35649
|
+
* @param {JsonApiWorkspaceThemeInDocument} jsonApiWorkspaceThemeInDocument
|
|
35650
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
35651
|
+
* @param {*} [options] Override http request option.
|
|
35652
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
35653
|
+
* @throws {RequiredError}
|
|
35654
|
+
*/
|
|
35655
|
+
export declare function EntitiesApiAxiosParamCreator_UpdateEntityWorkspaceThemes(workspaceId: string, objectId: string, jsonApiWorkspaceThemeInDocument: JsonApiWorkspaceThemeInDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
34432
35656
|
/**
|
|
34433
35657
|
* Space of the shared interest
|
|
34434
35658
|
* @summary Put Workspace entity
|
|
@@ -34814,6 +36038,17 @@ export declare function EntitiesApi_CreateEntityUsers(axios: AxiosInstance, base
|
|
|
34814
36038
|
* @throws {RequiredError}
|
|
34815
36039
|
*/
|
|
34816
36040
|
export declare function EntitiesApi_CreateEntityVisualizationObjects(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiCreateEntityVisualizationObjectsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiVisualizationObjectOutDocument>;
|
|
36041
|
+
/**
|
|
36042
|
+
*
|
|
36043
|
+
* @summary Post Workspace Color Palette
|
|
36044
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
36045
|
+
* @param {string} basePath Base path.
|
|
36046
|
+
* @param {EntitiesApiCreateEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
36047
|
+
* @param {*} [options] Override http request option.
|
|
36048
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
36049
|
+
* @throws {RequiredError}
|
|
36050
|
+
*/
|
|
36051
|
+
export declare function EntitiesApi_CreateEntityWorkspaceColorPalettes(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiCreateEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
34817
36052
|
/**
|
|
34818
36053
|
*
|
|
34819
36054
|
* @summary Post Settings for Workspace Data Filters
|
|
@@ -34858,6 +36093,17 @@ export declare function EntitiesApi_CreateEntityWorkspaceExportTemplates(axios:
|
|
|
34858
36093
|
* @throws {RequiredError}
|
|
34859
36094
|
*/
|
|
34860
36095
|
export declare function EntitiesApi_CreateEntityWorkspaceSettings(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiCreateEntityWorkspaceSettingsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceSettingOutDocument>;
|
|
36096
|
+
/**
|
|
36097
|
+
*
|
|
36098
|
+
* @summary Post Workspace Theme
|
|
36099
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
36100
|
+
* @param {string} basePath Base path.
|
|
36101
|
+
* @param {EntitiesApiCreateEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
36102
|
+
* @param {*} [options] Override http request option.
|
|
36103
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
36104
|
+
* @throws {RequiredError}
|
|
36105
|
+
*/
|
|
36106
|
+
export declare function EntitiesApi_CreateEntityWorkspaceThemes(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiCreateEntityWorkspaceThemesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
34861
36107
|
/**
|
|
34862
36108
|
* Space of the shared interest
|
|
34863
36109
|
* @summary Post Workspace entities
|
|
@@ -35243,6 +36489,17 @@ export declare function EntitiesApi_DeleteEntityUsers(axios: AxiosInstance, base
|
|
|
35243
36489
|
* @throws {RequiredError}
|
|
35244
36490
|
*/
|
|
35245
36491
|
export declare function EntitiesApi_DeleteEntityVisualizationObjects(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiDeleteEntityVisualizationObjectsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
36492
|
+
/**
|
|
36493
|
+
*
|
|
36494
|
+
* @summary Delete a Workspace Color Palette
|
|
36495
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
36496
|
+
* @param {string} basePath Base path.
|
|
36497
|
+
* @param {EntitiesApiDeleteEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
36498
|
+
* @param {*} [options] Override http request option.
|
|
36499
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
36500
|
+
* @throws {RequiredError}
|
|
36501
|
+
*/
|
|
36502
|
+
export declare function EntitiesApi_DeleteEntityWorkspaceColorPalettes(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiDeleteEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
35246
36503
|
/**
|
|
35247
36504
|
*
|
|
35248
36505
|
* @summary Delete a Settings for Workspace Data Filter
|
|
@@ -35287,6 +36544,17 @@ export declare function EntitiesApi_DeleteEntityWorkspaceExportTemplates(axios:
|
|
|
35287
36544
|
* @throws {RequiredError}
|
|
35288
36545
|
*/
|
|
35289
36546
|
export declare function EntitiesApi_DeleteEntityWorkspaceSettings(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiDeleteEntityWorkspaceSettingsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
36547
|
+
/**
|
|
36548
|
+
*
|
|
36549
|
+
* @summary Delete a Workspace Theme
|
|
36550
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
36551
|
+
* @param {string} basePath Base path.
|
|
36552
|
+
* @param {EntitiesApiDeleteEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
36553
|
+
* @param {*} [options] Override http request option.
|
|
36554
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
36555
|
+
* @throws {RequiredError}
|
|
36556
|
+
*/
|
|
36557
|
+
export declare function EntitiesApi_DeleteEntityWorkspaceThemes(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiDeleteEntityWorkspaceThemesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
35290
36558
|
/**
|
|
35291
36559
|
* Space of the shared interest
|
|
35292
36560
|
* @summary Delete Workspace entity
|
|
@@ -35781,6 +37049,17 @@ export declare function EntitiesApi_GetAllEntitiesUsers(axios: AxiosInstance, ba
|
|
|
35781
37049
|
* @throws {RequiredError}
|
|
35782
37050
|
*/
|
|
35783
37051
|
export declare function EntitiesApi_GetAllEntitiesVisualizationObjects(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetAllEntitiesVisualizationObjectsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiVisualizationObjectOutList>;
|
|
37052
|
+
/**
|
|
37053
|
+
*
|
|
37054
|
+
* @summary Get all Workspace Color Palettes
|
|
37055
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
37056
|
+
* @param {string} basePath Base path.
|
|
37057
|
+
* @param {EntitiesApiGetAllEntitiesWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
37058
|
+
* @param {*} [options] Override http request option.
|
|
37059
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
37060
|
+
* @throws {RequiredError}
|
|
37061
|
+
*/
|
|
37062
|
+
export declare function EntitiesApi_GetAllEntitiesWorkspaceColorPalettes(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetAllEntitiesWorkspaceColorPalettesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceColorPaletteOutList>;
|
|
35784
37063
|
/**
|
|
35785
37064
|
*
|
|
35786
37065
|
* @summary Get all Settings for Workspace Data Filters
|
|
@@ -35825,6 +37104,17 @@ export declare function EntitiesApi_GetAllEntitiesWorkspaceExportTemplates(axios
|
|
|
35825
37104
|
* @throws {RequiredError}
|
|
35826
37105
|
*/
|
|
35827
37106
|
export declare function EntitiesApi_GetAllEntitiesWorkspaceSettings(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetAllEntitiesWorkspaceSettingsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceSettingOutList>;
|
|
37107
|
+
/**
|
|
37108
|
+
*
|
|
37109
|
+
* @summary Get all Workspace Themes
|
|
37110
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
37111
|
+
* @param {string} basePath Base path.
|
|
37112
|
+
* @param {EntitiesApiGetAllEntitiesWorkspaceThemesRequest} requestParameters Request parameters.
|
|
37113
|
+
* @param {*} [options] Override http request option.
|
|
37114
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
37115
|
+
* @throws {RequiredError}
|
|
37116
|
+
*/
|
|
37117
|
+
export declare function EntitiesApi_GetAllEntitiesWorkspaceThemes(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetAllEntitiesWorkspaceThemesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceThemeOutList>;
|
|
35828
37118
|
/**
|
|
35829
37119
|
* Space of the shared interest
|
|
35830
37120
|
* @summary Get Workspace entities
|
|
@@ -36353,6 +37643,17 @@ export declare function EntitiesApi_GetEntityUsers(axios: AxiosInstance, basePat
|
|
|
36353
37643
|
* @throws {RequiredError}
|
|
36354
37644
|
*/
|
|
36355
37645
|
export declare function EntitiesApi_GetEntityVisualizationObjects(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetEntityVisualizationObjectsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiVisualizationObjectOutDocument>;
|
|
37646
|
+
/**
|
|
37647
|
+
*
|
|
37648
|
+
* @summary Get a Workspace Color Palette
|
|
37649
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
37650
|
+
* @param {string} basePath Base path.
|
|
37651
|
+
* @param {EntitiesApiGetEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
37652
|
+
* @param {*} [options] Override http request option.
|
|
37653
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
37654
|
+
* @throws {RequiredError}
|
|
37655
|
+
*/
|
|
37656
|
+
export declare function EntitiesApi_GetEntityWorkspaceColorPalettes(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
36356
37657
|
/**
|
|
36357
37658
|
*
|
|
36358
37659
|
* @summary Get a Setting for Workspace Data Filter
|
|
@@ -36397,6 +37698,17 @@ export declare function EntitiesApi_GetEntityWorkspaceExportTemplates(axios: Axi
|
|
|
36397
37698
|
* @throws {RequiredError}
|
|
36398
37699
|
*/
|
|
36399
37700
|
export declare function EntitiesApi_GetEntityWorkspaceSettings(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetEntityWorkspaceSettingsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceSettingOutDocument>;
|
|
37701
|
+
/**
|
|
37702
|
+
*
|
|
37703
|
+
* @summary Get a Workspace Theme
|
|
37704
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
37705
|
+
* @param {string} basePath Base path.
|
|
37706
|
+
* @param {EntitiesApiGetEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
37707
|
+
* @param {*} [options] Override http request option.
|
|
37708
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
37709
|
+
* @throws {RequiredError}
|
|
37710
|
+
*/
|
|
37711
|
+
export declare function EntitiesApi_GetEntityWorkspaceThemes(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetEntityWorkspaceThemesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
36400
37712
|
/**
|
|
36401
37713
|
* Space of the shared interest
|
|
36402
37714
|
* @summary Get Workspace entity
|
|
@@ -36815,6 +38127,17 @@ export declare function EntitiesApi_PatchEntityUsers(axios: AxiosInstance, baseP
|
|
|
36815
38127
|
* @throws {RequiredError}
|
|
36816
38128
|
*/
|
|
36817
38129
|
export declare function EntitiesApi_PatchEntityVisualizationObjects(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiPatchEntityVisualizationObjectsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiVisualizationObjectOutDocument>;
|
|
38130
|
+
/**
|
|
38131
|
+
*
|
|
38132
|
+
* @summary Patch a Workspace Color Palette
|
|
38133
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
38134
|
+
* @param {string} basePath Base path.
|
|
38135
|
+
* @param {EntitiesApiPatchEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
38136
|
+
* @param {*} [options] Override http request option.
|
|
38137
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
38138
|
+
* @throws {RequiredError}
|
|
38139
|
+
*/
|
|
38140
|
+
export declare function EntitiesApi_PatchEntityWorkspaceColorPalettes(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiPatchEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
36818
38141
|
/**
|
|
36819
38142
|
*
|
|
36820
38143
|
* @summary Patch a Settings for Workspace Data Filter
|
|
@@ -36859,6 +38182,17 @@ export declare function EntitiesApi_PatchEntityWorkspaceExportTemplates(axios: A
|
|
|
36859
38182
|
* @throws {RequiredError}
|
|
36860
38183
|
*/
|
|
36861
38184
|
export declare function EntitiesApi_PatchEntityWorkspaceSettings(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiPatchEntityWorkspaceSettingsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceSettingOutDocument>;
|
|
38185
|
+
/**
|
|
38186
|
+
*
|
|
38187
|
+
* @summary Patch a Workspace Theme
|
|
38188
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
38189
|
+
* @param {string} basePath Base path.
|
|
38190
|
+
* @param {EntitiesApiPatchEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
38191
|
+
* @param {*} [options] Override http request option.
|
|
38192
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
38193
|
+
* @throws {RequiredError}
|
|
38194
|
+
*/
|
|
38195
|
+
export declare function EntitiesApi_PatchEntityWorkspaceThemes(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiPatchEntityWorkspaceThemesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
36862
38196
|
/**
|
|
36863
38197
|
* Space of the shared interest
|
|
36864
38198
|
* @summary Patch Workspace entity
|
|
@@ -37508,6 +38842,17 @@ export declare function EntitiesApi_UpdateEntityUsers(axios: AxiosInstance, base
|
|
|
37508
38842
|
* @throws {RequiredError}
|
|
37509
38843
|
*/
|
|
37510
38844
|
export declare function EntitiesApi_UpdateEntityVisualizationObjects(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiUpdateEntityVisualizationObjectsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiVisualizationObjectOutDocument>;
|
|
38845
|
+
/**
|
|
38846
|
+
*
|
|
38847
|
+
* @summary Put a Workspace Color Palette
|
|
38848
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
38849
|
+
* @param {string} basePath Base path.
|
|
38850
|
+
* @param {EntitiesApiUpdateEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
38851
|
+
* @param {*} [options] Override http request option.
|
|
38852
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
38853
|
+
* @throws {RequiredError}
|
|
38854
|
+
*/
|
|
38855
|
+
export declare function EntitiesApi_UpdateEntityWorkspaceColorPalettes(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiUpdateEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
37511
38856
|
/**
|
|
37512
38857
|
*
|
|
37513
38858
|
* @summary Put a Settings for Workspace Data Filter
|
|
@@ -37552,6 +38897,17 @@ export declare function EntitiesApi_UpdateEntityWorkspaceExportTemplates(axios:
|
|
|
37552
38897
|
* @throws {RequiredError}
|
|
37553
38898
|
*/
|
|
37554
38899
|
export declare function EntitiesApi_UpdateEntityWorkspaceSettings(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiUpdateEntityWorkspaceSettingsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceSettingOutDocument>;
|
|
38900
|
+
/**
|
|
38901
|
+
*
|
|
38902
|
+
* @summary Put a Workspace Theme
|
|
38903
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
38904
|
+
* @param {string} basePath Base path.
|
|
38905
|
+
* @param {EntitiesApiUpdateEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
38906
|
+
* @param {*} [options] Override http request option.
|
|
38907
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
38908
|
+
* @throws {RequiredError}
|
|
38909
|
+
*/
|
|
38910
|
+
export declare function EntitiesApi_UpdateEntityWorkspaceThemes(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiUpdateEntityWorkspaceThemesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
37555
38911
|
/**
|
|
37556
38912
|
* Space of the shared interest
|
|
37557
38913
|
* @summary Put Workspace entity
|
|
@@ -37875,6 +39231,15 @@ export interface EntitiesApiInterface {
|
|
|
37875
39231
|
* @memberof EntitiesApiInterface
|
|
37876
39232
|
*/
|
|
37877
39233
|
createEntityVisualizationObjects(requestParameters: EntitiesApiCreateEntityVisualizationObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiVisualizationObjectOutDocument>;
|
|
39234
|
+
/**
|
|
39235
|
+
*
|
|
39236
|
+
* @summary Post Workspace Color Palette
|
|
39237
|
+
* @param {EntitiesApiCreateEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
39238
|
+
* @param {*} [options] Override http request option.
|
|
39239
|
+
* @throws {RequiredError}
|
|
39240
|
+
* @memberof EntitiesApiInterface
|
|
39241
|
+
*/
|
|
39242
|
+
createEntityWorkspaceColorPalettes(requestParameters: EntitiesApiCreateEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
37878
39243
|
/**
|
|
37879
39244
|
*
|
|
37880
39245
|
* @summary Post Settings for Workspace Data Filters
|
|
@@ -37911,6 +39276,15 @@ export interface EntitiesApiInterface {
|
|
|
37911
39276
|
* @memberof EntitiesApiInterface
|
|
37912
39277
|
*/
|
|
37913
39278
|
createEntityWorkspaceSettings(requestParameters: EntitiesApiCreateEntityWorkspaceSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceSettingOutDocument>;
|
|
39279
|
+
/**
|
|
39280
|
+
*
|
|
39281
|
+
* @summary Post Workspace Theme
|
|
39282
|
+
* @param {EntitiesApiCreateEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
39283
|
+
* @param {*} [options] Override http request option.
|
|
39284
|
+
* @throws {RequiredError}
|
|
39285
|
+
* @memberof EntitiesApiInterface
|
|
39286
|
+
*/
|
|
39287
|
+
createEntityWorkspaceThemes(requestParameters: EntitiesApiCreateEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
37914
39288
|
/**
|
|
37915
39289
|
* Space of the shared interest
|
|
37916
39290
|
* @summary Post Workspace entities
|
|
@@ -38227,6 +39601,15 @@ export interface EntitiesApiInterface {
|
|
|
38227
39601
|
* @memberof EntitiesApiInterface
|
|
38228
39602
|
*/
|
|
38229
39603
|
deleteEntityVisualizationObjects(requestParameters: EntitiesApiDeleteEntityVisualizationObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
39604
|
+
/**
|
|
39605
|
+
*
|
|
39606
|
+
* @summary Delete a Workspace Color Palette
|
|
39607
|
+
* @param {EntitiesApiDeleteEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
39608
|
+
* @param {*} [options] Override http request option.
|
|
39609
|
+
* @throws {RequiredError}
|
|
39610
|
+
* @memberof EntitiesApiInterface
|
|
39611
|
+
*/
|
|
39612
|
+
deleteEntityWorkspaceColorPalettes(requestParameters: EntitiesApiDeleteEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
38230
39613
|
/**
|
|
38231
39614
|
*
|
|
38232
39615
|
* @summary Delete a Settings for Workspace Data Filter
|
|
@@ -38263,6 +39646,15 @@ export interface EntitiesApiInterface {
|
|
|
38263
39646
|
* @memberof EntitiesApiInterface
|
|
38264
39647
|
*/
|
|
38265
39648
|
deleteEntityWorkspaceSettings(requestParameters: EntitiesApiDeleteEntityWorkspaceSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
39649
|
+
/**
|
|
39650
|
+
*
|
|
39651
|
+
* @summary Delete a Workspace Theme
|
|
39652
|
+
* @param {EntitiesApiDeleteEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
39653
|
+
* @param {*} [options] Override http request option.
|
|
39654
|
+
* @throws {RequiredError}
|
|
39655
|
+
* @memberof EntitiesApiInterface
|
|
39656
|
+
*/
|
|
39657
|
+
deleteEntityWorkspaceThemes(requestParameters: EntitiesApiDeleteEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
38266
39658
|
/**
|
|
38267
39659
|
* Space of the shared interest
|
|
38268
39660
|
* @summary Delete Workspace entity
|
|
@@ -38668,6 +40060,15 @@ export interface EntitiesApiInterface {
|
|
|
38668
40060
|
* @memberof EntitiesApiInterface
|
|
38669
40061
|
*/
|
|
38670
40062
|
getAllEntitiesVisualizationObjects(requestParameters: EntitiesApiGetAllEntitiesVisualizationObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiVisualizationObjectOutList>;
|
|
40063
|
+
/**
|
|
40064
|
+
*
|
|
40065
|
+
* @summary Get all Workspace Color Palettes
|
|
40066
|
+
* @param {EntitiesApiGetAllEntitiesWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
40067
|
+
* @param {*} [options] Override http request option.
|
|
40068
|
+
* @throws {RequiredError}
|
|
40069
|
+
* @memberof EntitiesApiInterface
|
|
40070
|
+
*/
|
|
40071
|
+
getAllEntitiesWorkspaceColorPalettes(requestParameters: EntitiesApiGetAllEntitiesWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutList>;
|
|
38671
40072
|
/**
|
|
38672
40073
|
*
|
|
38673
40074
|
* @summary Get all Settings for Workspace Data Filters
|
|
@@ -38704,6 +40105,15 @@ export interface EntitiesApiInterface {
|
|
|
38704
40105
|
* @memberof EntitiesApiInterface
|
|
38705
40106
|
*/
|
|
38706
40107
|
getAllEntitiesWorkspaceSettings(requestParameters: EntitiesApiGetAllEntitiesWorkspaceSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceSettingOutList>;
|
|
40108
|
+
/**
|
|
40109
|
+
*
|
|
40110
|
+
* @summary Get all Workspace Themes
|
|
40111
|
+
* @param {EntitiesApiGetAllEntitiesWorkspaceThemesRequest} requestParameters Request parameters.
|
|
40112
|
+
* @param {*} [options] Override http request option.
|
|
40113
|
+
* @throws {RequiredError}
|
|
40114
|
+
* @memberof EntitiesApiInterface
|
|
40115
|
+
*/
|
|
40116
|
+
getAllEntitiesWorkspaceThemes(requestParameters: EntitiesApiGetAllEntitiesWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutList>;
|
|
38707
40117
|
/**
|
|
38708
40118
|
* Space of the shared interest
|
|
38709
40119
|
* @summary Get Workspace entities
|
|
@@ -39137,6 +40547,15 @@ export interface EntitiesApiInterface {
|
|
|
39137
40547
|
* @memberof EntitiesApiInterface
|
|
39138
40548
|
*/
|
|
39139
40549
|
getEntityVisualizationObjects(requestParameters: EntitiesApiGetEntityVisualizationObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiVisualizationObjectOutDocument>;
|
|
40550
|
+
/**
|
|
40551
|
+
*
|
|
40552
|
+
* @summary Get a Workspace Color Palette
|
|
40553
|
+
* @param {EntitiesApiGetEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
40554
|
+
* @param {*} [options] Override http request option.
|
|
40555
|
+
* @throws {RequiredError}
|
|
40556
|
+
* @memberof EntitiesApiInterface
|
|
40557
|
+
*/
|
|
40558
|
+
getEntityWorkspaceColorPalettes(requestParameters: EntitiesApiGetEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
39140
40559
|
/**
|
|
39141
40560
|
*
|
|
39142
40561
|
* @summary Get a Setting for Workspace Data Filter
|
|
@@ -39173,6 +40592,15 @@ export interface EntitiesApiInterface {
|
|
|
39173
40592
|
* @memberof EntitiesApiInterface
|
|
39174
40593
|
*/
|
|
39175
40594
|
getEntityWorkspaceSettings(requestParameters: EntitiesApiGetEntityWorkspaceSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceSettingOutDocument>;
|
|
40595
|
+
/**
|
|
40596
|
+
*
|
|
40597
|
+
* @summary Get a Workspace Theme
|
|
40598
|
+
* @param {EntitiesApiGetEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
40599
|
+
* @param {*} [options] Override http request option.
|
|
40600
|
+
* @throws {RequiredError}
|
|
40601
|
+
* @memberof EntitiesApiInterface
|
|
40602
|
+
*/
|
|
40603
|
+
getEntityWorkspaceThemes(requestParameters: EntitiesApiGetEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
39176
40604
|
/**
|
|
39177
40605
|
* Space of the shared interest
|
|
39178
40606
|
* @summary Get Workspace entity
|
|
@@ -39516,6 +40944,15 @@ export interface EntitiesApiInterface {
|
|
|
39516
40944
|
* @memberof EntitiesApiInterface
|
|
39517
40945
|
*/
|
|
39518
40946
|
patchEntityVisualizationObjects(requestParameters: EntitiesApiPatchEntityVisualizationObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiVisualizationObjectOutDocument>;
|
|
40947
|
+
/**
|
|
40948
|
+
*
|
|
40949
|
+
* @summary Patch a Workspace Color Palette
|
|
40950
|
+
* @param {EntitiesApiPatchEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
40951
|
+
* @param {*} [options] Override http request option.
|
|
40952
|
+
* @throws {RequiredError}
|
|
40953
|
+
* @memberof EntitiesApiInterface
|
|
40954
|
+
*/
|
|
40955
|
+
patchEntityWorkspaceColorPalettes(requestParameters: EntitiesApiPatchEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
39519
40956
|
/**
|
|
39520
40957
|
*
|
|
39521
40958
|
* @summary Patch a Settings for Workspace Data Filter
|
|
@@ -39552,6 +40989,15 @@ export interface EntitiesApiInterface {
|
|
|
39552
40989
|
* @memberof EntitiesApiInterface
|
|
39553
40990
|
*/
|
|
39554
40991
|
patchEntityWorkspaceSettings(requestParameters: EntitiesApiPatchEntityWorkspaceSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceSettingOutDocument>;
|
|
40992
|
+
/**
|
|
40993
|
+
*
|
|
40994
|
+
* @summary Patch a Workspace Theme
|
|
40995
|
+
* @param {EntitiesApiPatchEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
40996
|
+
* @param {*} [options] Override http request option.
|
|
40997
|
+
* @throws {RequiredError}
|
|
40998
|
+
* @memberof EntitiesApiInterface
|
|
40999
|
+
*/
|
|
41000
|
+
patchEntityWorkspaceThemes(requestParameters: EntitiesApiPatchEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
39555
41001
|
/**
|
|
39556
41002
|
* Space of the shared interest
|
|
39557
41003
|
* @summary Patch Workspace entity
|
|
@@ -40084,6 +41530,15 @@ export interface EntitiesApiInterface {
|
|
|
40084
41530
|
* @memberof EntitiesApiInterface
|
|
40085
41531
|
*/
|
|
40086
41532
|
updateEntityVisualizationObjects(requestParameters: EntitiesApiUpdateEntityVisualizationObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiVisualizationObjectOutDocument>;
|
|
41533
|
+
/**
|
|
41534
|
+
*
|
|
41535
|
+
* @summary Put a Workspace Color Palette
|
|
41536
|
+
* @param {EntitiesApiUpdateEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
41537
|
+
* @param {*} [options] Override http request option.
|
|
41538
|
+
* @throws {RequiredError}
|
|
41539
|
+
* @memberof EntitiesApiInterface
|
|
41540
|
+
*/
|
|
41541
|
+
updateEntityWorkspaceColorPalettes(requestParameters: EntitiesApiUpdateEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
40087
41542
|
/**
|
|
40088
41543
|
*
|
|
40089
41544
|
* @summary Put a Settings for Workspace Data Filter
|
|
@@ -40120,6 +41575,15 @@ export interface EntitiesApiInterface {
|
|
|
40120
41575
|
* @memberof EntitiesApiInterface
|
|
40121
41576
|
*/
|
|
40122
41577
|
updateEntityWorkspaceSettings(requestParameters: EntitiesApiUpdateEntityWorkspaceSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceSettingOutDocument>;
|
|
41578
|
+
/**
|
|
41579
|
+
*
|
|
41580
|
+
* @summary Put a Workspace Theme
|
|
41581
|
+
* @param {EntitiesApiUpdateEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
41582
|
+
* @param {*} [options] Override http request option.
|
|
41583
|
+
* @throws {RequiredError}
|
|
41584
|
+
* @memberof EntitiesApiInterface
|
|
41585
|
+
*/
|
|
41586
|
+
updateEntityWorkspaceThemes(requestParameters: EntitiesApiUpdateEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
40123
41587
|
/**
|
|
40124
41588
|
* Space of the shared interest
|
|
40125
41589
|
* @summary Put Workspace entity
|
|
@@ -40853,6 +42317,31 @@ export interface EntitiesApiCreateEntityVisualizationObjectsRequest {
|
|
|
40853
42317
|
*/
|
|
40854
42318
|
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
40855
42319
|
}
|
|
42320
|
+
/**
|
|
42321
|
+
* Request parameters for createEntityWorkspaceColorPalettes operation in EntitiesApi.
|
|
42322
|
+
* @export
|
|
42323
|
+
* @interface EntitiesApiCreateEntityWorkspaceColorPalettesRequest
|
|
42324
|
+
*/
|
|
42325
|
+
export interface EntitiesApiCreateEntityWorkspaceColorPalettesRequest {
|
|
42326
|
+
/**
|
|
42327
|
+
*
|
|
42328
|
+
* @type {string}
|
|
42329
|
+
* @memberof EntitiesApiCreateEntityWorkspaceColorPalettes
|
|
42330
|
+
*/
|
|
42331
|
+
readonly workspaceId: string;
|
|
42332
|
+
/**
|
|
42333
|
+
*
|
|
42334
|
+
* @type {JsonApiWorkspaceColorPaletteInDocument}
|
|
42335
|
+
* @memberof EntitiesApiCreateEntityWorkspaceColorPalettes
|
|
42336
|
+
*/
|
|
42337
|
+
readonly jsonApiWorkspaceColorPaletteInDocument: JsonApiWorkspaceColorPaletteInDocument;
|
|
42338
|
+
/**
|
|
42339
|
+
* Include Meta objects.
|
|
42340
|
+
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
42341
|
+
* @memberof EntitiesApiCreateEntityWorkspaceColorPalettes
|
|
42342
|
+
*/
|
|
42343
|
+
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
42344
|
+
}
|
|
40856
42345
|
/**
|
|
40857
42346
|
* Request parameters for createEntityWorkspaceDataFilterSettings operation in EntitiesApi.
|
|
40858
42347
|
* @export
|
|
@@ -40965,6 +42454,31 @@ export interface EntitiesApiCreateEntityWorkspaceSettingsRequest {
|
|
|
40965
42454
|
*/
|
|
40966
42455
|
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
40967
42456
|
}
|
|
42457
|
+
/**
|
|
42458
|
+
* Request parameters for createEntityWorkspaceThemes operation in EntitiesApi.
|
|
42459
|
+
* @export
|
|
42460
|
+
* @interface EntitiesApiCreateEntityWorkspaceThemesRequest
|
|
42461
|
+
*/
|
|
42462
|
+
export interface EntitiesApiCreateEntityWorkspaceThemesRequest {
|
|
42463
|
+
/**
|
|
42464
|
+
*
|
|
42465
|
+
* @type {string}
|
|
42466
|
+
* @memberof EntitiesApiCreateEntityWorkspaceThemes
|
|
42467
|
+
*/
|
|
42468
|
+
readonly workspaceId: string;
|
|
42469
|
+
/**
|
|
42470
|
+
*
|
|
42471
|
+
* @type {JsonApiWorkspaceThemeInDocument}
|
|
42472
|
+
* @memberof EntitiesApiCreateEntityWorkspaceThemes
|
|
42473
|
+
*/
|
|
42474
|
+
readonly jsonApiWorkspaceThemeInDocument: JsonApiWorkspaceThemeInDocument;
|
|
42475
|
+
/**
|
|
42476
|
+
* Include Meta objects.
|
|
42477
|
+
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
42478
|
+
* @memberof EntitiesApiCreateEntityWorkspaceThemes
|
|
42479
|
+
*/
|
|
42480
|
+
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
42481
|
+
}
|
|
40968
42482
|
/**
|
|
40969
42483
|
* Request parameters for createEntityWorkspaces operation in EntitiesApi.
|
|
40970
42484
|
* @export
|
|
@@ -41534,6 +43048,25 @@ export interface EntitiesApiDeleteEntityVisualizationObjectsRequest {
|
|
|
41534
43048
|
*/
|
|
41535
43049
|
readonly objectId: string;
|
|
41536
43050
|
}
|
|
43051
|
+
/**
|
|
43052
|
+
* Request parameters for deleteEntityWorkspaceColorPalettes operation in EntitiesApi.
|
|
43053
|
+
* @export
|
|
43054
|
+
* @interface EntitiesApiDeleteEntityWorkspaceColorPalettesRequest
|
|
43055
|
+
*/
|
|
43056
|
+
export interface EntitiesApiDeleteEntityWorkspaceColorPalettesRequest {
|
|
43057
|
+
/**
|
|
43058
|
+
*
|
|
43059
|
+
* @type {string}
|
|
43060
|
+
* @memberof EntitiesApiDeleteEntityWorkspaceColorPalettes
|
|
43061
|
+
*/
|
|
43062
|
+
readonly workspaceId: string;
|
|
43063
|
+
/**
|
|
43064
|
+
*
|
|
43065
|
+
* @type {string}
|
|
43066
|
+
* @memberof EntitiesApiDeleteEntityWorkspaceColorPalettes
|
|
43067
|
+
*/
|
|
43068
|
+
readonly objectId: string;
|
|
43069
|
+
}
|
|
41537
43070
|
/**
|
|
41538
43071
|
* Request parameters for deleteEntityWorkspaceDataFilterSettings operation in EntitiesApi.
|
|
41539
43072
|
* @export
|
|
@@ -41610,6 +43143,25 @@ export interface EntitiesApiDeleteEntityWorkspaceSettingsRequest {
|
|
|
41610
43143
|
*/
|
|
41611
43144
|
readonly objectId: string;
|
|
41612
43145
|
}
|
|
43146
|
+
/**
|
|
43147
|
+
* Request parameters for deleteEntityWorkspaceThemes operation in EntitiesApi.
|
|
43148
|
+
* @export
|
|
43149
|
+
* @interface EntitiesApiDeleteEntityWorkspaceThemesRequest
|
|
43150
|
+
*/
|
|
43151
|
+
export interface EntitiesApiDeleteEntityWorkspaceThemesRequest {
|
|
43152
|
+
/**
|
|
43153
|
+
*
|
|
43154
|
+
* @type {string}
|
|
43155
|
+
* @memberof EntitiesApiDeleteEntityWorkspaceThemes
|
|
43156
|
+
*/
|
|
43157
|
+
readonly workspaceId: string;
|
|
43158
|
+
/**
|
|
43159
|
+
*
|
|
43160
|
+
* @type {string}
|
|
43161
|
+
* @memberof EntitiesApiDeleteEntityWorkspaceThemes
|
|
43162
|
+
*/
|
|
43163
|
+
readonly objectId: string;
|
|
43164
|
+
}
|
|
41613
43165
|
/**
|
|
41614
43166
|
* Request parameters for deleteEntityWorkspaces operation in EntitiesApi.
|
|
41615
43167
|
* @export
|
|
@@ -43718,6 +45270,61 @@ export interface EntitiesApiGetAllEntitiesVisualizationObjectsRequest {
|
|
|
43718
45270
|
*/
|
|
43719
45271
|
readonly metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>;
|
|
43720
45272
|
}
|
|
45273
|
+
/**
|
|
45274
|
+
* Request parameters for getAllEntitiesWorkspaceColorPalettes operation in EntitiesApi.
|
|
45275
|
+
* @export
|
|
45276
|
+
* @interface EntitiesApiGetAllEntitiesWorkspaceColorPalettesRequest
|
|
45277
|
+
*/
|
|
45278
|
+
export interface EntitiesApiGetAllEntitiesWorkspaceColorPalettesRequest {
|
|
45279
|
+
/**
|
|
45280
|
+
*
|
|
45281
|
+
* @type {string}
|
|
45282
|
+
* @memberof EntitiesApiGetAllEntitiesWorkspaceColorPalettes
|
|
45283
|
+
*/
|
|
45284
|
+
readonly workspaceId: string;
|
|
45285
|
+
/**
|
|
45286
|
+
*
|
|
45287
|
+
* @type {'ALL' | 'PARENTS' | 'NATIVE'}
|
|
45288
|
+
* @memberof EntitiesApiGetAllEntitiesWorkspaceColorPalettes
|
|
45289
|
+
*/
|
|
45290
|
+
readonly origin?: 'ALL' | 'PARENTS' | 'NATIVE';
|
|
45291
|
+
/**
|
|
45292
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
45293
|
+
* @type {string}
|
|
45294
|
+
* @memberof EntitiesApiGetAllEntitiesWorkspaceColorPalettes
|
|
45295
|
+
*/
|
|
45296
|
+
readonly filter?: string;
|
|
45297
|
+
/**
|
|
45298
|
+
* Zero-based page index (0..N)
|
|
45299
|
+
* @type {number}
|
|
45300
|
+
* @memberof EntitiesApiGetAllEntitiesWorkspaceColorPalettes
|
|
45301
|
+
*/
|
|
45302
|
+
readonly page?: number;
|
|
45303
|
+
/**
|
|
45304
|
+
* The size of the page to be returned
|
|
45305
|
+
* @type {number}
|
|
45306
|
+
* @memberof EntitiesApiGetAllEntitiesWorkspaceColorPalettes
|
|
45307
|
+
*/
|
|
45308
|
+
readonly size?: number;
|
|
45309
|
+
/**
|
|
45310
|
+
* Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
45311
|
+
* @type {Array<string>}
|
|
45312
|
+
* @memberof EntitiesApiGetAllEntitiesWorkspaceColorPalettes
|
|
45313
|
+
*/
|
|
45314
|
+
readonly sort?: Array<string>;
|
|
45315
|
+
/**
|
|
45316
|
+
*
|
|
45317
|
+
* @type {boolean}
|
|
45318
|
+
* @memberof EntitiesApiGetAllEntitiesWorkspaceColorPalettes
|
|
45319
|
+
*/
|
|
45320
|
+
readonly xGDCVALIDATERELATIONS?: boolean;
|
|
45321
|
+
/**
|
|
45322
|
+
* Include Meta objects.
|
|
45323
|
+
* @type {Array<'origin' | 'page' | 'all' | 'ALL'>}
|
|
45324
|
+
* @memberof EntitiesApiGetAllEntitiesWorkspaceColorPalettes
|
|
45325
|
+
*/
|
|
45326
|
+
readonly metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>;
|
|
45327
|
+
}
|
|
43721
45328
|
/**
|
|
43722
45329
|
* Request parameters for getAllEntitiesWorkspaceDataFilterSettings operation in EntitiesApi.
|
|
43723
45330
|
* @export
|
|
@@ -43950,6 +45557,61 @@ export interface EntitiesApiGetAllEntitiesWorkspaceSettingsRequest {
|
|
|
43950
45557
|
*/
|
|
43951
45558
|
readonly metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>;
|
|
43952
45559
|
}
|
|
45560
|
+
/**
|
|
45561
|
+
* Request parameters for getAllEntitiesWorkspaceThemes operation in EntitiesApi.
|
|
45562
|
+
* @export
|
|
45563
|
+
* @interface EntitiesApiGetAllEntitiesWorkspaceThemesRequest
|
|
45564
|
+
*/
|
|
45565
|
+
export interface EntitiesApiGetAllEntitiesWorkspaceThemesRequest {
|
|
45566
|
+
/**
|
|
45567
|
+
*
|
|
45568
|
+
* @type {string}
|
|
45569
|
+
* @memberof EntitiesApiGetAllEntitiesWorkspaceThemes
|
|
45570
|
+
*/
|
|
45571
|
+
readonly workspaceId: string;
|
|
45572
|
+
/**
|
|
45573
|
+
*
|
|
45574
|
+
* @type {'ALL' | 'PARENTS' | 'NATIVE'}
|
|
45575
|
+
* @memberof EntitiesApiGetAllEntitiesWorkspaceThemes
|
|
45576
|
+
*/
|
|
45577
|
+
readonly origin?: 'ALL' | 'PARENTS' | 'NATIVE';
|
|
45578
|
+
/**
|
|
45579
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
45580
|
+
* @type {string}
|
|
45581
|
+
* @memberof EntitiesApiGetAllEntitiesWorkspaceThemes
|
|
45582
|
+
*/
|
|
45583
|
+
readonly filter?: string;
|
|
45584
|
+
/**
|
|
45585
|
+
* Zero-based page index (0..N)
|
|
45586
|
+
* @type {number}
|
|
45587
|
+
* @memberof EntitiesApiGetAllEntitiesWorkspaceThemes
|
|
45588
|
+
*/
|
|
45589
|
+
readonly page?: number;
|
|
45590
|
+
/**
|
|
45591
|
+
* The size of the page to be returned
|
|
45592
|
+
* @type {number}
|
|
45593
|
+
* @memberof EntitiesApiGetAllEntitiesWorkspaceThemes
|
|
45594
|
+
*/
|
|
45595
|
+
readonly size?: number;
|
|
45596
|
+
/**
|
|
45597
|
+
* Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
45598
|
+
* @type {Array<string>}
|
|
45599
|
+
* @memberof EntitiesApiGetAllEntitiesWorkspaceThemes
|
|
45600
|
+
*/
|
|
45601
|
+
readonly sort?: Array<string>;
|
|
45602
|
+
/**
|
|
45603
|
+
*
|
|
45604
|
+
* @type {boolean}
|
|
45605
|
+
* @memberof EntitiesApiGetAllEntitiesWorkspaceThemes
|
|
45606
|
+
*/
|
|
45607
|
+
readonly xGDCVALIDATERELATIONS?: boolean;
|
|
45608
|
+
/**
|
|
45609
|
+
* Include Meta objects.
|
|
45610
|
+
* @type {Array<'origin' | 'page' | 'all' | 'ALL'>}
|
|
45611
|
+
* @memberof EntitiesApiGetAllEntitiesWorkspaceThemes
|
|
45612
|
+
*/
|
|
45613
|
+
readonly metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>;
|
|
45614
|
+
}
|
|
43953
45615
|
/**
|
|
43954
45616
|
* Request parameters for getAllEntitiesWorkspaces operation in EntitiesApi.
|
|
43955
45617
|
* @export
|
|
@@ -45358,6 +47020,43 @@ export interface EntitiesApiGetEntityVisualizationObjectsRequest {
|
|
|
45358
47020
|
*/
|
|
45359
47021
|
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
45360
47022
|
}
|
|
47023
|
+
/**
|
|
47024
|
+
* Request parameters for getEntityWorkspaceColorPalettes operation in EntitiesApi.
|
|
47025
|
+
* @export
|
|
47026
|
+
* @interface EntitiesApiGetEntityWorkspaceColorPalettesRequest
|
|
47027
|
+
*/
|
|
47028
|
+
export interface EntitiesApiGetEntityWorkspaceColorPalettesRequest {
|
|
47029
|
+
/**
|
|
47030
|
+
*
|
|
47031
|
+
* @type {string}
|
|
47032
|
+
* @memberof EntitiesApiGetEntityWorkspaceColorPalettes
|
|
47033
|
+
*/
|
|
47034
|
+
readonly workspaceId: string;
|
|
47035
|
+
/**
|
|
47036
|
+
*
|
|
47037
|
+
* @type {string}
|
|
47038
|
+
* @memberof EntitiesApiGetEntityWorkspaceColorPalettes
|
|
47039
|
+
*/
|
|
47040
|
+
readonly objectId: string;
|
|
47041
|
+
/**
|
|
47042
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
47043
|
+
* @type {string}
|
|
47044
|
+
* @memberof EntitiesApiGetEntityWorkspaceColorPalettes
|
|
47045
|
+
*/
|
|
47046
|
+
readonly filter?: string;
|
|
47047
|
+
/**
|
|
47048
|
+
*
|
|
47049
|
+
* @type {boolean}
|
|
47050
|
+
* @memberof EntitiesApiGetEntityWorkspaceColorPalettes
|
|
47051
|
+
*/
|
|
47052
|
+
readonly xGDCVALIDATERELATIONS?: boolean;
|
|
47053
|
+
/**
|
|
47054
|
+
* Include Meta objects.
|
|
47055
|
+
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
47056
|
+
* @memberof EntitiesApiGetEntityWorkspaceColorPalettes
|
|
47057
|
+
*/
|
|
47058
|
+
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
47059
|
+
}
|
|
45361
47060
|
/**
|
|
45362
47061
|
* Request parameters for getEntityWorkspaceDataFilterSettings operation in EntitiesApi.
|
|
45363
47062
|
* @export
|
|
@@ -45518,6 +47217,43 @@ export interface EntitiesApiGetEntityWorkspaceSettingsRequest {
|
|
|
45518
47217
|
*/
|
|
45519
47218
|
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
45520
47219
|
}
|
|
47220
|
+
/**
|
|
47221
|
+
* Request parameters for getEntityWorkspaceThemes operation in EntitiesApi.
|
|
47222
|
+
* @export
|
|
47223
|
+
* @interface EntitiesApiGetEntityWorkspaceThemesRequest
|
|
47224
|
+
*/
|
|
47225
|
+
export interface EntitiesApiGetEntityWorkspaceThemesRequest {
|
|
47226
|
+
/**
|
|
47227
|
+
*
|
|
47228
|
+
* @type {string}
|
|
47229
|
+
* @memberof EntitiesApiGetEntityWorkspaceThemes
|
|
47230
|
+
*/
|
|
47231
|
+
readonly workspaceId: string;
|
|
47232
|
+
/**
|
|
47233
|
+
*
|
|
47234
|
+
* @type {string}
|
|
47235
|
+
* @memberof EntitiesApiGetEntityWorkspaceThemes
|
|
47236
|
+
*/
|
|
47237
|
+
readonly objectId: string;
|
|
47238
|
+
/**
|
|
47239
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
47240
|
+
* @type {string}
|
|
47241
|
+
* @memberof EntitiesApiGetEntityWorkspaceThemes
|
|
47242
|
+
*/
|
|
47243
|
+
readonly filter?: string;
|
|
47244
|
+
/**
|
|
47245
|
+
*
|
|
47246
|
+
* @type {boolean}
|
|
47247
|
+
* @memberof EntitiesApiGetEntityWorkspaceThemes
|
|
47248
|
+
*/
|
|
47249
|
+
readonly xGDCVALIDATERELATIONS?: boolean;
|
|
47250
|
+
/**
|
|
47251
|
+
* Include Meta objects.
|
|
47252
|
+
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
47253
|
+
* @memberof EntitiesApiGetEntityWorkspaceThemes
|
|
47254
|
+
*/
|
|
47255
|
+
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
47256
|
+
}
|
|
45521
47257
|
/**
|
|
45522
47258
|
* Request parameters for getEntityWorkspaces operation in EntitiesApi.
|
|
45523
47259
|
* @export
|
|
@@ -46690,6 +48426,37 @@ export interface EntitiesApiPatchEntityVisualizationObjectsRequest {
|
|
|
46690
48426
|
*/
|
|
46691
48427
|
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
46692
48428
|
}
|
|
48429
|
+
/**
|
|
48430
|
+
* Request parameters for patchEntityWorkspaceColorPalettes operation in EntitiesApi.
|
|
48431
|
+
* @export
|
|
48432
|
+
* @interface EntitiesApiPatchEntityWorkspaceColorPalettesRequest
|
|
48433
|
+
*/
|
|
48434
|
+
export interface EntitiesApiPatchEntityWorkspaceColorPalettesRequest {
|
|
48435
|
+
/**
|
|
48436
|
+
*
|
|
48437
|
+
* @type {string}
|
|
48438
|
+
* @memberof EntitiesApiPatchEntityWorkspaceColorPalettes
|
|
48439
|
+
*/
|
|
48440
|
+
readonly workspaceId: string;
|
|
48441
|
+
/**
|
|
48442
|
+
*
|
|
48443
|
+
* @type {string}
|
|
48444
|
+
* @memberof EntitiesApiPatchEntityWorkspaceColorPalettes
|
|
48445
|
+
*/
|
|
48446
|
+
readonly objectId: string;
|
|
48447
|
+
/**
|
|
48448
|
+
*
|
|
48449
|
+
* @type {JsonApiWorkspaceColorPalettePatchDocument}
|
|
48450
|
+
* @memberof EntitiesApiPatchEntityWorkspaceColorPalettes
|
|
48451
|
+
*/
|
|
48452
|
+
readonly jsonApiWorkspaceColorPalettePatchDocument: JsonApiWorkspaceColorPalettePatchDocument;
|
|
48453
|
+
/**
|
|
48454
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
48455
|
+
* @type {string}
|
|
48456
|
+
* @memberof EntitiesApiPatchEntityWorkspaceColorPalettes
|
|
48457
|
+
*/
|
|
48458
|
+
readonly filter?: string;
|
|
48459
|
+
}
|
|
46693
48460
|
/**
|
|
46694
48461
|
* Request parameters for patchEntityWorkspaceDataFilterSettings operation in EntitiesApi.
|
|
46695
48462
|
* @export
|
|
@@ -46826,6 +48593,37 @@ export interface EntitiesApiPatchEntityWorkspaceSettingsRequest {
|
|
|
46826
48593
|
*/
|
|
46827
48594
|
readonly filter?: string;
|
|
46828
48595
|
}
|
|
48596
|
+
/**
|
|
48597
|
+
* Request parameters for patchEntityWorkspaceThemes operation in EntitiesApi.
|
|
48598
|
+
* @export
|
|
48599
|
+
* @interface EntitiesApiPatchEntityWorkspaceThemesRequest
|
|
48600
|
+
*/
|
|
48601
|
+
export interface EntitiesApiPatchEntityWorkspaceThemesRequest {
|
|
48602
|
+
/**
|
|
48603
|
+
*
|
|
48604
|
+
* @type {string}
|
|
48605
|
+
* @memberof EntitiesApiPatchEntityWorkspaceThemes
|
|
48606
|
+
*/
|
|
48607
|
+
readonly workspaceId: string;
|
|
48608
|
+
/**
|
|
48609
|
+
*
|
|
48610
|
+
* @type {string}
|
|
48611
|
+
* @memberof EntitiesApiPatchEntityWorkspaceThemes
|
|
48612
|
+
*/
|
|
48613
|
+
readonly objectId: string;
|
|
48614
|
+
/**
|
|
48615
|
+
*
|
|
48616
|
+
* @type {JsonApiWorkspaceThemePatchDocument}
|
|
48617
|
+
* @memberof EntitiesApiPatchEntityWorkspaceThemes
|
|
48618
|
+
*/
|
|
48619
|
+
readonly jsonApiWorkspaceThemePatchDocument: JsonApiWorkspaceThemePatchDocument;
|
|
48620
|
+
/**
|
|
48621
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
48622
|
+
* @type {string}
|
|
48623
|
+
* @memberof EntitiesApiPatchEntityWorkspaceThemes
|
|
48624
|
+
*/
|
|
48625
|
+
readonly filter?: string;
|
|
48626
|
+
}
|
|
46829
48627
|
/**
|
|
46830
48628
|
* Request parameters for patchEntityWorkspaces operation in EntitiesApi.
|
|
46831
48629
|
* @export
|
|
@@ -48643,6 +50441,37 @@ export interface EntitiesApiUpdateEntityVisualizationObjectsRequest {
|
|
|
48643
50441
|
*/
|
|
48644
50442
|
readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
|
|
48645
50443
|
}
|
|
50444
|
+
/**
|
|
50445
|
+
* Request parameters for updateEntityWorkspaceColorPalettes operation in EntitiesApi.
|
|
50446
|
+
* @export
|
|
50447
|
+
* @interface EntitiesApiUpdateEntityWorkspaceColorPalettesRequest
|
|
50448
|
+
*/
|
|
50449
|
+
export interface EntitiesApiUpdateEntityWorkspaceColorPalettesRequest {
|
|
50450
|
+
/**
|
|
50451
|
+
*
|
|
50452
|
+
* @type {string}
|
|
50453
|
+
* @memberof EntitiesApiUpdateEntityWorkspaceColorPalettes
|
|
50454
|
+
*/
|
|
50455
|
+
readonly workspaceId: string;
|
|
50456
|
+
/**
|
|
50457
|
+
*
|
|
50458
|
+
* @type {string}
|
|
50459
|
+
* @memberof EntitiesApiUpdateEntityWorkspaceColorPalettes
|
|
50460
|
+
*/
|
|
50461
|
+
readonly objectId: string;
|
|
50462
|
+
/**
|
|
50463
|
+
*
|
|
50464
|
+
* @type {JsonApiWorkspaceColorPaletteInDocument}
|
|
50465
|
+
* @memberof EntitiesApiUpdateEntityWorkspaceColorPalettes
|
|
50466
|
+
*/
|
|
50467
|
+
readonly jsonApiWorkspaceColorPaletteInDocument: JsonApiWorkspaceColorPaletteInDocument;
|
|
50468
|
+
/**
|
|
50469
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
50470
|
+
* @type {string}
|
|
50471
|
+
* @memberof EntitiesApiUpdateEntityWorkspaceColorPalettes
|
|
50472
|
+
*/
|
|
50473
|
+
readonly filter?: string;
|
|
50474
|
+
}
|
|
48646
50475
|
/**
|
|
48647
50476
|
* Request parameters for updateEntityWorkspaceDataFilterSettings operation in EntitiesApi.
|
|
48648
50477
|
* @export
|
|
@@ -48779,6 +50608,37 @@ export interface EntitiesApiUpdateEntityWorkspaceSettingsRequest {
|
|
|
48779
50608
|
*/
|
|
48780
50609
|
readonly filter?: string;
|
|
48781
50610
|
}
|
|
50611
|
+
/**
|
|
50612
|
+
* Request parameters for updateEntityWorkspaceThemes operation in EntitiesApi.
|
|
50613
|
+
* @export
|
|
50614
|
+
* @interface EntitiesApiUpdateEntityWorkspaceThemesRequest
|
|
50615
|
+
*/
|
|
50616
|
+
export interface EntitiesApiUpdateEntityWorkspaceThemesRequest {
|
|
50617
|
+
/**
|
|
50618
|
+
*
|
|
50619
|
+
* @type {string}
|
|
50620
|
+
* @memberof EntitiesApiUpdateEntityWorkspaceThemes
|
|
50621
|
+
*/
|
|
50622
|
+
readonly workspaceId: string;
|
|
50623
|
+
/**
|
|
50624
|
+
*
|
|
50625
|
+
* @type {string}
|
|
50626
|
+
* @memberof EntitiesApiUpdateEntityWorkspaceThemes
|
|
50627
|
+
*/
|
|
50628
|
+
readonly objectId: string;
|
|
50629
|
+
/**
|
|
50630
|
+
*
|
|
50631
|
+
* @type {JsonApiWorkspaceThemeInDocument}
|
|
50632
|
+
* @memberof EntitiesApiUpdateEntityWorkspaceThemes
|
|
50633
|
+
*/
|
|
50634
|
+
readonly jsonApiWorkspaceThemeInDocument: JsonApiWorkspaceThemeInDocument;
|
|
50635
|
+
/**
|
|
50636
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
50637
|
+
* @type {string}
|
|
50638
|
+
* @memberof EntitiesApiUpdateEntityWorkspaceThemes
|
|
50639
|
+
*/
|
|
50640
|
+
readonly filter?: string;
|
|
50641
|
+
}
|
|
48782
50642
|
/**
|
|
48783
50643
|
* Request parameters for updateEntityWorkspaces operation in EntitiesApi.
|
|
48784
50644
|
* @export
|
|
@@ -49123,6 +50983,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
49123
50983
|
* @memberof EntitiesApi
|
|
49124
50984
|
*/
|
|
49125
50985
|
createEntityVisualizationObjects(requestParameters: EntitiesApiCreateEntityVisualizationObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiVisualizationObjectOutDocument>;
|
|
50986
|
+
/**
|
|
50987
|
+
*
|
|
50988
|
+
* @summary Post Workspace Color Palette
|
|
50989
|
+
* @param {EntitiesApiCreateEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
50990
|
+
* @param {*} [options] Override http request option.
|
|
50991
|
+
* @throws {RequiredError}
|
|
50992
|
+
* @memberof EntitiesApi
|
|
50993
|
+
*/
|
|
50994
|
+
createEntityWorkspaceColorPalettes(requestParameters: EntitiesApiCreateEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
49126
50995
|
/**
|
|
49127
50996
|
*
|
|
49128
50997
|
* @summary Post Settings for Workspace Data Filters
|
|
@@ -49159,6 +51028,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
49159
51028
|
* @memberof EntitiesApi
|
|
49160
51029
|
*/
|
|
49161
51030
|
createEntityWorkspaceSettings(requestParameters: EntitiesApiCreateEntityWorkspaceSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceSettingOutDocument>;
|
|
51031
|
+
/**
|
|
51032
|
+
*
|
|
51033
|
+
* @summary Post Workspace Theme
|
|
51034
|
+
* @param {EntitiesApiCreateEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
51035
|
+
* @param {*} [options] Override http request option.
|
|
51036
|
+
* @throws {RequiredError}
|
|
51037
|
+
* @memberof EntitiesApi
|
|
51038
|
+
*/
|
|
51039
|
+
createEntityWorkspaceThemes(requestParameters: EntitiesApiCreateEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
49162
51040
|
/**
|
|
49163
51041
|
* Space of the shared interest
|
|
49164
51042
|
* @summary Post Workspace entities
|
|
@@ -49475,6 +51353,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
49475
51353
|
* @memberof EntitiesApi
|
|
49476
51354
|
*/
|
|
49477
51355
|
deleteEntityVisualizationObjects(requestParameters: EntitiesApiDeleteEntityVisualizationObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
51356
|
+
/**
|
|
51357
|
+
*
|
|
51358
|
+
* @summary Delete a Workspace Color Palette
|
|
51359
|
+
* @param {EntitiesApiDeleteEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
51360
|
+
* @param {*} [options] Override http request option.
|
|
51361
|
+
* @throws {RequiredError}
|
|
51362
|
+
* @memberof EntitiesApi
|
|
51363
|
+
*/
|
|
51364
|
+
deleteEntityWorkspaceColorPalettes(requestParameters: EntitiesApiDeleteEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
49478
51365
|
/**
|
|
49479
51366
|
*
|
|
49480
51367
|
* @summary Delete a Settings for Workspace Data Filter
|
|
@@ -49511,6 +51398,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
49511
51398
|
* @memberof EntitiesApi
|
|
49512
51399
|
*/
|
|
49513
51400
|
deleteEntityWorkspaceSettings(requestParameters: EntitiesApiDeleteEntityWorkspaceSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
51401
|
+
/**
|
|
51402
|
+
*
|
|
51403
|
+
* @summary Delete a Workspace Theme
|
|
51404
|
+
* @param {EntitiesApiDeleteEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
51405
|
+
* @param {*} [options] Override http request option.
|
|
51406
|
+
* @throws {RequiredError}
|
|
51407
|
+
* @memberof EntitiesApi
|
|
51408
|
+
*/
|
|
51409
|
+
deleteEntityWorkspaceThemes(requestParameters: EntitiesApiDeleteEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
49514
51410
|
/**
|
|
49515
51411
|
* Space of the shared interest
|
|
49516
51412
|
* @summary Delete Workspace entity
|
|
@@ -49916,6 +51812,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
49916
51812
|
* @memberof EntitiesApi
|
|
49917
51813
|
*/
|
|
49918
51814
|
getAllEntitiesVisualizationObjects(requestParameters: EntitiesApiGetAllEntitiesVisualizationObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiVisualizationObjectOutList>;
|
|
51815
|
+
/**
|
|
51816
|
+
*
|
|
51817
|
+
* @summary Get all Workspace Color Palettes
|
|
51818
|
+
* @param {EntitiesApiGetAllEntitiesWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
51819
|
+
* @param {*} [options] Override http request option.
|
|
51820
|
+
* @throws {RequiredError}
|
|
51821
|
+
* @memberof EntitiesApi
|
|
51822
|
+
*/
|
|
51823
|
+
getAllEntitiesWorkspaceColorPalettes(requestParameters: EntitiesApiGetAllEntitiesWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutList>;
|
|
49919
51824
|
/**
|
|
49920
51825
|
*
|
|
49921
51826
|
* @summary Get all Settings for Workspace Data Filters
|
|
@@ -49952,6 +51857,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
49952
51857
|
* @memberof EntitiesApi
|
|
49953
51858
|
*/
|
|
49954
51859
|
getAllEntitiesWorkspaceSettings(requestParameters: EntitiesApiGetAllEntitiesWorkspaceSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceSettingOutList>;
|
|
51860
|
+
/**
|
|
51861
|
+
*
|
|
51862
|
+
* @summary Get all Workspace Themes
|
|
51863
|
+
* @param {EntitiesApiGetAllEntitiesWorkspaceThemesRequest} requestParameters Request parameters.
|
|
51864
|
+
* @param {*} [options] Override http request option.
|
|
51865
|
+
* @throws {RequiredError}
|
|
51866
|
+
* @memberof EntitiesApi
|
|
51867
|
+
*/
|
|
51868
|
+
getAllEntitiesWorkspaceThemes(requestParameters: EntitiesApiGetAllEntitiesWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutList>;
|
|
49955
51869
|
/**
|
|
49956
51870
|
* Space of the shared interest
|
|
49957
51871
|
* @summary Get Workspace entities
|
|
@@ -50385,6 +52299,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
50385
52299
|
* @memberof EntitiesApi
|
|
50386
52300
|
*/
|
|
50387
52301
|
getEntityVisualizationObjects(requestParameters: EntitiesApiGetEntityVisualizationObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiVisualizationObjectOutDocument>;
|
|
52302
|
+
/**
|
|
52303
|
+
*
|
|
52304
|
+
* @summary Get a Workspace Color Palette
|
|
52305
|
+
* @param {EntitiesApiGetEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
52306
|
+
* @param {*} [options] Override http request option.
|
|
52307
|
+
* @throws {RequiredError}
|
|
52308
|
+
* @memberof EntitiesApi
|
|
52309
|
+
*/
|
|
52310
|
+
getEntityWorkspaceColorPalettes(requestParameters: EntitiesApiGetEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
50388
52311
|
/**
|
|
50389
52312
|
*
|
|
50390
52313
|
* @summary Get a Setting for Workspace Data Filter
|
|
@@ -50421,6 +52344,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
50421
52344
|
* @memberof EntitiesApi
|
|
50422
52345
|
*/
|
|
50423
52346
|
getEntityWorkspaceSettings(requestParameters: EntitiesApiGetEntityWorkspaceSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceSettingOutDocument>;
|
|
52347
|
+
/**
|
|
52348
|
+
*
|
|
52349
|
+
* @summary Get a Workspace Theme
|
|
52350
|
+
* @param {EntitiesApiGetEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
52351
|
+
* @param {*} [options] Override http request option.
|
|
52352
|
+
* @throws {RequiredError}
|
|
52353
|
+
* @memberof EntitiesApi
|
|
52354
|
+
*/
|
|
52355
|
+
getEntityWorkspaceThemes(requestParameters: EntitiesApiGetEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
50424
52356
|
/**
|
|
50425
52357
|
* Space of the shared interest
|
|
50426
52358
|
* @summary Get Workspace entity
|
|
@@ -50764,6 +52696,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
50764
52696
|
* @memberof EntitiesApi
|
|
50765
52697
|
*/
|
|
50766
52698
|
patchEntityVisualizationObjects(requestParameters: EntitiesApiPatchEntityVisualizationObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiVisualizationObjectOutDocument>;
|
|
52699
|
+
/**
|
|
52700
|
+
*
|
|
52701
|
+
* @summary Patch a Workspace Color Palette
|
|
52702
|
+
* @param {EntitiesApiPatchEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
52703
|
+
* @param {*} [options] Override http request option.
|
|
52704
|
+
* @throws {RequiredError}
|
|
52705
|
+
* @memberof EntitiesApi
|
|
52706
|
+
*/
|
|
52707
|
+
patchEntityWorkspaceColorPalettes(requestParameters: EntitiesApiPatchEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
50767
52708
|
/**
|
|
50768
52709
|
*
|
|
50769
52710
|
* @summary Patch a Settings for Workspace Data Filter
|
|
@@ -50800,6 +52741,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
50800
52741
|
* @memberof EntitiesApi
|
|
50801
52742
|
*/
|
|
50802
52743
|
patchEntityWorkspaceSettings(requestParameters: EntitiesApiPatchEntityWorkspaceSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceSettingOutDocument>;
|
|
52744
|
+
/**
|
|
52745
|
+
*
|
|
52746
|
+
* @summary Patch a Workspace Theme
|
|
52747
|
+
* @param {EntitiesApiPatchEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
52748
|
+
* @param {*} [options] Override http request option.
|
|
52749
|
+
* @throws {RequiredError}
|
|
52750
|
+
* @memberof EntitiesApi
|
|
52751
|
+
*/
|
|
52752
|
+
patchEntityWorkspaceThemes(requestParameters: EntitiesApiPatchEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
50803
52753
|
/**
|
|
50804
52754
|
* Space of the shared interest
|
|
50805
52755
|
* @summary Patch Workspace entity
|
|
@@ -51332,6 +53282,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
51332
53282
|
* @memberof EntitiesApi
|
|
51333
53283
|
*/
|
|
51334
53284
|
updateEntityVisualizationObjects(requestParameters: EntitiesApiUpdateEntityVisualizationObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiVisualizationObjectOutDocument>;
|
|
53285
|
+
/**
|
|
53286
|
+
*
|
|
53287
|
+
* @summary Put a Workspace Color Palette
|
|
53288
|
+
* @param {EntitiesApiUpdateEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
53289
|
+
* @param {*} [options] Override http request option.
|
|
53290
|
+
* @throws {RequiredError}
|
|
53291
|
+
* @memberof EntitiesApi
|
|
53292
|
+
*/
|
|
53293
|
+
updateEntityWorkspaceColorPalettes(requestParameters: EntitiesApiUpdateEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
51335
53294
|
/**
|
|
51336
53295
|
*
|
|
51337
53296
|
* @summary Put a Settings for Workspace Data Filter
|
|
@@ -51368,6 +53327,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
51368
53327
|
* @memberof EntitiesApi
|
|
51369
53328
|
*/
|
|
51370
53329
|
updateEntityWorkspaceSettings(requestParameters: EntitiesApiUpdateEntityWorkspaceSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceSettingOutDocument>;
|
|
53330
|
+
/**
|
|
53331
|
+
*
|
|
53332
|
+
* @summary Put a Workspace Theme
|
|
53333
|
+
* @param {EntitiesApiUpdateEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
53334
|
+
* @param {*} [options] Override http request option.
|
|
53335
|
+
* @throws {RequiredError}
|
|
53336
|
+
* @memberof EntitiesApi
|
|
53337
|
+
*/
|
|
53338
|
+
updateEntityWorkspaceThemes(requestParameters: EntitiesApiUpdateEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
51371
53339
|
/**
|
|
51372
53340
|
* Space of the shared interest
|
|
51373
53341
|
* @summary Put Workspace entity
|
|
@@ -80620,6 +82588,467 @@ export declare class VisualizationObjectControllerApi extends BaseAPI implements
|
|
|
80620
82588
|
*/
|
|
80621
82589
|
updateEntityVisualizationObjects(requestParameters: VisualizationObjectControllerApiUpdateEntityVisualizationObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiVisualizationObjectOutDocument>;
|
|
80622
82590
|
}
|
|
82591
|
+
/**
|
|
82592
|
+
*
|
|
82593
|
+
* @summary Post Workspace Color Palette
|
|
82594
|
+
* @param {string} workspaceId
|
|
82595
|
+
* @param {JsonApiWorkspaceColorPaletteInDocument} jsonApiWorkspaceColorPaletteInDocument
|
|
82596
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
82597
|
+
* @param {*} [options] Override http request option.
|
|
82598
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
82599
|
+
* @throws {RequiredError}
|
|
82600
|
+
*/
|
|
82601
|
+
export declare function WorkspaceColorPaletteControllerApiAxiosParamCreator_CreateEntityWorkspaceColorPalettes(workspaceId: string, jsonApiWorkspaceColorPaletteInDocument: JsonApiWorkspaceColorPaletteInDocument, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82602
|
+
/**
|
|
82603
|
+
*
|
|
82604
|
+
* @summary Delete a Workspace Color Palette
|
|
82605
|
+
* @param {string} workspaceId
|
|
82606
|
+
* @param {string} objectId
|
|
82607
|
+
* @param {*} [options] Override http request option.
|
|
82608
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
82609
|
+
* @throws {RequiredError}
|
|
82610
|
+
*/
|
|
82611
|
+
export declare function WorkspaceColorPaletteControllerApiAxiosParamCreator_DeleteEntityWorkspaceColorPalettes(workspaceId: string, objectId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82612
|
+
/**
|
|
82613
|
+
*
|
|
82614
|
+
* @summary Get all Workspace Color Palettes
|
|
82615
|
+
* @param {string} workspaceId
|
|
82616
|
+
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
82617
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
82618
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
82619
|
+
* @param {number} [size] The size of the page to be returned
|
|
82620
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
82621
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
82622
|
+
* @param {Array<'origin' | 'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
82623
|
+
* @param {*} [options] Override http request option.
|
|
82624
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
82625
|
+
* @throws {RequiredError}
|
|
82626
|
+
*/
|
|
82627
|
+
export declare function WorkspaceColorPaletteControllerApiAxiosParamCreator_GetAllEntitiesWorkspaceColorPalettes(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82628
|
+
/**
|
|
82629
|
+
*
|
|
82630
|
+
* @summary Get a Workspace Color Palette
|
|
82631
|
+
* @param {string} workspaceId
|
|
82632
|
+
* @param {string} objectId
|
|
82633
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
82634
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
82635
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
82636
|
+
* @param {*} [options] Override http request option.
|
|
82637
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
82638
|
+
* @throws {RequiredError}
|
|
82639
|
+
*/
|
|
82640
|
+
export declare function WorkspaceColorPaletteControllerApiAxiosParamCreator_GetEntityWorkspaceColorPalettes(workspaceId: string, objectId: string, filter?: string, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82641
|
+
/**
|
|
82642
|
+
*
|
|
82643
|
+
* @summary Patch a Workspace Color Palette
|
|
82644
|
+
* @param {string} workspaceId
|
|
82645
|
+
* @param {string} objectId
|
|
82646
|
+
* @param {JsonApiWorkspaceColorPalettePatchDocument} jsonApiWorkspaceColorPalettePatchDocument
|
|
82647
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
82648
|
+
* @param {*} [options] Override http request option.
|
|
82649
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
82650
|
+
* @throws {RequiredError}
|
|
82651
|
+
*/
|
|
82652
|
+
export declare function WorkspaceColorPaletteControllerApiAxiosParamCreator_PatchEntityWorkspaceColorPalettes(workspaceId: string, objectId: string, jsonApiWorkspaceColorPalettePatchDocument: JsonApiWorkspaceColorPalettePatchDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82653
|
+
/**
|
|
82654
|
+
*
|
|
82655
|
+
* @summary Put a Workspace Color Palette
|
|
82656
|
+
* @param {string} workspaceId
|
|
82657
|
+
* @param {string} objectId
|
|
82658
|
+
* @param {JsonApiWorkspaceColorPaletteInDocument} jsonApiWorkspaceColorPaletteInDocument
|
|
82659
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
82660
|
+
* @param {*} [options] Override http request option.
|
|
82661
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
82662
|
+
* @throws {RequiredError}
|
|
82663
|
+
*/
|
|
82664
|
+
export declare function WorkspaceColorPaletteControllerApiAxiosParamCreator_UpdateEntityWorkspaceColorPalettes(workspaceId: string, objectId: string, jsonApiWorkspaceColorPaletteInDocument: JsonApiWorkspaceColorPaletteInDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82665
|
+
/**
|
|
82666
|
+
*
|
|
82667
|
+
* @summary Post Workspace Color Palette
|
|
82668
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
82669
|
+
* @param {string} basePath Base path.
|
|
82670
|
+
* @param {WorkspaceColorPaletteControllerApiCreateEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
82671
|
+
* @param {*} [options] Override http request option.
|
|
82672
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
82673
|
+
* @throws {RequiredError}
|
|
82674
|
+
*/
|
|
82675
|
+
export declare function WorkspaceColorPaletteControllerApi_CreateEntityWorkspaceColorPalettes(axios: AxiosInstance, basePath: string, requestParameters: WorkspaceColorPaletteControllerApiCreateEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
82676
|
+
/**
|
|
82677
|
+
*
|
|
82678
|
+
* @summary Delete a Workspace Color Palette
|
|
82679
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
82680
|
+
* @param {string} basePath Base path.
|
|
82681
|
+
* @param {WorkspaceColorPaletteControllerApiDeleteEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
82682
|
+
* @param {*} [options] Override http request option.
|
|
82683
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
82684
|
+
* @throws {RequiredError}
|
|
82685
|
+
*/
|
|
82686
|
+
export declare function WorkspaceColorPaletteControllerApi_DeleteEntityWorkspaceColorPalettes(axios: AxiosInstance, basePath: string, requestParameters: WorkspaceColorPaletteControllerApiDeleteEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
82687
|
+
/**
|
|
82688
|
+
*
|
|
82689
|
+
* @summary Get all Workspace Color Palettes
|
|
82690
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
82691
|
+
* @param {string} basePath Base path.
|
|
82692
|
+
* @param {WorkspaceColorPaletteControllerApiGetAllEntitiesWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
82693
|
+
* @param {*} [options] Override http request option.
|
|
82694
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
82695
|
+
* @throws {RequiredError}
|
|
82696
|
+
*/
|
|
82697
|
+
export declare function WorkspaceColorPaletteControllerApi_GetAllEntitiesWorkspaceColorPalettes(axios: AxiosInstance, basePath: string, requestParameters: WorkspaceColorPaletteControllerApiGetAllEntitiesWorkspaceColorPalettesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceColorPaletteOutList>;
|
|
82698
|
+
/**
|
|
82699
|
+
*
|
|
82700
|
+
* @summary Get a Workspace Color Palette
|
|
82701
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
82702
|
+
* @param {string} basePath Base path.
|
|
82703
|
+
* @param {WorkspaceColorPaletteControllerApiGetEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
82704
|
+
* @param {*} [options] Override http request option.
|
|
82705
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
82706
|
+
* @throws {RequiredError}
|
|
82707
|
+
*/
|
|
82708
|
+
export declare function WorkspaceColorPaletteControllerApi_GetEntityWorkspaceColorPalettes(axios: AxiosInstance, basePath: string, requestParameters: WorkspaceColorPaletteControllerApiGetEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
82709
|
+
/**
|
|
82710
|
+
*
|
|
82711
|
+
* @summary Patch a Workspace Color Palette
|
|
82712
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
82713
|
+
* @param {string} basePath Base path.
|
|
82714
|
+
* @param {WorkspaceColorPaletteControllerApiPatchEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
82715
|
+
* @param {*} [options] Override http request option.
|
|
82716
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
82717
|
+
* @throws {RequiredError}
|
|
82718
|
+
*/
|
|
82719
|
+
export declare function WorkspaceColorPaletteControllerApi_PatchEntityWorkspaceColorPalettes(axios: AxiosInstance, basePath: string, requestParameters: WorkspaceColorPaletteControllerApiPatchEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
82720
|
+
/**
|
|
82721
|
+
*
|
|
82722
|
+
* @summary Put a Workspace Color Palette
|
|
82723
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
82724
|
+
* @param {string} basePath Base path.
|
|
82725
|
+
* @param {WorkspaceColorPaletteControllerApiUpdateEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
82726
|
+
* @param {*} [options] Override http request option.
|
|
82727
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
82728
|
+
* @throws {RequiredError}
|
|
82729
|
+
*/
|
|
82730
|
+
export declare function WorkspaceColorPaletteControllerApi_UpdateEntityWorkspaceColorPalettes(axios: AxiosInstance, basePath: string, requestParameters: WorkspaceColorPaletteControllerApiUpdateEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
82731
|
+
/**
|
|
82732
|
+
* WorkspaceColorPaletteControllerApi - interface
|
|
82733
|
+
* @export
|
|
82734
|
+
* @interface WorkspaceColorPaletteControllerApi
|
|
82735
|
+
*/
|
|
82736
|
+
export interface WorkspaceColorPaletteControllerApiInterface {
|
|
82737
|
+
/**
|
|
82738
|
+
*
|
|
82739
|
+
* @summary Post Workspace Color Palette
|
|
82740
|
+
* @param {WorkspaceColorPaletteControllerApiCreateEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
82741
|
+
* @param {*} [options] Override http request option.
|
|
82742
|
+
* @throws {RequiredError}
|
|
82743
|
+
* @memberof WorkspaceColorPaletteControllerApiInterface
|
|
82744
|
+
*/
|
|
82745
|
+
createEntityWorkspaceColorPalettes(requestParameters: WorkspaceColorPaletteControllerApiCreateEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
82746
|
+
/**
|
|
82747
|
+
*
|
|
82748
|
+
* @summary Delete a Workspace Color Palette
|
|
82749
|
+
* @param {WorkspaceColorPaletteControllerApiDeleteEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
82750
|
+
* @param {*} [options] Override http request option.
|
|
82751
|
+
* @throws {RequiredError}
|
|
82752
|
+
* @memberof WorkspaceColorPaletteControllerApiInterface
|
|
82753
|
+
*/
|
|
82754
|
+
deleteEntityWorkspaceColorPalettes(requestParameters: WorkspaceColorPaletteControllerApiDeleteEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
82755
|
+
/**
|
|
82756
|
+
*
|
|
82757
|
+
* @summary Get all Workspace Color Palettes
|
|
82758
|
+
* @param {WorkspaceColorPaletteControllerApiGetAllEntitiesWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
82759
|
+
* @param {*} [options] Override http request option.
|
|
82760
|
+
* @throws {RequiredError}
|
|
82761
|
+
* @memberof WorkspaceColorPaletteControllerApiInterface
|
|
82762
|
+
*/
|
|
82763
|
+
getAllEntitiesWorkspaceColorPalettes(requestParameters: WorkspaceColorPaletteControllerApiGetAllEntitiesWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutList>;
|
|
82764
|
+
/**
|
|
82765
|
+
*
|
|
82766
|
+
* @summary Get a Workspace Color Palette
|
|
82767
|
+
* @param {WorkspaceColorPaletteControllerApiGetEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
82768
|
+
* @param {*} [options] Override http request option.
|
|
82769
|
+
* @throws {RequiredError}
|
|
82770
|
+
* @memberof WorkspaceColorPaletteControllerApiInterface
|
|
82771
|
+
*/
|
|
82772
|
+
getEntityWorkspaceColorPalettes(requestParameters: WorkspaceColorPaletteControllerApiGetEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
82773
|
+
/**
|
|
82774
|
+
*
|
|
82775
|
+
* @summary Patch a Workspace Color Palette
|
|
82776
|
+
* @param {WorkspaceColorPaletteControllerApiPatchEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
82777
|
+
* @param {*} [options] Override http request option.
|
|
82778
|
+
* @throws {RequiredError}
|
|
82779
|
+
* @memberof WorkspaceColorPaletteControllerApiInterface
|
|
82780
|
+
*/
|
|
82781
|
+
patchEntityWorkspaceColorPalettes(requestParameters: WorkspaceColorPaletteControllerApiPatchEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
82782
|
+
/**
|
|
82783
|
+
*
|
|
82784
|
+
* @summary Put a Workspace Color Palette
|
|
82785
|
+
* @param {WorkspaceColorPaletteControllerApiUpdateEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
82786
|
+
* @param {*} [options] Override http request option.
|
|
82787
|
+
* @throws {RequiredError}
|
|
82788
|
+
* @memberof WorkspaceColorPaletteControllerApiInterface
|
|
82789
|
+
*/
|
|
82790
|
+
updateEntityWorkspaceColorPalettes(requestParameters: WorkspaceColorPaletteControllerApiUpdateEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
82791
|
+
}
|
|
82792
|
+
/**
|
|
82793
|
+
* Request parameters for createEntityWorkspaceColorPalettes operation in WorkspaceColorPaletteControllerApi.
|
|
82794
|
+
* @export
|
|
82795
|
+
* @interface WorkspaceColorPaletteControllerApiCreateEntityWorkspaceColorPalettesRequest
|
|
82796
|
+
*/
|
|
82797
|
+
export interface WorkspaceColorPaletteControllerApiCreateEntityWorkspaceColorPalettesRequest {
|
|
82798
|
+
/**
|
|
82799
|
+
*
|
|
82800
|
+
* @type {string}
|
|
82801
|
+
* @memberof WorkspaceColorPaletteControllerApiCreateEntityWorkspaceColorPalettes
|
|
82802
|
+
*/
|
|
82803
|
+
readonly workspaceId: string;
|
|
82804
|
+
/**
|
|
82805
|
+
*
|
|
82806
|
+
* @type {JsonApiWorkspaceColorPaletteInDocument}
|
|
82807
|
+
* @memberof WorkspaceColorPaletteControllerApiCreateEntityWorkspaceColorPalettes
|
|
82808
|
+
*/
|
|
82809
|
+
readonly jsonApiWorkspaceColorPaletteInDocument: JsonApiWorkspaceColorPaletteInDocument;
|
|
82810
|
+
/**
|
|
82811
|
+
* Include Meta objects.
|
|
82812
|
+
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
82813
|
+
* @memberof WorkspaceColorPaletteControllerApiCreateEntityWorkspaceColorPalettes
|
|
82814
|
+
*/
|
|
82815
|
+
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
82816
|
+
}
|
|
82817
|
+
/**
|
|
82818
|
+
* Request parameters for deleteEntityWorkspaceColorPalettes operation in WorkspaceColorPaletteControllerApi.
|
|
82819
|
+
* @export
|
|
82820
|
+
* @interface WorkspaceColorPaletteControllerApiDeleteEntityWorkspaceColorPalettesRequest
|
|
82821
|
+
*/
|
|
82822
|
+
export interface WorkspaceColorPaletteControllerApiDeleteEntityWorkspaceColorPalettesRequest {
|
|
82823
|
+
/**
|
|
82824
|
+
*
|
|
82825
|
+
* @type {string}
|
|
82826
|
+
* @memberof WorkspaceColorPaletteControllerApiDeleteEntityWorkspaceColorPalettes
|
|
82827
|
+
*/
|
|
82828
|
+
readonly workspaceId: string;
|
|
82829
|
+
/**
|
|
82830
|
+
*
|
|
82831
|
+
* @type {string}
|
|
82832
|
+
* @memberof WorkspaceColorPaletteControllerApiDeleteEntityWorkspaceColorPalettes
|
|
82833
|
+
*/
|
|
82834
|
+
readonly objectId: string;
|
|
82835
|
+
}
|
|
82836
|
+
/**
|
|
82837
|
+
* Request parameters for getAllEntitiesWorkspaceColorPalettes operation in WorkspaceColorPaletteControllerApi.
|
|
82838
|
+
* @export
|
|
82839
|
+
* @interface WorkspaceColorPaletteControllerApiGetAllEntitiesWorkspaceColorPalettesRequest
|
|
82840
|
+
*/
|
|
82841
|
+
export interface WorkspaceColorPaletteControllerApiGetAllEntitiesWorkspaceColorPalettesRequest {
|
|
82842
|
+
/**
|
|
82843
|
+
*
|
|
82844
|
+
* @type {string}
|
|
82845
|
+
* @memberof WorkspaceColorPaletteControllerApiGetAllEntitiesWorkspaceColorPalettes
|
|
82846
|
+
*/
|
|
82847
|
+
readonly workspaceId: string;
|
|
82848
|
+
/**
|
|
82849
|
+
*
|
|
82850
|
+
* @type {'ALL' | 'PARENTS' | 'NATIVE'}
|
|
82851
|
+
* @memberof WorkspaceColorPaletteControllerApiGetAllEntitiesWorkspaceColorPalettes
|
|
82852
|
+
*/
|
|
82853
|
+
readonly origin?: 'ALL' | 'PARENTS' | 'NATIVE';
|
|
82854
|
+
/**
|
|
82855
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
82856
|
+
* @type {string}
|
|
82857
|
+
* @memberof WorkspaceColorPaletteControllerApiGetAllEntitiesWorkspaceColorPalettes
|
|
82858
|
+
*/
|
|
82859
|
+
readonly filter?: string;
|
|
82860
|
+
/**
|
|
82861
|
+
* Zero-based page index (0..N)
|
|
82862
|
+
* @type {number}
|
|
82863
|
+
* @memberof WorkspaceColorPaletteControllerApiGetAllEntitiesWorkspaceColorPalettes
|
|
82864
|
+
*/
|
|
82865
|
+
readonly page?: number;
|
|
82866
|
+
/**
|
|
82867
|
+
* The size of the page to be returned
|
|
82868
|
+
* @type {number}
|
|
82869
|
+
* @memberof WorkspaceColorPaletteControllerApiGetAllEntitiesWorkspaceColorPalettes
|
|
82870
|
+
*/
|
|
82871
|
+
readonly size?: number;
|
|
82872
|
+
/**
|
|
82873
|
+
* Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
82874
|
+
* @type {Array<string>}
|
|
82875
|
+
* @memberof WorkspaceColorPaletteControllerApiGetAllEntitiesWorkspaceColorPalettes
|
|
82876
|
+
*/
|
|
82877
|
+
readonly sort?: Array<string>;
|
|
82878
|
+
/**
|
|
82879
|
+
*
|
|
82880
|
+
* @type {boolean}
|
|
82881
|
+
* @memberof WorkspaceColorPaletteControllerApiGetAllEntitiesWorkspaceColorPalettes
|
|
82882
|
+
*/
|
|
82883
|
+
readonly xGDCVALIDATERELATIONS?: boolean;
|
|
82884
|
+
/**
|
|
82885
|
+
* Include Meta objects.
|
|
82886
|
+
* @type {Array<'origin' | 'page' | 'all' | 'ALL'>}
|
|
82887
|
+
* @memberof WorkspaceColorPaletteControllerApiGetAllEntitiesWorkspaceColorPalettes
|
|
82888
|
+
*/
|
|
82889
|
+
readonly metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>;
|
|
82890
|
+
}
|
|
82891
|
+
/**
|
|
82892
|
+
* Request parameters for getEntityWorkspaceColorPalettes operation in WorkspaceColorPaletteControllerApi.
|
|
82893
|
+
* @export
|
|
82894
|
+
* @interface WorkspaceColorPaletteControllerApiGetEntityWorkspaceColorPalettesRequest
|
|
82895
|
+
*/
|
|
82896
|
+
export interface WorkspaceColorPaletteControllerApiGetEntityWorkspaceColorPalettesRequest {
|
|
82897
|
+
/**
|
|
82898
|
+
*
|
|
82899
|
+
* @type {string}
|
|
82900
|
+
* @memberof WorkspaceColorPaletteControllerApiGetEntityWorkspaceColorPalettes
|
|
82901
|
+
*/
|
|
82902
|
+
readonly workspaceId: string;
|
|
82903
|
+
/**
|
|
82904
|
+
*
|
|
82905
|
+
* @type {string}
|
|
82906
|
+
* @memberof WorkspaceColorPaletteControllerApiGetEntityWorkspaceColorPalettes
|
|
82907
|
+
*/
|
|
82908
|
+
readonly objectId: string;
|
|
82909
|
+
/**
|
|
82910
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
82911
|
+
* @type {string}
|
|
82912
|
+
* @memberof WorkspaceColorPaletteControllerApiGetEntityWorkspaceColorPalettes
|
|
82913
|
+
*/
|
|
82914
|
+
readonly filter?: string;
|
|
82915
|
+
/**
|
|
82916
|
+
*
|
|
82917
|
+
* @type {boolean}
|
|
82918
|
+
* @memberof WorkspaceColorPaletteControllerApiGetEntityWorkspaceColorPalettes
|
|
82919
|
+
*/
|
|
82920
|
+
readonly xGDCVALIDATERELATIONS?: boolean;
|
|
82921
|
+
/**
|
|
82922
|
+
* Include Meta objects.
|
|
82923
|
+
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
82924
|
+
* @memberof WorkspaceColorPaletteControllerApiGetEntityWorkspaceColorPalettes
|
|
82925
|
+
*/
|
|
82926
|
+
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
82927
|
+
}
|
|
82928
|
+
/**
|
|
82929
|
+
* Request parameters for patchEntityWorkspaceColorPalettes operation in WorkspaceColorPaletteControllerApi.
|
|
82930
|
+
* @export
|
|
82931
|
+
* @interface WorkspaceColorPaletteControllerApiPatchEntityWorkspaceColorPalettesRequest
|
|
82932
|
+
*/
|
|
82933
|
+
export interface WorkspaceColorPaletteControllerApiPatchEntityWorkspaceColorPalettesRequest {
|
|
82934
|
+
/**
|
|
82935
|
+
*
|
|
82936
|
+
* @type {string}
|
|
82937
|
+
* @memberof WorkspaceColorPaletteControllerApiPatchEntityWorkspaceColorPalettes
|
|
82938
|
+
*/
|
|
82939
|
+
readonly workspaceId: string;
|
|
82940
|
+
/**
|
|
82941
|
+
*
|
|
82942
|
+
* @type {string}
|
|
82943
|
+
* @memberof WorkspaceColorPaletteControllerApiPatchEntityWorkspaceColorPalettes
|
|
82944
|
+
*/
|
|
82945
|
+
readonly objectId: string;
|
|
82946
|
+
/**
|
|
82947
|
+
*
|
|
82948
|
+
* @type {JsonApiWorkspaceColorPalettePatchDocument}
|
|
82949
|
+
* @memberof WorkspaceColorPaletteControllerApiPatchEntityWorkspaceColorPalettes
|
|
82950
|
+
*/
|
|
82951
|
+
readonly jsonApiWorkspaceColorPalettePatchDocument: JsonApiWorkspaceColorPalettePatchDocument;
|
|
82952
|
+
/**
|
|
82953
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
82954
|
+
* @type {string}
|
|
82955
|
+
* @memberof WorkspaceColorPaletteControllerApiPatchEntityWorkspaceColorPalettes
|
|
82956
|
+
*/
|
|
82957
|
+
readonly filter?: string;
|
|
82958
|
+
}
|
|
82959
|
+
/**
|
|
82960
|
+
* Request parameters for updateEntityWorkspaceColorPalettes operation in WorkspaceColorPaletteControllerApi.
|
|
82961
|
+
* @export
|
|
82962
|
+
* @interface WorkspaceColorPaletteControllerApiUpdateEntityWorkspaceColorPalettesRequest
|
|
82963
|
+
*/
|
|
82964
|
+
export interface WorkspaceColorPaletteControllerApiUpdateEntityWorkspaceColorPalettesRequest {
|
|
82965
|
+
/**
|
|
82966
|
+
*
|
|
82967
|
+
* @type {string}
|
|
82968
|
+
* @memberof WorkspaceColorPaletteControllerApiUpdateEntityWorkspaceColorPalettes
|
|
82969
|
+
*/
|
|
82970
|
+
readonly workspaceId: string;
|
|
82971
|
+
/**
|
|
82972
|
+
*
|
|
82973
|
+
* @type {string}
|
|
82974
|
+
* @memberof WorkspaceColorPaletteControllerApiUpdateEntityWorkspaceColorPalettes
|
|
82975
|
+
*/
|
|
82976
|
+
readonly objectId: string;
|
|
82977
|
+
/**
|
|
82978
|
+
*
|
|
82979
|
+
* @type {JsonApiWorkspaceColorPaletteInDocument}
|
|
82980
|
+
* @memberof WorkspaceColorPaletteControllerApiUpdateEntityWorkspaceColorPalettes
|
|
82981
|
+
*/
|
|
82982
|
+
readonly jsonApiWorkspaceColorPaletteInDocument: JsonApiWorkspaceColorPaletteInDocument;
|
|
82983
|
+
/**
|
|
82984
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
82985
|
+
* @type {string}
|
|
82986
|
+
* @memberof WorkspaceColorPaletteControllerApiUpdateEntityWorkspaceColorPalettes
|
|
82987
|
+
*/
|
|
82988
|
+
readonly filter?: string;
|
|
82989
|
+
}
|
|
82990
|
+
/**
|
|
82991
|
+
* WorkspaceColorPaletteControllerApi - object-oriented interface
|
|
82992
|
+
* @export
|
|
82993
|
+
* @class WorkspaceColorPaletteControllerApi
|
|
82994
|
+
* @extends {BaseAPI}
|
|
82995
|
+
*/
|
|
82996
|
+
export declare class WorkspaceColorPaletteControllerApi extends BaseAPI implements WorkspaceColorPaletteControllerApiInterface {
|
|
82997
|
+
/**
|
|
82998
|
+
*
|
|
82999
|
+
* @summary Post Workspace Color Palette
|
|
83000
|
+
* @param {WorkspaceColorPaletteControllerApiCreateEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
83001
|
+
* @param {*} [options] Override http request option.
|
|
83002
|
+
* @throws {RequiredError}
|
|
83003
|
+
* @memberof WorkspaceColorPaletteControllerApi
|
|
83004
|
+
*/
|
|
83005
|
+
createEntityWorkspaceColorPalettes(requestParameters: WorkspaceColorPaletteControllerApiCreateEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
83006
|
+
/**
|
|
83007
|
+
*
|
|
83008
|
+
* @summary Delete a Workspace Color Palette
|
|
83009
|
+
* @param {WorkspaceColorPaletteControllerApiDeleteEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
83010
|
+
* @param {*} [options] Override http request option.
|
|
83011
|
+
* @throws {RequiredError}
|
|
83012
|
+
* @memberof WorkspaceColorPaletteControllerApi
|
|
83013
|
+
*/
|
|
83014
|
+
deleteEntityWorkspaceColorPalettes(requestParameters: WorkspaceColorPaletteControllerApiDeleteEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
83015
|
+
/**
|
|
83016
|
+
*
|
|
83017
|
+
* @summary Get all Workspace Color Palettes
|
|
83018
|
+
* @param {WorkspaceColorPaletteControllerApiGetAllEntitiesWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
83019
|
+
* @param {*} [options] Override http request option.
|
|
83020
|
+
* @throws {RequiredError}
|
|
83021
|
+
* @memberof WorkspaceColorPaletteControllerApi
|
|
83022
|
+
*/
|
|
83023
|
+
getAllEntitiesWorkspaceColorPalettes(requestParameters: WorkspaceColorPaletteControllerApiGetAllEntitiesWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutList>;
|
|
83024
|
+
/**
|
|
83025
|
+
*
|
|
83026
|
+
* @summary Get a Workspace Color Palette
|
|
83027
|
+
* @param {WorkspaceColorPaletteControllerApiGetEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
83028
|
+
* @param {*} [options] Override http request option.
|
|
83029
|
+
* @throws {RequiredError}
|
|
83030
|
+
* @memberof WorkspaceColorPaletteControllerApi
|
|
83031
|
+
*/
|
|
83032
|
+
getEntityWorkspaceColorPalettes(requestParameters: WorkspaceColorPaletteControllerApiGetEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
83033
|
+
/**
|
|
83034
|
+
*
|
|
83035
|
+
* @summary Patch a Workspace Color Palette
|
|
83036
|
+
* @param {WorkspaceColorPaletteControllerApiPatchEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
83037
|
+
* @param {*} [options] Override http request option.
|
|
83038
|
+
* @throws {RequiredError}
|
|
83039
|
+
* @memberof WorkspaceColorPaletteControllerApi
|
|
83040
|
+
*/
|
|
83041
|
+
patchEntityWorkspaceColorPalettes(requestParameters: WorkspaceColorPaletteControllerApiPatchEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
83042
|
+
/**
|
|
83043
|
+
*
|
|
83044
|
+
* @summary Put a Workspace Color Palette
|
|
83045
|
+
* @param {WorkspaceColorPaletteControllerApiUpdateEntityWorkspaceColorPalettesRequest} requestParameters Request parameters.
|
|
83046
|
+
* @param {*} [options] Override http request option.
|
|
83047
|
+
* @throws {RequiredError}
|
|
83048
|
+
* @memberof WorkspaceColorPaletteControllerApi
|
|
83049
|
+
*/
|
|
83050
|
+
updateEntityWorkspaceColorPalettes(requestParameters: WorkspaceColorPaletteControllerApiUpdateEntityWorkspaceColorPalettesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceColorPaletteOutDocument>;
|
|
83051
|
+
}
|
|
80623
83052
|
/**
|
|
80624
83053
|
* Space of the shared interest
|
|
80625
83054
|
* @summary Post Workspace entities
|
|
@@ -83183,6 +85612,467 @@ export declare class WorkspaceSettingControllerApi extends BaseAPI implements Wo
|
|
|
83183
85612
|
*/
|
|
83184
85613
|
updateEntityWorkspaceSettings(requestParameters: WorkspaceSettingControllerApiUpdateEntityWorkspaceSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceSettingOutDocument>;
|
|
83185
85614
|
}
|
|
85615
|
+
/**
|
|
85616
|
+
*
|
|
85617
|
+
* @summary Post Workspace Theme
|
|
85618
|
+
* @param {string} workspaceId
|
|
85619
|
+
* @param {JsonApiWorkspaceThemeInDocument} jsonApiWorkspaceThemeInDocument
|
|
85620
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
85621
|
+
* @param {*} [options] Override http request option.
|
|
85622
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
85623
|
+
* @throws {RequiredError}
|
|
85624
|
+
*/
|
|
85625
|
+
export declare function WorkspaceThemeControllerApiAxiosParamCreator_CreateEntityWorkspaceThemes(workspaceId: string, jsonApiWorkspaceThemeInDocument: JsonApiWorkspaceThemeInDocument, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
85626
|
+
/**
|
|
85627
|
+
*
|
|
85628
|
+
* @summary Delete a Workspace Theme
|
|
85629
|
+
* @param {string} workspaceId
|
|
85630
|
+
* @param {string} objectId
|
|
85631
|
+
* @param {*} [options] Override http request option.
|
|
85632
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
85633
|
+
* @throws {RequiredError}
|
|
85634
|
+
*/
|
|
85635
|
+
export declare function WorkspaceThemeControllerApiAxiosParamCreator_DeleteEntityWorkspaceThemes(workspaceId: string, objectId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
85636
|
+
/**
|
|
85637
|
+
*
|
|
85638
|
+
* @summary Get all Workspace Themes
|
|
85639
|
+
* @param {string} workspaceId
|
|
85640
|
+
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
85641
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
85642
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
85643
|
+
* @param {number} [size] The size of the page to be returned
|
|
85644
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
85645
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
85646
|
+
* @param {Array<'origin' | 'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
85647
|
+
* @param {*} [options] Override http request option.
|
|
85648
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
85649
|
+
* @throws {RequiredError}
|
|
85650
|
+
*/
|
|
85651
|
+
export declare function WorkspaceThemeControllerApiAxiosParamCreator_GetAllEntitiesWorkspaceThemes(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
85652
|
+
/**
|
|
85653
|
+
*
|
|
85654
|
+
* @summary Get a Workspace Theme
|
|
85655
|
+
* @param {string} workspaceId
|
|
85656
|
+
* @param {string} objectId
|
|
85657
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
85658
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
85659
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
85660
|
+
* @param {*} [options] Override http request option.
|
|
85661
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
85662
|
+
* @throws {RequiredError}
|
|
85663
|
+
*/
|
|
85664
|
+
export declare function WorkspaceThemeControllerApiAxiosParamCreator_GetEntityWorkspaceThemes(workspaceId: string, objectId: string, filter?: string, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
85665
|
+
/**
|
|
85666
|
+
*
|
|
85667
|
+
* @summary Patch a Workspace Theme
|
|
85668
|
+
* @param {string} workspaceId
|
|
85669
|
+
* @param {string} objectId
|
|
85670
|
+
* @param {JsonApiWorkspaceThemePatchDocument} jsonApiWorkspaceThemePatchDocument
|
|
85671
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
85672
|
+
* @param {*} [options] Override http request option.
|
|
85673
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
85674
|
+
* @throws {RequiredError}
|
|
85675
|
+
*/
|
|
85676
|
+
export declare function WorkspaceThemeControllerApiAxiosParamCreator_PatchEntityWorkspaceThemes(workspaceId: string, objectId: string, jsonApiWorkspaceThemePatchDocument: JsonApiWorkspaceThemePatchDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
85677
|
+
/**
|
|
85678
|
+
*
|
|
85679
|
+
* @summary Put a Workspace Theme
|
|
85680
|
+
* @param {string} workspaceId
|
|
85681
|
+
* @param {string} objectId
|
|
85682
|
+
* @param {JsonApiWorkspaceThemeInDocument} jsonApiWorkspaceThemeInDocument
|
|
85683
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
85684
|
+
* @param {*} [options] Override http request option.
|
|
85685
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
85686
|
+
* @throws {RequiredError}
|
|
85687
|
+
*/
|
|
85688
|
+
export declare function WorkspaceThemeControllerApiAxiosParamCreator_UpdateEntityWorkspaceThemes(workspaceId: string, objectId: string, jsonApiWorkspaceThemeInDocument: JsonApiWorkspaceThemeInDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
85689
|
+
/**
|
|
85690
|
+
*
|
|
85691
|
+
* @summary Post Workspace Theme
|
|
85692
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
85693
|
+
* @param {string} basePath Base path.
|
|
85694
|
+
* @param {WorkspaceThemeControllerApiCreateEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
85695
|
+
* @param {*} [options] Override http request option.
|
|
85696
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
85697
|
+
* @throws {RequiredError}
|
|
85698
|
+
*/
|
|
85699
|
+
export declare function WorkspaceThemeControllerApi_CreateEntityWorkspaceThemes(axios: AxiosInstance, basePath: string, requestParameters: WorkspaceThemeControllerApiCreateEntityWorkspaceThemesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
85700
|
+
/**
|
|
85701
|
+
*
|
|
85702
|
+
* @summary Delete a Workspace Theme
|
|
85703
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
85704
|
+
* @param {string} basePath Base path.
|
|
85705
|
+
* @param {WorkspaceThemeControllerApiDeleteEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
85706
|
+
* @param {*} [options] Override http request option.
|
|
85707
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
85708
|
+
* @throws {RequiredError}
|
|
85709
|
+
*/
|
|
85710
|
+
export declare function WorkspaceThemeControllerApi_DeleteEntityWorkspaceThemes(axios: AxiosInstance, basePath: string, requestParameters: WorkspaceThemeControllerApiDeleteEntityWorkspaceThemesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
85711
|
+
/**
|
|
85712
|
+
*
|
|
85713
|
+
* @summary Get all Workspace Themes
|
|
85714
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
85715
|
+
* @param {string} basePath Base path.
|
|
85716
|
+
* @param {WorkspaceThemeControllerApiGetAllEntitiesWorkspaceThemesRequest} requestParameters Request parameters.
|
|
85717
|
+
* @param {*} [options] Override http request option.
|
|
85718
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
85719
|
+
* @throws {RequiredError}
|
|
85720
|
+
*/
|
|
85721
|
+
export declare function WorkspaceThemeControllerApi_GetAllEntitiesWorkspaceThemes(axios: AxiosInstance, basePath: string, requestParameters: WorkspaceThemeControllerApiGetAllEntitiesWorkspaceThemesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceThemeOutList>;
|
|
85722
|
+
/**
|
|
85723
|
+
*
|
|
85724
|
+
* @summary Get a Workspace Theme
|
|
85725
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
85726
|
+
* @param {string} basePath Base path.
|
|
85727
|
+
* @param {WorkspaceThemeControllerApiGetEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
85728
|
+
* @param {*} [options] Override http request option.
|
|
85729
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
85730
|
+
* @throws {RequiredError}
|
|
85731
|
+
*/
|
|
85732
|
+
export declare function WorkspaceThemeControllerApi_GetEntityWorkspaceThemes(axios: AxiosInstance, basePath: string, requestParameters: WorkspaceThemeControllerApiGetEntityWorkspaceThemesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
85733
|
+
/**
|
|
85734
|
+
*
|
|
85735
|
+
* @summary Patch a Workspace Theme
|
|
85736
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
85737
|
+
* @param {string} basePath Base path.
|
|
85738
|
+
* @param {WorkspaceThemeControllerApiPatchEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
85739
|
+
* @param {*} [options] Override http request option.
|
|
85740
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
85741
|
+
* @throws {RequiredError}
|
|
85742
|
+
*/
|
|
85743
|
+
export declare function WorkspaceThemeControllerApi_PatchEntityWorkspaceThemes(axios: AxiosInstance, basePath: string, requestParameters: WorkspaceThemeControllerApiPatchEntityWorkspaceThemesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
85744
|
+
/**
|
|
85745
|
+
*
|
|
85746
|
+
* @summary Put a Workspace Theme
|
|
85747
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
85748
|
+
* @param {string} basePath Base path.
|
|
85749
|
+
* @param {WorkspaceThemeControllerApiUpdateEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
85750
|
+
* @param {*} [options] Override http request option.
|
|
85751
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
85752
|
+
* @throws {RequiredError}
|
|
85753
|
+
*/
|
|
85754
|
+
export declare function WorkspaceThemeControllerApi_UpdateEntityWorkspaceThemes(axios: AxiosInstance, basePath: string, requestParameters: WorkspaceThemeControllerApiUpdateEntityWorkspaceThemesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
85755
|
+
/**
|
|
85756
|
+
* WorkspaceThemeControllerApi - interface
|
|
85757
|
+
* @export
|
|
85758
|
+
* @interface WorkspaceThemeControllerApi
|
|
85759
|
+
*/
|
|
85760
|
+
export interface WorkspaceThemeControllerApiInterface {
|
|
85761
|
+
/**
|
|
85762
|
+
*
|
|
85763
|
+
* @summary Post Workspace Theme
|
|
85764
|
+
* @param {WorkspaceThemeControllerApiCreateEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
85765
|
+
* @param {*} [options] Override http request option.
|
|
85766
|
+
* @throws {RequiredError}
|
|
85767
|
+
* @memberof WorkspaceThemeControllerApiInterface
|
|
85768
|
+
*/
|
|
85769
|
+
createEntityWorkspaceThemes(requestParameters: WorkspaceThemeControllerApiCreateEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
85770
|
+
/**
|
|
85771
|
+
*
|
|
85772
|
+
* @summary Delete a Workspace Theme
|
|
85773
|
+
* @param {WorkspaceThemeControllerApiDeleteEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
85774
|
+
* @param {*} [options] Override http request option.
|
|
85775
|
+
* @throws {RequiredError}
|
|
85776
|
+
* @memberof WorkspaceThemeControllerApiInterface
|
|
85777
|
+
*/
|
|
85778
|
+
deleteEntityWorkspaceThemes(requestParameters: WorkspaceThemeControllerApiDeleteEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
85779
|
+
/**
|
|
85780
|
+
*
|
|
85781
|
+
* @summary Get all Workspace Themes
|
|
85782
|
+
* @param {WorkspaceThemeControllerApiGetAllEntitiesWorkspaceThemesRequest} requestParameters Request parameters.
|
|
85783
|
+
* @param {*} [options] Override http request option.
|
|
85784
|
+
* @throws {RequiredError}
|
|
85785
|
+
* @memberof WorkspaceThemeControllerApiInterface
|
|
85786
|
+
*/
|
|
85787
|
+
getAllEntitiesWorkspaceThemes(requestParameters: WorkspaceThemeControllerApiGetAllEntitiesWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutList>;
|
|
85788
|
+
/**
|
|
85789
|
+
*
|
|
85790
|
+
* @summary Get a Workspace Theme
|
|
85791
|
+
* @param {WorkspaceThemeControllerApiGetEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
85792
|
+
* @param {*} [options] Override http request option.
|
|
85793
|
+
* @throws {RequiredError}
|
|
85794
|
+
* @memberof WorkspaceThemeControllerApiInterface
|
|
85795
|
+
*/
|
|
85796
|
+
getEntityWorkspaceThemes(requestParameters: WorkspaceThemeControllerApiGetEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
85797
|
+
/**
|
|
85798
|
+
*
|
|
85799
|
+
* @summary Patch a Workspace Theme
|
|
85800
|
+
* @param {WorkspaceThemeControllerApiPatchEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
85801
|
+
* @param {*} [options] Override http request option.
|
|
85802
|
+
* @throws {RequiredError}
|
|
85803
|
+
* @memberof WorkspaceThemeControllerApiInterface
|
|
85804
|
+
*/
|
|
85805
|
+
patchEntityWorkspaceThemes(requestParameters: WorkspaceThemeControllerApiPatchEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
85806
|
+
/**
|
|
85807
|
+
*
|
|
85808
|
+
* @summary Put a Workspace Theme
|
|
85809
|
+
* @param {WorkspaceThemeControllerApiUpdateEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
85810
|
+
* @param {*} [options] Override http request option.
|
|
85811
|
+
* @throws {RequiredError}
|
|
85812
|
+
* @memberof WorkspaceThemeControllerApiInterface
|
|
85813
|
+
*/
|
|
85814
|
+
updateEntityWorkspaceThemes(requestParameters: WorkspaceThemeControllerApiUpdateEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
85815
|
+
}
|
|
85816
|
+
/**
|
|
85817
|
+
* Request parameters for createEntityWorkspaceThemes operation in WorkspaceThemeControllerApi.
|
|
85818
|
+
* @export
|
|
85819
|
+
* @interface WorkspaceThemeControllerApiCreateEntityWorkspaceThemesRequest
|
|
85820
|
+
*/
|
|
85821
|
+
export interface WorkspaceThemeControllerApiCreateEntityWorkspaceThemesRequest {
|
|
85822
|
+
/**
|
|
85823
|
+
*
|
|
85824
|
+
* @type {string}
|
|
85825
|
+
* @memberof WorkspaceThemeControllerApiCreateEntityWorkspaceThemes
|
|
85826
|
+
*/
|
|
85827
|
+
readonly workspaceId: string;
|
|
85828
|
+
/**
|
|
85829
|
+
*
|
|
85830
|
+
* @type {JsonApiWorkspaceThemeInDocument}
|
|
85831
|
+
* @memberof WorkspaceThemeControllerApiCreateEntityWorkspaceThemes
|
|
85832
|
+
*/
|
|
85833
|
+
readonly jsonApiWorkspaceThemeInDocument: JsonApiWorkspaceThemeInDocument;
|
|
85834
|
+
/**
|
|
85835
|
+
* Include Meta objects.
|
|
85836
|
+
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
85837
|
+
* @memberof WorkspaceThemeControllerApiCreateEntityWorkspaceThemes
|
|
85838
|
+
*/
|
|
85839
|
+
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
85840
|
+
}
|
|
85841
|
+
/**
|
|
85842
|
+
* Request parameters for deleteEntityWorkspaceThemes operation in WorkspaceThemeControllerApi.
|
|
85843
|
+
* @export
|
|
85844
|
+
* @interface WorkspaceThemeControllerApiDeleteEntityWorkspaceThemesRequest
|
|
85845
|
+
*/
|
|
85846
|
+
export interface WorkspaceThemeControllerApiDeleteEntityWorkspaceThemesRequest {
|
|
85847
|
+
/**
|
|
85848
|
+
*
|
|
85849
|
+
* @type {string}
|
|
85850
|
+
* @memberof WorkspaceThemeControllerApiDeleteEntityWorkspaceThemes
|
|
85851
|
+
*/
|
|
85852
|
+
readonly workspaceId: string;
|
|
85853
|
+
/**
|
|
85854
|
+
*
|
|
85855
|
+
* @type {string}
|
|
85856
|
+
* @memberof WorkspaceThemeControllerApiDeleteEntityWorkspaceThemes
|
|
85857
|
+
*/
|
|
85858
|
+
readonly objectId: string;
|
|
85859
|
+
}
|
|
85860
|
+
/**
|
|
85861
|
+
* Request parameters for getAllEntitiesWorkspaceThemes operation in WorkspaceThemeControllerApi.
|
|
85862
|
+
* @export
|
|
85863
|
+
* @interface WorkspaceThemeControllerApiGetAllEntitiesWorkspaceThemesRequest
|
|
85864
|
+
*/
|
|
85865
|
+
export interface WorkspaceThemeControllerApiGetAllEntitiesWorkspaceThemesRequest {
|
|
85866
|
+
/**
|
|
85867
|
+
*
|
|
85868
|
+
* @type {string}
|
|
85869
|
+
* @memberof WorkspaceThemeControllerApiGetAllEntitiesWorkspaceThemes
|
|
85870
|
+
*/
|
|
85871
|
+
readonly workspaceId: string;
|
|
85872
|
+
/**
|
|
85873
|
+
*
|
|
85874
|
+
* @type {'ALL' | 'PARENTS' | 'NATIVE'}
|
|
85875
|
+
* @memberof WorkspaceThemeControllerApiGetAllEntitiesWorkspaceThemes
|
|
85876
|
+
*/
|
|
85877
|
+
readonly origin?: 'ALL' | 'PARENTS' | 'NATIVE';
|
|
85878
|
+
/**
|
|
85879
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
85880
|
+
* @type {string}
|
|
85881
|
+
* @memberof WorkspaceThemeControllerApiGetAllEntitiesWorkspaceThemes
|
|
85882
|
+
*/
|
|
85883
|
+
readonly filter?: string;
|
|
85884
|
+
/**
|
|
85885
|
+
* Zero-based page index (0..N)
|
|
85886
|
+
* @type {number}
|
|
85887
|
+
* @memberof WorkspaceThemeControllerApiGetAllEntitiesWorkspaceThemes
|
|
85888
|
+
*/
|
|
85889
|
+
readonly page?: number;
|
|
85890
|
+
/**
|
|
85891
|
+
* The size of the page to be returned
|
|
85892
|
+
* @type {number}
|
|
85893
|
+
* @memberof WorkspaceThemeControllerApiGetAllEntitiesWorkspaceThemes
|
|
85894
|
+
*/
|
|
85895
|
+
readonly size?: number;
|
|
85896
|
+
/**
|
|
85897
|
+
* Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
85898
|
+
* @type {Array<string>}
|
|
85899
|
+
* @memberof WorkspaceThemeControllerApiGetAllEntitiesWorkspaceThemes
|
|
85900
|
+
*/
|
|
85901
|
+
readonly sort?: Array<string>;
|
|
85902
|
+
/**
|
|
85903
|
+
*
|
|
85904
|
+
* @type {boolean}
|
|
85905
|
+
* @memberof WorkspaceThemeControllerApiGetAllEntitiesWorkspaceThemes
|
|
85906
|
+
*/
|
|
85907
|
+
readonly xGDCVALIDATERELATIONS?: boolean;
|
|
85908
|
+
/**
|
|
85909
|
+
* Include Meta objects.
|
|
85910
|
+
* @type {Array<'origin' | 'page' | 'all' | 'ALL'>}
|
|
85911
|
+
* @memberof WorkspaceThemeControllerApiGetAllEntitiesWorkspaceThemes
|
|
85912
|
+
*/
|
|
85913
|
+
readonly metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>;
|
|
85914
|
+
}
|
|
85915
|
+
/**
|
|
85916
|
+
* Request parameters for getEntityWorkspaceThemes operation in WorkspaceThemeControllerApi.
|
|
85917
|
+
* @export
|
|
85918
|
+
* @interface WorkspaceThemeControllerApiGetEntityWorkspaceThemesRequest
|
|
85919
|
+
*/
|
|
85920
|
+
export interface WorkspaceThemeControllerApiGetEntityWorkspaceThemesRequest {
|
|
85921
|
+
/**
|
|
85922
|
+
*
|
|
85923
|
+
* @type {string}
|
|
85924
|
+
* @memberof WorkspaceThemeControllerApiGetEntityWorkspaceThemes
|
|
85925
|
+
*/
|
|
85926
|
+
readonly workspaceId: string;
|
|
85927
|
+
/**
|
|
85928
|
+
*
|
|
85929
|
+
* @type {string}
|
|
85930
|
+
* @memberof WorkspaceThemeControllerApiGetEntityWorkspaceThemes
|
|
85931
|
+
*/
|
|
85932
|
+
readonly objectId: string;
|
|
85933
|
+
/**
|
|
85934
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
85935
|
+
* @type {string}
|
|
85936
|
+
* @memberof WorkspaceThemeControllerApiGetEntityWorkspaceThemes
|
|
85937
|
+
*/
|
|
85938
|
+
readonly filter?: string;
|
|
85939
|
+
/**
|
|
85940
|
+
*
|
|
85941
|
+
* @type {boolean}
|
|
85942
|
+
* @memberof WorkspaceThemeControllerApiGetEntityWorkspaceThemes
|
|
85943
|
+
*/
|
|
85944
|
+
readonly xGDCVALIDATERELATIONS?: boolean;
|
|
85945
|
+
/**
|
|
85946
|
+
* Include Meta objects.
|
|
85947
|
+
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
85948
|
+
* @memberof WorkspaceThemeControllerApiGetEntityWorkspaceThemes
|
|
85949
|
+
*/
|
|
85950
|
+
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
85951
|
+
}
|
|
85952
|
+
/**
|
|
85953
|
+
* Request parameters for patchEntityWorkspaceThemes operation in WorkspaceThemeControllerApi.
|
|
85954
|
+
* @export
|
|
85955
|
+
* @interface WorkspaceThemeControllerApiPatchEntityWorkspaceThemesRequest
|
|
85956
|
+
*/
|
|
85957
|
+
export interface WorkspaceThemeControllerApiPatchEntityWorkspaceThemesRequest {
|
|
85958
|
+
/**
|
|
85959
|
+
*
|
|
85960
|
+
* @type {string}
|
|
85961
|
+
* @memberof WorkspaceThemeControllerApiPatchEntityWorkspaceThemes
|
|
85962
|
+
*/
|
|
85963
|
+
readonly workspaceId: string;
|
|
85964
|
+
/**
|
|
85965
|
+
*
|
|
85966
|
+
* @type {string}
|
|
85967
|
+
* @memberof WorkspaceThemeControllerApiPatchEntityWorkspaceThemes
|
|
85968
|
+
*/
|
|
85969
|
+
readonly objectId: string;
|
|
85970
|
+
/**
|
|
85971
|
+
*
|
|
85972
|
+
* @type {JsonApiWorkspaceThemePatchDocument}
|
|
85973
|
+
* @memberof WorkspaceThemeControllerApiPatchEntityWorkspaceThemes
|
|
85974
|
+
*/
|
|
85975
|
+
readonly jsonApiWorkspaceThemePatchDocument: JsonApiWorkspaceThemePatchDocument;
|
|
85976
|
+
/**
|
|
85977
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
85978
|
+
* @type {string}
|
|
85979
|
+
* @memberof WorkspaceThemeControllerApiPatchEntityWorkspaceThemes
|
|
85980
|
+
*/
|
|
85981
|
+
readonly filter?: string;
|
|
85982
|
+
}
|
|
85983
|
+
/**
|
|
85984
|
+
* Request parameters for updateEntityWorkspaceThemes operation in WorkspaceThemeControllerApi.
|
|
85985
|
+
* @export
|
|
85986
|
+
* @interface WorkspaceThemeControllerApiUpdateEntityWorkspaceThemesRequest
|
|
85987
|
+
*/
|
|
85988
|
+
export interface WorkspaceThemeControllerApiUpdateEntityWorkspaceThemesRequest {
|
|
85989
|
+
/**
|
|
85990
|
+
*
|
|
85991
|
+
* @type {string}
|
|
85992
|
+
* @memberof WorkspaceThemeControllerApiUpdateEntityWorkspaceThemes
|
|
85993
|
+
*/
|
|
85994
|
+
readonly workspaceId: string;
|
|
85995
|
+
/**
|
|
85996
|
+
*
|
|
85997
|
+
* @type {string}
|
|
85998
|
+
* @memberof WorkspaceThemeControllerApiUpdateEntityWorkspaceThemes
|
|
85999
|
+
*/
|
|
86000
|
+
readonly objectId: string;
|
|
86001
|
+
/**
|
|
86002
|
+
*
|
|
86003
|
+
* @type {JsonApiWorkspaceThemeInDocument}
|
|
86004
|
+
* @memberof WorkspaceThemeControllerApiUpdateEntityWorkspaceThemes
|
|
86005
|
+
*/
|
|
86006
|
+
readonly jsonApiWorkspaceThemeInDocument: JsonApiWorkspaceThemeInDocument;
|
|
86007
|
+
/**
|
|
86008
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
86009
|
+
* @type {string}
|
|
86010
|
+
* @memberof WorkspaceThemeControllerApiUpdateEntityWorkspaceThemes
|
|
86011
|
+
*/
|
|
86012
|
+
readonly filter?: string;
|
|
86013
|
+
}
|
|
86014
|
+
/**
|
|
86015
|
+
* WorkspaceThemeControllerApi - object-oriented interface
|
|
86016
|
+
* @export
|
|
86017
|
+
* @class WorkspaceThemeControllerApi
|
|
86018
|
+
* @extends {BaseAPI}
|
|
86019
|
+
*/
|
|
86020
|
+
export declare class WorkspaceThemeControllerApi extends BaseAPI implements WorkspaceThemeControllerApiInterface {
|
|
86021
|
+
/**
|
|
86022
|
+
*
|
|
86023
|
+
* @summary Post Workspace Theme
|
|
86024
|
+
* @param {WorkspaceThemeControllerApiCreateEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
86025
|
+
* @param {*} [options] Override http request option.
|
|
86026
|
+
* @throws {RequiredError}
|
|
86027
|
+
* @memberof WorkspaceThemeControllerApi
|
|
86028
|
+
*/
|
|
86029
|
+
createEntityWorkspaceThemes(requestParameters: WorkspaceThemeControllerApiCreateEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
86030
|
+
/**
|
|
86031
|
+
*
|
|
86032
|
+
* @summary Delete a Workspace Theme
|
|
86033
|
+
* @param {WorkspaceThemeControllerApiDeleteEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
86034
|
+
* @param {*} [options] Override http request option.
|
|
86035
|
+
* @throws {RequiredError}
|
|
86036
|
+
* @memberof WorkspaceThemeControllerApi
|
|
86037
|
+
*/
|
|
86038
|
+
deleteEntityWorkspaceThemes(requestParameters: WorkspaceThemeControllerApiDeleteEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
86039
|
+
/**
|
|
86040
|
+
*
|
|
86041
|
+
* @summary Get all Workspace Themes
|
|
86042
|
+
* @param {WorkspaceThemeControllerApiGetAllEntitiesWorkspaceThemesRequest} requestParameters Request parameters.
|
|
86043
|
+
* @param {*} [options] Override http request option.
|
|
86044
|
+
* @throws {RequiredError}
|
|
86045
|
+
* @memberof WorkspaceThemeControllerApi
|
|
86046
|
+
*/
|
|
86047
|
+
getAllEntitiesWorkspaceThemes(requestParameters: WorkspaceThemeControllerApiGetAllEntitiesWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutList>;
|
|
86048
|
+
/**
|
|
86049
|
+
*
|
|
86050
|
+
* @summary Get a Workspace Theme
|
|
86051
|
+
* @param {WorkspaceThemeControllerApiGetEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
86052
|
+
* @param {*} [options] Override http request option.
|
|
86053
|
+
* @throws {RequiredError}
|
|
86054
|
+
* @memberof WorkspaceThemeControllerApi
|
|
86055
|
+
*/
|
|
86056
|
+
getEntityWorkspaceThemes(requestParameters: WorkspaceThemeControllerApiGetEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
86057
|
+
/**
|
|
86058
|
+
*
|
|
86059
|
+
* @summary Patch a Workspace Theme
|
|
86060
|
+
* @param {WorkspaceThemeControllerApiPatchEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
86061
|
+
* @param {*} [options] Override http request option.
|
|
86062
|
+
* @throws {RequiredError}
|
|
86063
|
+
* @memberof WorkspaceThemeControllerApi
|
|
86064
|
+
*/
|
|
86065
|
+
patchEntityWorkspaceThemes(requestParameters: WorkspaceThemeControllerApiPatchEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
86066
|
+
/**
|
|
86067
|
+
*
|
|
86068
|
+
* @summary Put a Workspace Theme
|
|
86069
|
+
* @param {WorkspaceThemeControllerApiUpdateEntityWorkspaceThemesRequest} requestParameters Request parameters.
|
|
86070
|
+
* @param {*} [options] Override http request option.
|
|
86071
|
+
* @throws {RequiredError}
|
|
86072
|
+
* @memberof WorkspaceThemeControllerApi
|
|
86073
|
+
*/
|
|
86074
|
+
updateEntityWorkspaceThemes(requestParameters: WorkspaceThemeControllerApiUpdateEntityWorkspaceThemesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceThemeOutDocument>;
|
|
86075
|
+
}
|
|
83186
86076
|
/**
|
|
83187
86077
|
* Retrieve current model of the workspace in declarative form.
|
|
83188
86078
|
* @summary Get workspace layout
|