@epilot/entity-client 4.16.1 → 4.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +0 -0
- package/dist/client.js +0 -0
- package/dist/definition.d.ts +0 -0
- package/dist/definition.js +1 -1
- package/dist/index.d.ts +0 -0
- package/dist/index.js +0 -0
- package/dist/openapi-runtime.json +149 -222
- package/dist/openapi.d.ts +206 -460
- package/dist/openapi.json +233 -587
- package/dist/schema-model.d.ts +0 -0
- package/dist/schema-model.js +0 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -8,6 +8,65 @@ import type {
|
|
|
8
8
|
} from 'openapi-client-axios';
|
|
9
9
|
|
|
10
10
|
declare namespace Components {
|
|
11
|
+
namespace Parameters {
|
|
12
|
+
export type ActivityIdPathParam = /**
|
|
13
|
+
* See https://github.com/ulid/spec
|
|
14
|
+
* example:
|
|
15
|
+
* 01F130Q52Q6MWSNS8N2AVXV4JN
|
|
16
|
+
*/
|
|
17
|
+
Schemas.ActivityId /* ulid */;
|
|
18
|
+
export type ActivityIdQueryParam = /**
|
|
19
|
+
* See https://github.com/ulid/spec
|
|
20
|
+
* example:
|
|
21
|
+
* 01F130Q52Q6MWSNS8N2AVXV4JN
|
|
22
|
+
*/
|
|
23
|
+
Schemas.ActivityId /* ulid */;
|
|
24
|
+
export type AsyncOperationQueryParam = boolean;
|
|
25
|
+
export type DryRunQueryParam = boolean;
|
|
26
|
+
export type EntityIdPathParam = Schemas.EntityId /* uuid */;
|
|
27
|
+
export type EntitySlugPathParam = /**
|
|
28
|
+
* URL-friendly identifier for the entity schema
|
|
29
|
+
* example:
|
|
30
|
+
* contact
|
|
31
|
+
*/
|
|
32
|
+
Schemas.EntitySlug;
|
|
33
|
+
export type ExcludeSchemasQueryParam = /**
|
|
34
|
+
* URL-friendly identifier for the entity schema
|
|
35
|
+
* example:
|
|
36
|
+
* contact
|
|
37
|
+
*/
|
|
38
|
+
Schemas.EntitySlug[];
|
|
39
|
+
export type FromPageQueryParam = number;
|
|
40
|
+
export type HydrateEntitiesQueryParam = boolean;
|
|
41
|
+
export type IncludeReverseQueryParam = boolean;
|
|
42
|
+
export type IncludeSchemasQueryParam = /**
|
|
43
|
+
* URL-friendly identifier for the entity schema
|
|
44
|
+
* example:
|
|
45
|
+
* contact
|
|
46
|
+
*/
|
|
47
|
+
Schemas.EntitySlug[];
|
|
48
|
+
export type SavedViewIdPathParam = /* Generated uuid for a saved view */ Schemas.SavedViewId /* uuid */;
|
|
49
|
+
export type TaxonomySlugPathParam = string;
|
|
50
|
+
export type TaxonomySlugQueryParam = string;
|
|
51
|
+
}
|
|
52
|
+
export interface PathParameters {
|
|
53
|
+
EntityIdPathParam?: Parameters.EntityIdPathParam;
|
|
54
|
+
EntitySlugPathParam?: Parameters.EntitySlugPathParam;
|
|
55
|
+
TaxonomySlugPathParam?: Parameters.TaxonomySlugPathParam;
|
|
56
|
+
SavedViewIdPathParam?: Parameters.SavedViewIdPathParam;
|
|
57
|
+
ActivityIdPathParam?: Parameters.ActivityIdPathParam;
|
|
58
|
+
}
|
|
59
|
+
export interface QueryParameters {
|
|
60
|
+
TaxonomySlugQueryParam?: Parameters.TaxonomySlugQueryParam;
|
|
61
|
+
AsyncOperationQueryParam?: Parameters.AsyncOperationQueryParam;
|
|
62
|
+
HydrateEntitiesQueryParam?: Parameters.HydrateEntitiesQueryParam;
|
|
63
|
+
ActivityIdQueryParam?: Parameters.ActivityIdQueryParam;
|
|
64
|
+
FromPageQueryParam?: Parameters.FromPageQueryParam;
|
|
65
|
+
IncludeReverseQueryParam?: Parameters.IncludeReverseQueryParam;
|
|
66
|
+
IncludeSchemasQueryParam?: Parameters.IncludeSchemasQueryParam;
|
|
67
|
+
ExcludeSchemasQueryParam?: Parameters.ExcludeSchemasQueryParam;
|
|
68
|
+
DryRunQueryParam?: Parameters.DryRunQueryParam;
|
|
69
|
+
}
|
|
11
70
|
namespace Schemas {
|
|
12
71
|
export interface Activity {
|
|
13
72
|
/**
|
|
@@ -1555,20 +1614,12 @@ declare namespace Components {
|
|
|
1555
1614
|
search_params?: {
|
|
1556
1615
|
[name: string]: string;
|
|
1557
1616
|
};
|
|
1558
|
-
table_menu_options?: {
|
|
1559
|
-
icon?: string;
|
|
1560
|
-
label?: string;
|
|
1561
|
-
};
|
|
1562
1617
|
}
|
|
1563
1618
|
export interface EntityDefaultEdit {
|
|
1564
1619
|
view_type?: "default";
|
|
1565
1620
|
search_params?: {
|
|
1566
1621
|
[name: string]: string;
|
|
1567
1622
|
};
|
|
1568
|
-
table_menu_options?: {
|
|
1569
|
-
icon?: string;
|
|
1570
|
-
label?: string;
|
|
1571
|
-
};
|
|
1572
1623
|
/**
|
|
1573
1624
|
* List of attribute names that we show in the summary header
|
|
1574
1625
|
*/
|
|
@@ -1613,7 +1664,7 @@ declare namespace Components {
|
|
|
1613
1664
|
*/
|
|
1614
1665
|
legacy?: boolean;
|
|
1615
1666
|
})[];
|
|
1616
|
-
row_actions?: (
|
|
1667
|
+
row_actions?: (string | /* An entity action configured from the entity schema */ EntityAction)[];
|
|
1617
1668
|
navbar_actions?: {
|
|
1618
1669
|
type: string;
|
|
1619
1670
|
options?: {
|
|
@@ -2020,6 +2071,14 @@ declare namespace Components {
|
|
|
2020
2071
|
* }
|
|
2021
2072
|
*/
|
|
2022
2073
|
RedirectEntityView | EntityViewDisabled;
|
|
2074
|
+
single_view?: EntityDefaultEdit | /**
|
|
2075
|
+
* example:
|
|
2076
|
+
* {
|
|
2077
|
+
* "type": "redirect",
|
|
2078
|
+
* "route": "/app/pricing-hub/product/:entityId"
|
|
2079
|
+
* }
|
|
2080
|
+
*/
|
|
2081
|
+
RedirectEntityView | EntityViewDisabled;
|
|
2023
2082
|
list_item?: {
|
|
2024
2083
|
summary_attributes?: (/**
|
|
2025
2084
|
* Represents an expanded version of an attribute to be displayed in the list item summary.
|
|
@@ -2269,6 +2328,14 @@ declare namespace Components {
|
|
|
2269
2328
|
* }
|
|
2270
2329
|
*/
|
|
2271
2330
|
RedirectEntityView | EntityViewDisabled;
|
|
2331
|
+
single_view?: EntityDefaultEdit | /**
|
|
2332
|
+
* example:
|
|
2333
|
+
* {
|
|
2334
|
+
* "type": "redirect",
|
|
2335
|
+
* "route": "/app/pricing-hub/product/:entityId"
|
|
2336
|
+
* }
|
|
2337
|
+
*/
|
|
2338
|
+
RedirectEntityView | EntityViewDisabled;
|
|
2272
2339
|
list_item?: {
|
|
2273
2340
|
summary_attributes?: (/**
|
|
2274
2341
|
* Represents an expanded version of an attribute to be displayed in the list item summary.
|
|
@@ -5891,28 +5958,10 @@ declare namespace Components {
|
|
|
5891
5958
|
declare namespace Paths {
|
|
5892
5959
|
namespace AddRelations {
|
|
5893
5960
|
namespace Parameters {
|
|
5894
|
-
export type
|
|
5895
|
-
|
|
5896
|
-
|
|
5897
|
-
|
|
5898
|
-
*/
|
|
5899
|
-
Components.Schemas.ActivityId /* ulid */;
|
|
5900
|
-
export type Async = boolean;
|
|
5901
|
-
export type Id = Components.Schemas.EntityId /* uuid */;
|
|
5902
|
-
export type Slug = /**
|
|
5903
|
-
* URL-friendly identifier for the entity schema
|
|
5904
|
-
* example:
|
|
5905
|
-
* contact
|
|
5906
|
-
*/
|
|
5907
|
-
Components.Schemas.EntitySlug;
|
|
5908
|
-
}
|
|
5909
|
-
export interface PathParameters {
|
|
5910
|
-
slug: Parameters.Slug;
|
|
5911
|
-
id: Parameters.Id;
|
|
5912
|
-
}
|
|
5913
|
-
export interface QueryParameters {
|
|
5914
|
-
async?: Parameters.Async;
|
|
5915
|
-
activity_id?: Parameters.ActivityId;
|
|
5961
|
+
export type $0 = Components.Parameters.EntitySlugPathParam;
|
|
5962
|
+
export type $1 = Components.Parameters.EntityIdPathParam;
|
|
5963
|
+
export type $2 = Components.Parameters.AsyncOperationQueryParam;
|
|
5964
|
+
export type $3 = Components.Parameters.ActivityIdQueryParam;
|
|
5916
5965
|
}
|
|
5917
5966
|
export type RequestBody = Components.Schemas.RelationItem[];
|
|
5918
5967
|
namespace Responses {
|
|
@@ -5921,16 +5970,8 @@ declare namespace Paths {
|
|
|
5921
5970
|
}
|
|
5922
5971
|
namespace AttachActivity {
|
|
5923
5972
|
namespace Parameters {
|
|
5973
|
+
export type $0 = Components.Parameters.ActivityIdPathParam;
|
|
5924
5974
|
export type Entities = Components.Schemas.EntityId /* uuid */[];
|
|
5925
|
-
export type Id = /**
|
|
5926
|
-
* See https://github.com/ulid/spec
|
|
5927
|
-
* example:
|
|
5928
|
-
* 01F130Q52Q6MWSNS8N2AVXV4JN
|
|
5929
|
-
*/
|
|
5930
|
-
Components.Schemas.ActivityId /* ulid */;
|
|
5931
|
-
}
|
|
5932
|
-
export interface PathParameters {
|
|
5933
|
-
id: Parameters.Id;
|
|
5934
5975
|
}
|
|
5935
5976
|
export interface QueryParameters {
|
|
5936
5977
|
entities?: Parameters.Entities;
|
|
@@ -5998,26 +6039,9 @@ declare namespace Paths {
|
|
|
5998
6039
|
}
|
|
5999
6040
|
namespace CreateEntity {
|
|
6000
6041
|
namespace Parameters {
|
|
6001
|
-
export type
|
|
6002
|
-
|
|
6003
|
-
|
|
6004
|
-
* 01F130Q52Q6MWSNS8N2AVXV4JN
|
|
6005
|
-
*/
|
|
6006
|
-
Components.Schemas.ActivityId /* ulid */;
|
|
6007
|
-
export type Async = boolean;
|
|
6008
|
-
export type Slug = /**
|
|
6009
|
-
* URL-friendly identifier for the entity schema
|
|
6010
|
-
* example:
|
|
6011
|
-
* contact
|
|
6012
|
-
*/
|
|
6013
|
-
Components.Schemas.EntitySlug;
|
|
6014
|
-
}
|
|
6015
|
-
export interface PathParameters {
|
|
6016
|
-
slug: Parameters.Slug;
|
|
6017
|
-
}
|
|
6018
|
-
export interface QueryParameters {
|
|
6019
|
-
activity_id?: Parameters.ActivityId;
|
|
6020
|
-
async?: Parameters.Async;
|
|
6042
|
+
export type $0 = Components.Parameters.EntitySlugPathParam;
|
|
6043
|
+
export type $1 = Components.Parameters.ActivityIdQueryParam;
|
|
6044
|
+
export type $2 = Components.Parameters.AsyncOperationQueryParam;
|
|
6021
6045
|
}
|
|
6022
6046
|
export type RequestBody = /**
|
|
6023
6047
|
* example:
|
|
@@ -6106,26 +6130,9 @@ declare namespace Paths {
|
|
|
6106
6130
|
}
|
|
6107
6131
|
namespace DeleteEntity {
|
|
6108
6132
|
namespace Parameters {
|
|
6109
|
-
export type
|
|
6110
|
-
|
|
6111
|
-
|
|
6112
|
-
* 01F130Q52Q6MWSNS8N2AVXV4JN
|
|
6113
|
-
*/
|
|
6114
|
-
Components.Schemas.ActivityId /* ulid */;
|
|
6115
|
-
export type Id = Components.Schemas.EntityId /* uuid */;
|
|
6116
|
-
export type Slug = /**
|
|
6117
|
-
* URL-friendly identifier for the entity schema
|
|
6118
|
-
* example:
|
|
6119
|
-
* contact
|
|
6120
|
-
*/
|
|
6121
|
-
Components.Schemas.EntitySlug;
|
|
6122
|
-
}
|
|
6123
|
-
export interface PathParameters {
|
|
6124
|
-
slug: Parameters.Slug;
|
|
6125
|
-
id: Parameters.Id;
|
|
6126
|
-
}
|
|
6127
|
-
export interface QueryParameters {
|
|
6128
|
-
activity_id?: Parameters.ActivityId;
|
|
6133
|
+
export type $0 = Components.Parameters.EntitySlugPathParam;
|
|
6134
|
+
export type $1 = Components.Parameters.EntityIdPathParam;
|
|
6135
|
+
export type $2 = Components.Parameters.ActivityIdQueryParam;
|
|
6129
6136
|
}
|
|
6130
6137
|
namespace Responses {
|
|
6131
6138
|
export interface $200 {
|
|
@@ -6134,33 +6141,17 @@ declare namespace Paths {
|
|
|
6134
6141
|
}
|
|
6135
6142
|
namespace DeleteRelation {
|
|
6136
6143
|
namespace Parameters {
|
|
6137
|
-
export type
|
|
6138
|
-
|
|
6139
|
-
|
|
6140
|
-
|
|
6141
|
-
*/
|
|
6142
|
-
Components.Schemas.ActivityId /* ulid */;
|
|
6143
|
-
export type Async = boolean;
|
|
6144
|
+
export type $0 = Components.Parameters.EntitySlugPathParam;
|
|
6145
|
+
export type $1 = Components.Parameters.EntityIdPathParam;
|
|
6146
|
+
export type $4 = Components.Parameters.AsyncOperationQueryParam;
|
|
6147
|
+
export type $5 = Components.Parameters.ActivityIdQueryParam;
|
|
6144
6148
|
export type Attribute = string;
|
|
6145
6149
|
export type EntityId = string;
|
|
6146
|
-
export type Id = Components.Schemas.EntityId /* uuid */;
|
|
6147
|
-
export type Slug = /**
|
|
6148
|
-
* URL-friendly identifier for the entity schema
|
|
6149
|
-
* example:
|
|
6150
|
-
* contact
|
|
6151
|
-
*/
|
|
6152
|
-
Components.Schemas.EntitySlug;
|
|
6153
6150
|
}
|
|
6154
6151
|
export interface PathParameters {
|
|
6155
|
-
slug: Parameters.Slug;
|
|
6156
|
-
id: Parameters.Id;
|
|
6157
6152
|
attribute: Parameters.Attribute;
|
|
6158
6153
|
entity_id: Parameters.EntityId;
|
|
6159
6154
|
}
|
|
6160
|
-
export interface QueryParameters {
|
|
6161
|
-
async?: Parameters.Async;
|
|
6162
|
-
activity_id?: Parameters.ActivityId;
|
|
6163
|
-
}
|
|
6164
6155
|
namespace Responses {
|
|
6165
6156
|
export interface $204 {
|
|
6166
6157
|
}
|
|
@@ -6168,10 +6159,7 @@ declare namespace Paths {
|
|
|
6168
6159
|
}
|
|
6169
6160
|
namespace DeleteSavedView {
|
|
6170
6161
|
namespace Parameters {
|
|
6171
|
-
export type
|
|
6172
|
-
}
|
|
6173
|
-
export interface PathParameters {
|
|
6174
|
-
id: Parameters.Id;
|
|
6162
|
+
export type $0 = Components.Parameters.SavedViewIdPathParam;
|
|
6175
6163
|
}
|
|
6176
6164
|
namespace Responses {
|
|
6177
6165
|
export interface $200 {
|
|
@@ -6180,15 +6168,7 @@ declare namespace Paths {
|
|
|
6180
6168
|
}
|
|
6181
6169
|
namespace DeleteSchema {
|
|
6182
6170
|
namespace Parameters {
|
|
6183
|
-
export type
|
|
6184
|
-
* URL-friendly identifier for the entity schema
|
|
6185
|
-
* example:
|
|
6186
|
-
* contact
|
|
6187
|
-
*/
|
|
6188
|
-
Components.Schemas.EntitySlug;
|
|
6189
|
-
}
|
|
6190
|
-
export interface PathParameters {
|
|
6191
|
-
slug: Parameters.Slug;
|
|
6171
|
+
export type $0 = Components.Parameters.EntitySlugPathParam;
|
|
6192
6172
|
}
|
|
6193
6173
|
namespace Responses {
|
|
6194
6174
|
export interface $204 {
|
|
@@ -6219,18 +6199,10 @@ declare namespace Paths {
|
|
|
6219
6199
|
}
|
|
6220
6200
|
namespace GetActivity {
|
|
6221
6201
|
namespace Parameters {
|
|
6222
|
-
export type
|
|
6223
|
-
* See https://github.com/ulid/spec
|
|
6224
|
-
* example:
|
|
6225
|
-
* 01F130Q52Q6MWSNS8N2AVXV4JN
|
|
6226
|
-
*/
|
|
6227
|
-
Components.Schemas.ActivityId /* ulid */;
|
|
6202
|
+
export type $0 = Components.Parameters.ActivityIdPathParam;
|
|
6228
6203
|
export type OperationsFrom = number;
|
|
6229
6204
|
export type OperationsSize = number;
|
|
6230
6205
|
}
|
|
6231
|
-
export interface PathParameters {
|
|
6232
|
-
id: Parameters.Id;
|
|
6233
|
-
}
|
|
6234
6206
|
export interface QueryParameters {
|
|
6235
6207
|
operations_size?: Parameters.OperationsSize;
|
|
6236
6208
|
operations_from?: Parameters.OperationsFrom;
|
|
@@ -6241,21 +6213,9 @@ declare namespace Paths {
|
|
|
6241
6213
|
}
|
|
6242
6214
|
namespace GetEntity {
|
|
6243
6215
|
namespace Parameters {
|
|
6244
|
-
export type
|
|
6245
|
-
export type
|
|
6246
|
-
export type
|
|
6247
|
-
* URL-friendly identifier for the entity schema
|
|
6248
|
-
* example:
|
|
6249
|
-
* contact
|
|
6250
|
-
*/
|
|
6251
|
-
Components.Schemas.EntitySlug;
|
|
6252
|
-
}
|
|
6253
|
-
export interface PathParameters {
|
|
6254
|
-
slug: Parameters.Slug;
|
|
6255
|
-
id: Parameters.Id;
|
|
6256
|
-
}
|
|
6257
|
-
export interface QueryParameters {
|
|
6258
|
-
hydrate?: Parameters.Hydrate;
|
|
6216
|
+
export type $0 = Components.Parameters.EntityIdPathParam;
|
|
6217
|
+
export type $1 = Components.Parameters.EntitySlugPathParam;
|
|
6218
|
+
export type $2 = Components.Parameters.HydrateEntitiesQueryParam;
|
|
6259
6219
|
}
|
|
6260
6220
|
namespace Responses {
|
|
6261
6221
|
export interface $200 {
|
|
@@ -6350,32 +6310,22 @@ declare namespace Paths {
|
|
|
6350
6310
|
}
|
|
6351
6311
|
namespace GetEntityActivityFeed {
|
|
6352
6312
|
namespace Parameters {
|
|
6313
|
+
export type $0 = Components.Parameters.EntitySlugPathParam;
|
|
6314
|
+
export type $1 = Components.Parameters.EntityIdPathParam;
|
|
6315
|
+
export type $4 = Components.Parameters.FromPageQueryParam;
|
|
6353
6316
|
export type After = string; // date-time
|
|
6354
6317
|
export type Before = string; // date-time
|
|
6355
|
-
export type From = number;
|
|
6356
|
-
export type Id = Components.Schemas.EntityId /* uuid */;
|
|
6357
6318
|
export type IncludeRelations = boolean;
|
|
6358
6319
|
export type Size = number;
|
|
6359
|
-
export type Slug = /**
|
|
6360
|
-
* URL-friendly identifier for the entity schema
|
|
6361
|
-
* example:
|
|
6362
|
-
* contact
|
|
6363
|
-
*/
|
|
6364
|
-
Components.Schemas.EntitySlug;
|
|
6365
6320
|
/**
|
|
6366
6321
|
* example:
|
|
6367
6322
|
* SyncActivity
|
|
6368
6323
|
*/
|
|
6369
6324
|
export type Type = string;
|
|
6370
6325
|
}
|
|
6371
|
-
export interface PathParameters {
|
|
6372
|
-
slug: Parameters.Slug;
|
|
6373
|
-
id: Parameters.Id;
|
|
6374
|
-
}
|
|
6375
6326
|
export interface QueryParameters {
|
|
6376
6327
|
after?: Parameters.After /* date-time */;
|
|
6377
6328
|
before?: Parameters.Before /* date-time */;
|
|
6378
|
-
from?: Parameters.From;
|
|
6379
6329
|
size?: Parameters.Size;
|
|
6380
6330
|
type?: /**
|
|
6381
6331
|
* example:
|
|
@@ -6397,21 +6347,9 @@ declare namespace Paths {
|
|
|
6397
6347
|
}
|
|
6398
6348
|
namespace GetRelatedEntitiesCount {
|
|
6399
6349
|
namespace Parameters {
|
|
6400
|
-
export type
|
|
6401
|
-
export type
|
|
6402
|
-
export type
|
|
6403
|
-
* URL-friendly identifier for the entity schema
|
|
6404
|
-
* example:
|
|
6405
|
-
* contact
|
|
6406
|
-
*/
|
|
6407
|
-
Components.Schemas.EntitySlug;
|
|
6408
|
-
}
|
|
6409
|
-
export interface PathParameters {
|
|
6410
|
-
slug: Parameters.Slug;
|
|
6411
|
-
id: Parameters.Id;
|
|
6412
|
-
}
|
|
6413
|
-
export interface QueryParameters {
|
|
6414
|
-
exclude_schemas?: Parameters.ExcludeSchemas;
|
|
6350
|
+
export type $0 = Components.Parameters.EntitySlugPathParam;
|
|
6351
|
+
export type $1 = Components.Parameters.EntityIdPathParam;
|
|
6352
|
+
export type $2 = Components.Parameters.ExcludeSchemasQueryParam;
|
|
6415
6353
|
}
|
|
6416
6354
|
namespace Responses {
|
|
6417
6355
|
export type $200 = Components.Schemas.GetRelatedEntitiesCount;
|
|
@@ -6419,41 +6357,17 @@ declare namespace Paths {
|
|
|
6419
6357
|
}
|
|
6420
6358
|
namespace GetRelations {
|
|
6421
6359
|
namespace Parameters {
|
|
6422
|
-
export type
|
|
6423
|
-
|
|
6424
|
-
|
|
6425
|
-
|
|
6426
|
-
|
|
6427
|
-
Components.
|
|
6428
|
-
export type
|
|
6429
|
-
export type Hydrate = boolean;
|
|
6430
|
-
export type Id = Components.Schemas.EntityId /* uuid */;
|
|
6431
|
-
export type IncludeReverse = boolean;
|
|
6432
|
-
export type IncludeSchemas = /**
|
|
6433
|
-
* URL-friendly identifier for the entity schema
|
|
6434
|
-
* example:
|
|
6435
|
-
* contact
|
|
6436
|
-
*/
|
|
6437
|
-
Components.Schemas.EntitySlug[];
|
|
6360
|
+
export type $0 = Components.Parameters.EntitySlugPathParam;
|
|
6361
|
+
export type $1 = Components.Parameters.EntityIdPathParam;
|
|
6362
|
+
export type $2 = Components.Parameters.HydrateEntitiesQueryParam;
|
|
6363
|
+
export type $3 = Components.Parameters.IncludeReverseQueryParam;
|
|
6364
|
+
export type $4 = Components.Parameters.FromPageQueryParam;
|
|
6365
|
+
export type $6 = Components.Parameters.IncludeSchemasQueryParam;
|
|
6366
|
+
export type $7 = Components.Parameters.ExcludeSchemasQueryParam;
|
|
6438
6367
|
export type Size = number;
|
|
6439
|
-
export type Slug = /**
|
|
6440
|
-
* URL-friendly identifier for the entity schema
|
|
6441
|
-
* example:
|
|
6442
|
-
* contact
|
|
6443
|
-
*/
|
|
6444
|
-
Components.Schemas.EntitySlug;
|
|
6445
|
-
}
|
|
6446
|
-
export interface PathParameters {
|
|
6447
|
-
slug: Parameters.Slug;
|
|
6448
|
-
id: Parameters.Id;
|
|
6449
6368
|
}
|
|
6450
6369
|
export interface QueryParameters {
|
|
6451
|
-
hydrate?: Parameters.Hydrate;
|
|
6452
|
-
include_reverse?: Parameters.IncludeReverse;
|
|
6453
|
-
from?: Parameters.From;
|
|
6454
6370
|
size?: Parameters.Size;
|
|
6455
|
-
include_schemas?: Parameters.IncludeSchemas;
|
|
6456
|
-
exclude_schemas?: Parameters.ExcludeSchemas;
|
|
6457
6371
|
}
|
|
6458
6372
|
namespace Responses {
|
|
6459
6373
|
export type $200 = Components.Schemas.GetRelationsResp;
|
|
@@ -6461,6 +6375,11 @@ declare namespace Paths {
|
|
|
6461
6375
|
}
|
|
6462
6376
|
namespace GetRelationsV2 {
|
|
6463
6377
|
namespace Parameters {
|
|
6378
|
+
export type $0 = Components.Parameters.EntitySlugPathParam;
|
|
6379
|
+
export type $1 = Components.Parameters.EntityIdPathParam;
|
|
6380
|
+
export type $2 = Components.Parameters.HydrateEntitiesQueryParam;
|
|
6381
|
+
export type $4 = Components.Parameters.IncludeReverseQueryParam;
|
|
6382
|
+
export type $5 = Components.Parameters.FromPageQueryParam;
|
|
6464
6383
|
/**
|
|
6465
6384
|
* example:
|
|
6466
6385
|
* [
|
|
@@ -6470,28 +6389,11 @@ declare namespace Paths {
|
|
|
6470
6389
|
* ]
|
|
6471
6390
|
*/
|
|
6472
6391
|
export type Fields = string[];
|
|
6473
|
-
export type From = number;
|
|
6474
|
-
export type Hydrate = boolean;
|
|
6475
|
-
export type Id = Components.Schemas.EntityId /* uuid */;
|
|
6476
|
-
export type IncludeReverse = boolean;
|
|
6477
6392
|
export type Query = string;
|
|
6478
6393
|
export type Size = number;
|
|
6479
|
-
export type Slug = /**
|
|
6480
|
-
* URL-friendly identifier for the entity schema
|
|
6481
|
-
* example:
|
|
6482
|
-
* contact
|
|
6483
|
-
*/
|
|
6484
|
-
Components.Schemas.EntitySlug;
|
|
6485
|
-
}
|
|
6486
|
-
export interface PathParameters {
|
|
6487
|
-
slug: Parameters.Slug;
|
|
6488
|
-
id: Parameters.Id;
|
|
6489
6394
|
}
|
|
6490
6395
|
export interface QueryParameters {
|
|
6491
|
-
hydrate?: Parameters.Hydrate;
|
|
6492
6396
|
query?: Parameters.Query;
|
|
6493
|
-
include_reverse?: Parameters.IncludeReverse;
|
|
6494
|
-
from?: Parameters.From;
|
|
6495
6397
|
size?: Parameters.Size;
|
|
6496
6398
|
fields?: /**
|
|
6497
6399
|
* example:
|
|
@@ -6509,41 +6411,17 @@ declare namespace Paths {
|
|
|
6509
6411
|
}
|
|
6510
6412
|
namespace GetRelationsV3 {
|
|
6511
6413
|
namespace Parameters {
|
|
6512
|
-
export type
|
|
6513
|
-
|
|
6514
|
-
|
|
6515
|
-
|
|
6516
|
-
|
|
6517
|
-
Components.
|
|
6518
|
-
export type
|
|
6519
|
-
export type Hydrate = boolean;
|
|
6520
|
-
export type Id = Components.Schemas.EntityId /* uuid */;
|
|
6521
|
-
export type IncludeReverse = boolean;
|
|
6522
|
-
export type IncludeSchemas = /**
|
|
6523
|
-
* URL-friendly identifier for the entity schema
|
|
6524
|
-
* example:
|
|
6525
|
-
* contact
|
|
6526
|
-
*/
|
|
6527
|
-
Components.Schemas.EntitySlug[];
|
|
6414
|
+
export type $0 = Components.Parameters.EntitySlugPathParam;
|
|
6415
|
+
export type $1 = Components.Parameters.EntityIdPathParam;
|
|
6416
|
+
export type $2 = Components.Parameters.HydrateEntitiesQueryParam;
|
|
6417
|
+
export type $3 = Components.Parameters.IncludeReverseQueryParam;
|
|
6418
|
+
export type $4 = Components.Parameters.FromPageQueryParam;
|
|
6419
|
+
export type $6 = Components.Parameters.IncludeSchemasQueryParam;
|
|
6420
|
+
export type $7 = Components.Parameters.ExcludeSchemasQueryParam;
|
|
6528
6421
|
export type Size = number;
|
|
6529
|
-
export type Slug = /**
|
|
6530
|
-
* URL-friendly identifier for the entity schema
|
|
6531
|
-
* example:
|
|
6532
|
-
* contact
|
|
6533
|
-
*/
|
|
6534
|
-
Components.Schemas.EntitySlug;
|
|
6535
|
-
}
|
|
6536
|
-
export interface PathParameters {
|
|
6537
|
-
slug: Parameters.Slug;
|
|
6538
|
-
id: Parameters.Id;
|
|
6539
6422
|
}
|
|
6540
6423
|
export interface QueryParameters {
|
|
6541
|
-
hydrate?: Parameters.Hydrate;
|
|
6542
|
-
include_reverse?: Parameters.IncludeReverse;
|
|
6543
|
-
from?: Parameters.From;
|
|
6544
6424
|
size?: Parameters.Size;
|
|
6545
|
-
include_schemas?: Parameters.IncludeSchemas;
|
|
6546
|
-
exclude_schemas?: Parameters.ExcludeSchemas;
|
|
6547
6425
|
}
|
|
6548
6426
|
namespace Responses {
|
|
6549
6427
|
export type $200 = Components.Schemas.GetRelationsRespWithPagination;
|
|
@@ -6551,10 +6429,7 @@ declare namespace Paths {
|
|
|
6551
6429
|
}
|
|
6552
6430
|
namespace GetSavedView {
|
|
6553
6431
|
namespace Parameters {
|
|
6554
|
-
export type
|
|
6555
|
-
}
|
|
6556
|
-
export interface PathParameters {
|
|
6557
|
-
id: Parameters.Id;
|
|
6432
|
+
export type $0 = Components.Parameters.SavedViewIdPathParam;
|
|
6558
6433
|
}
|
|
6559
6434
|
namespace Responses {
|
|
6560
6435
|
export interface $200 {
|
|
@@ -6564,16 +6439,8 @@ declare namespace Paths {
|
|
|
6564
6439
|
}
|
|
6565
6440
|
namespace GetSchema {
|
|
6566
6441
|
namespace Parameters {
|
|
6442
|
+
export type $0 = Components.Parameters.EntitySlugPathParam;
|
|
6567
6443
|
export type Id = /* Generated uuid for schema */ Components.Schemas.SchemaId /* uuid */;
|
|
6568
|
-
export type Slug = /**
|
|
6569
|
-
* URL-friendly identifier for the entity schema
|
|
6570
|
-
* example:
|
|
6571
|
-
* contact
|
|
6572
|
-
*/
|
|
6573
|
-
Components.Schemas.EntitySlug;
|
|
6574
|
-
}
|
|
6575
|
-
export interface PathParameters {
|
|
6576
|
-
slug: Parameters.Slug;
|
|
6577
6444
|
}
|
|
6578
6445
|
export interface QueryParameters {
|
|
6579
6446
|
id?: Parameters.Id;
|
|
@@ -6584,20 +6451,12 @@ declare namespace Paths {
|
|
|
6584
6451
|
}
|
|
6585
6452
|
namespace GetSchemaVersions {
|
|
6586
6453
|
namespace Parameters {
|
|
6454
|
+
export type $0 = Components.Parameters.EntitySlugPathParam;
|
|
6587
6455
|
export type DraftsFrom = number;
|
|
6588
6456
|
export type DraftsSize = number;
|
|
6589
|
-
export type Slug = /**
|
|
6590
|
-
* URL-friendly identifier for the entity schema
|
|
6591
|
-
* example:
|
|
6592
|
-
* contact
|
|
6593
|
-
*/
|
|
6594
|
-
Components.Schemas.EntitySlug;
|
|
6595
6457
|
export type VersionsFrom = number;
|
|
6596
6458
|
export type VersionsSize = number;
|
|
6597
6459
|
}
|
|
6598
|
-
export interface PathParameters {
|
|
6599
|
-
slug: Parameters.Slug;
|
|
6600
|
-
}
|
|
6601
6460
|
export interface QueryParameters {
|
|
6602
6461
|
versions_from?: Parameters.VersionsFrom;
|
|
6603
6462
|
versions_size?: Parameters.VersionsSize;
|
|
@@ -6613,15 +6472,7 @@ declare namespace Paths {
|
|
|
6613
6472
|
}
|
|
6614
6473
|
namespace GetTaxonomy {
|
|
6615
6474
|
namespace Parameters {
|
|
6616
|
-
export type
|
|
6617
|
-
* URL-friendly name for taxonomy
|
|
6618
|
-
* example:
|
|
6619
|
-
* purpose
|
|
6620
|
-
*/
|
|
6621
|
-
Components.Schemas.TaxonomySlug;
|
|
6622
|
-
}
|
|
6623
|
-
export interface PathParameters {
|
|
6624
|
-
taxonomySlug: Parameters.TaxonomySlug;
|
|
6475
|
+
export type $0 = Components.Parameters.TaxonomySlugPathParam;
|
|
6625
6476
|
}
|
|
6626
6477
|
namespace Responses {
|
|
6627
6478
|
export type $200 = Components.Schemas.Taxonomy;
|
|
@@ -6688,24 +6539,10 @@ declare namespace Paths {
|
|
|
6688
6539
|
}
|
|
6689
6540
|
namespace ListTaxonomyClassificationsForSchema {
|
|
6690
6541
|
namespace Parameters {
|
|
6542
|
+
export type $0 = Components.Parameters.EntitySlugPathParam;
|
|
6543
|
+
export type $1 = Components.Parameters.TaxonomySlugPathParam;
|
|
6691
6544
|
export type Query = string;
|
|
6692
6545
|
export type Size = number;
|
|
6693
|
-
export type Slug = /**
|
|
6694
|
-
* URL-friendly identifier for the entity schema
|
|
6695
|
-
* example:
|
|
6696
|
-
* contact
|
|
6697
|
-
*/
|
|
6698
|
-
Components.Schemas.EntitySlug;
|
|
6699
|
-
export type TaxonomySlug = /**
|
|
6700
|
-
* URL-friendly name for taxonomy
|
|
6701
|
-
* example:
|
|
6702
|
-
* purpose
|
|
6703
|
-
*/
|
|
6704
|
-
Components.Schemas.TaxonomySlug;
|
|
6705
|
-
}
|
|
6706
|
-
export interface PathParameters {
|
|
6707
|
-
slug: Parameters.Slug;
|
|
6708
|
-
taxonomySlug: Parameters.TaxonomySlug;
|
|
6709
6546
|
}
|
|
6710
6547
|
export interface QueryParameters {
|
|
6711
6548
|
query?: Parameters.Query;
|
|
@@ -6719,30 +6556,11 @@ declare namespace Paths {
|
|
|
6719
6556
|
}
|
|
6720
6557
|
namespace PatchEntity {
|
|
6721
6558
|
namespace Parameters {
|
|
6722
|
-
export type
|
|
6723
|
-
|
|
6724
|
-
|
|
6725
|
-
|
|
6726
|
-
|
|
6727
|
-
Components.Schemas.ActivityId /* ulid */;
|
|
6728
|
-
export type Async = boolean;
|
|
6729
|
-
export type DryRun = boolean;
|
|
6730
|
-
export type Id = Components.Schemas.EntityId /* uuid */;
|
|
6731
|
-
export type Slug = /**
|
|
6732
|
-
* URL-friendly identifier for the entity schema
|
|
6733
|
-
* example:
|
|
6734
|
-
* contact
|
|
6735
|
-
*/
|
|
6736
|
-
Components.Schemas.EntitySlug;
|
|
6737
|
-
}
|
|
6738
|
-
export interface PathParameters {
|
|
6739
|
-
slug: Parameters.Slug;
|
|
6740
|
-
id: Parameters.Id;
|
|
6741
|
-
}
|
|
6742
|
-
export interface QueryParameters {
|
|
6743
|
-
activity_id?: Parameters.ActivityId;
|
|
6744
|
-
dry_run?: Parameters.DryRun;
|
|
6745
|
-
async?: Parameters.Async;
|
|
6559
|
+
export type $0 = Components.Parameters.EntitySlugPathParam;
|
|
6560
|
+
export type $1 = Components.Parameters.EntityIdPathParam;
|
|
6561
|
+
export type $2 = Components.Parameters.ActivityIdQueryParam;
|
|
6562
|
+
export type $3 = Components.Parameters.DryRunQueryParam;
|
|
6563
|
+
export type $4 = Components.Parameters.AsyncOperationQueryParam;
|
|
6746
6564
|
}
|
|
6747
6565
|
export type RequestBody = /**
|
|
6748
6566
|
* example:
|
|
@@ -6827,16 +6645,8 @@ declare namespace Paths {
|
|
|
6827
6645
|
}
|
|
6828
6646
|
namespace PutSchema {
|
|
6829
6647
|
namespace Parameters {
|
|
6648
|
+
export type $0 = Components.Parameters.EntitySlugPathParam;
|
|
6830
6649
|
export type Draft = boolean;
|
|
6831
|
-
export type Slug = /**
|
|
6832
|
-
* URL-friendly identifier for the entity schema
|
|
6833
|
-
* example:
|
|
6834
|
-
* contact
|
|
6835
|
-
*/
|
|
6836
|
-
Components.Schemas.EntitySlug;
|
|
6837
|
-
}
|
|
6838
|
-
export interface PathParameters {
|
|
6839
|
-
slug: Parameters.Slug;
|
|
6840
6650
|
}
|
|
6841
6651
|
export interface QueryParameters {
|
|
6842
6652
|
draft?: Parameters.Draft;
|
|
@@ -6854,10 +6664,7 @@ declare namespace Paths {
|
|
|
6854
6664
|
}
|
|
6855
6665
|
namespace TaxonomiesClassificationsSearch {
|
|
6856
6666
|
namespace Parameters {
|
|
6857
|
-
export type
|
|
6858
|
-
}
|
|
6859
|
-
export interface QueryParameters {
|
|
6860
|
-
taxonomySlug: Parameters.TaxonomySlug;
|
|
6667
|
+
export type $0 = Components.Parameters.TaxonomySlugQueryParam;
|
|
6861
6668
|
}
|
|
6862
6669
|
export interface RequestBody {
|
|
6863
6670
|
classificationIds?: Components.Schemas.ClassificationId /* uuid */[];
|
|
@@ -6870,12 +6677,9 @@ declare namespace Paths {
|
|
|
6870
6677
|
}
|
|
6871
6678
|
namespace TaxonomyAutocomplete {
|
|
6872
6679
|
namespace Parameters {
|
|
6680
|
+
export type $0 = Components.Parameters.TaxonomySlugPathParam;
|
|
6873
6681
|
export type Query = string;
|
|
6874
6682
|
export type Size = number;
|
|
6875
|
-
export type TaxonomySlug = string;
|
|
6876
|
-
}
|
|
6877
|
-
export interface PathParameters {
|
|
6878
|
-
taxonomySlug: Parameters.TaxonomySlug;
|
|
6879
6683
|
}
|
|
6880
6684
|
export interface QueryParameters {
|
|
6881
6685
|
query?: Parameters.Query;
|
|
@@ -6889,10 +6693,7 @@ declare namespace Paths {
|
|
|
6889
6693
|
}
|
|
6890
6694
|
namespace UpdateClassificationsForTaxonomy {
|
|
6891
6695
|
namespace Parameters {
|
|
6892
|
-
export type
|
|
6893
|
-
}
|
|
6894
|
-
export interface PathParameters {
|
|
6895
|
-
taxonomySlug: Parameters.TaxonomySlug;
|
|
6696
|
+
export type $0 = Components.Parameters.TaxonomySlugPathParam;
|
|
6896
6697
|
}
|
|
6897
6698
|
export type RequestBody = Components.Schemas.ClassificationsUpdate;
|
|
6898
6699
|
namespace Responses {
|
|
@@ -6907,28 +6708,10 @@ declare namespace Paths {
|
|
|
6907
6708
|
}
|
|
6908
6709
|
namespace UpdateEntity {
|
|
6909
6710
|
namespace Parameters {
|
|
6910
|
-
export type
|
|
6911
|
-
|
|
6912
|
-
|
|
6913
|
-
|
|
6914
|
-
*/
|
|
6915
|
-
Components.Schemas.ActivityId /* ulid */;
|
|
6916
|
-
export type Async = boolean;
|
|
6917
|
-
export type Id = Components.Schemas.EntityId /* uuid */;
|
|
6918
|
-
export type Slug = /**
|
|
6919
|
-
* URL-friendly identifier for the entity schema
|
|
6920
|
-
* example:
|
|
6921
|
-
* contact
|
|
6922
|
-
*/
|
|
6923
|
-
Components.Schemas.EntitySlug;
|
|
6924
|
-
}
|
|
6925
|
-
export interface PathParameters {
|
|
6926
|
-
slug: Parameters.Slug;
|
|
6927
|
-
id: Parameters.Id;
|
|
6928
|
-
}
|
|
6929
|
-
export interface QueryParameters {
|
|
6930
|
-
activity_id?: Parameters.ActivityId;
|
|
6931
|
-
async?: Parameters.Async;
|
|
6711
|
+
export type $0 = Components.Parameters.EntitySlugPathParam;
|
|
6712
|
+
export type $1 = Components.Parameters.EntityIdPathParam;
|
|
6713
|
+
export type $2 = Components.Parameters.ActivityIdQueryParam;
|
|
6714
|
+
export type $3 = Components.Parameters.AsyncOperationQueryParam;
|
|
6932
6715
|
}
|
|
6933
6716
|
export type RequestBody = /**
|
|
6934
6717
|
* example:
|
|
@@ -7011,33 +6794,17 @@ declare namespace Paths {
|
|
|
7011
6794
|
}
|
|
7012
6795
|
namespace UpdateRelation {
|
|
7013
6796
|
namespace Parameters {
|
|
7014
|
-
export type
|
|
7015
|
-
|
|
7016
|
-
|
|
7017
|
-
|
|
7018
|
-
*/
|
|
7019
|
-
Components.Schemas.ActivityId /* ulid */;
|
|
7020
|
-
export type Async = boolean;
|
|
6797
|
+
export type $0 = Components.Parameters.EntitySlugPathParam;
|
|
6798
|
+
export type $1 = Components.Parameters.EntityIdPathParam;
|
|
6799
|
+
export type $4 = Components.Parameters.AsyncOperationQueryParam;
|
|
6800
|
+
export type $5 = Components.Parameters.ActivityIdQueryParam;
|
|
7021
6801
|
export type Attribute = string;
|
|
7022
6802
|
export type EntityId = string;
|
|
7023
|
-
export type Id = Components.Schemas.EntityId /* uuid */;
|
|
7024
|
-
export type Slug = /**
|
|
7025
|
-
* URL-friendly identifier for the entity schema
|
|
7026
|
-
* example:
|
|
7027
|
-
* contact
|
|
7028
|
-
*/
|
|
7029
|
-
Components.Schemas.EntitySlug;
|
|
7030
6803
|
}
|
|
7031
6804
|
export interface PathParameters {
|
|
7032
|
-
slug: Parameters.Slug;
|
|
7033
|
-
id: Parameters.Id;
|
|
7034
6805
|
attribute: Parameters.Attribute;
|
|
7035
6806
|
entity_id: Parameters.EntityId;
|
|
7036
6807
|
}
|
|
7037
|
-
export interface QueryParameters {
|
|
7038
|
-
async?: Parameters.Async;
|
|
7039
|
-
activity_id?: Parameters.ActivityId;
|
|
7040
|
-
}
|
|
7041
6808
|
export interface RequestBody {
|
|
7042
6809
|
_tags?: string[];
|
|
7043
6810
|
}
|
|
@@ -7047,10 +6814,7 @@ declare namespace Paths {
|
|
|
7047
6814
|
}
|
|
7048
6815
|
namespace UpdateSavedView {
|
|
7049
6816
|
namespace Parameters {
|
|
7050
|
-
export type
|
|
7051
|
-
}
|
|
7052
|
-
export interface PathParameters {
|
|
7053
|
-
id: Parameters.Id;
|
|
6817
|
+
export type $0 = Components.Parameters.SavedViewIdPathParam;
|
|
7054
6818
|
}
|
|
7055
6819
|
export type RequestBody = /* A saved entity view */ Components.Schemas.SavedView;
|
|
7056
6820
|
namespace Responses {
|
|
@@ -7059,28 +6823,10 @@ declare namespace Paths {
|
|
|
7059
6823
|
}
|
|
7060
6824
|
namespace UpsertEntity {
|
|
7061
6825
|
namespace Parameters {
|
|
7062
|
-
export type
|
|
7063
|
-
|
|
7064
|
-
|
|
7065
|
-
|
|
7066
|
-
*/
|
|
7067
|
-
Components.Schemas.ActivityId /* ulid */;
|
|
7068
|
-
export type Async = boolean;
|
|
7069
|
-
export type DryRun = boolean;
|
|
7070
|
-
export type Slug = /**
|
|
7071
|
-
* URL-friendly identifier for the entity schema
|
|
7072
|
-
* example:
|
|
7073
|
-
* contact
|
|
7074
|
-
*/
|
|
7075
|
-
Components.Schemas.EntitySlug;
|
|
7076
|
-
}
|
|
7077
|
-
export interface PathParameters {
|
|
7078
|
-
slug: Parameters.Slug;
|
|
7079
|
-
}
|
|
7080
|
-
export interface QueryParameters {
|
|
7081
|
-
activity_id?: Parameters.ActivityId;
|
|
7082
|
-
dry_run?: Parameters.DryRun;
|
|
7083
|
-
async?: Parameters.Async;
|
|
6826
|
+
export type $0 = Components.Parameters.EntitySlugPathParam;
|
|
6827
|
+
export type $1 = Components.Parameters.ActivityIdQueryParam;
|
|
6828
|
+
export type $2 = Components.Parameters.DryRunQueryParam;
|
|
6829
|
+
export type $3 = Components.Parameters.AsyncOperationQueryParam;
|
|
7084
6830
|
}
|
|
7085
6831
|
export interface RequestBody {
|
|
7086
6832
|
/**
|
|
@@ -7234,7 +6980,7 @@ export interface OperationMethods {
|
|
|
7234
6980
|
* By default gets the latest version of the Schema and to get the specific version of schema pass the id.
|
|
7235
6981
|
*/
|
|
7236
6982
|
'getSchema'(
|
|
7237
|
-
parameters?: Parameters<Paths.GetSchema.
|
|
6983
|
+
parameters?: Parameters<Paths.GetSchema.QueryParameters> | null,
|
|
7238
6984
|
data?: any,
|
|
7239
6985
|
config?: AxiosRequestConfig
|
|
7240
6986
|
): OperationResponse<Paths.GetSchema.Responses.$200>
|
|
@@ -7244,7 +6990,7 @@ export interface OperationMethods {
|
|
|
7244
6990
|
* Create or update a schema with a new version
|
|
7245
6991
|
*/
|
|
7246
6992
|
'putSchema'(
|
|
7247
|
-
parameters?: Parameters<Paths.PutSchema.
|
|
6993
|
+
parameters?: Parameters<Paths.PutSchema.QueryParameters> | null,
|
|
7248
6994
|
data?: Paths.PutSchema.RequestBody,
|
|
7249
6995
|
config?: AxiosRequestConfig
|
|
7250
6996
|
): OperationResponse<Paths.PutSchema.Responses.$200>
|
|
@@ -7254,7 +7000,7 @@ export interface OperationMethods {
|
|
|
7254
7000
|
* Delete a schema, or a specific version of a schema
|
|
7255
7001
|
*/
|
|
7256
7002
|
'deleteSchema'(
|
|
7257
|
-
parameters?: Parameters<
|
|
7003
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
7258
7004
|
data?: any,
|
|
7259
7005
|
config?: AxiosRequestConfig
|
|
7260
7006
|
): OperationResponse<Paths.DeleteSchema.Responses.$204>
|
|
@@ -7264,7 +7010,7 @@ export interface OperationMethods {
|
|
|
7264
7010
|
* Get all versions of this schema ordered by the latest versions including drafts.
|
|
7265
7011
|
*/
|
|
7266
7012
|
'getSchemaVersions'(
|
|
7267
|
-
parameters?: Parameters<Paths.GetSchemaVersions.
|
|
7013
|
+
parameters?: Parameters<Paths.GetSchemaVersions.QueryParameters> | null,
|
|
7268
7014
|
data?: any,
|
|
7269
7015
|
config?: AxiosRequestConfig
|
|
7270
7016
|
): OperationResponse<Paths.GetSchemaVersions.Responses.$200>
|
|
@@ -7284,7 +7030,7 @@ export interface OperationMethods {
|
|
|
7284
7030
|
* List taxonomy classifications for a given schema
|
|
7285
7031
|
*/
|
|
7286
7032
|
'listTaxonomyClassificationsForSchema'(
|
|
7287
|
-
parameters?: Parameters<Paths.ListTaxonomyClassificationsForSchema.
|
|
7033
|
+
parameters?: Parameters<Paths.ListTaxonomyClassificationsForSchema.QueryParameters> | null,
|
|
7288
7034
|
data?: any,
|
|
7289
7035
|
config?: AxiosRequestConfig
|
|
7290
7036
|
): OperationResponse<Paths.ListTaxonomyClassificationsForSchema.Responses.$200>
|
|
@@ -7394,7 +7140,7 @@ export interface OperationMethods {
|
|
|
7394
7140
|
*
|
|
7395
7141
|
*/
|
|
7396
7142
|
'createEntity'(
|
|
7397
|
-
parameters?: Parameters<
|
|
7143
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
7398
7144
|
data?: Paths.CreateEntity.RequestBody,
|
|
7399
7145
|
config?: AxiosRequestConfig
|
|
7400
7146
|
): OperationResponse<Paths.CreateEntity.Responses.$201>
|
|
@@ -7413,7 +7159,7 @@ export interface OperationMethods {
|
|
|
7413
7159
|
*
|
|
7414
7160
|
*/
|
|
7415
7161
|
'upsertEntity'(
|
|
7416
|
-
parameters?: Parameters<
|
|
7162
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
7417
7163
|
data?: Paths.UpsertEntity.RequestBody,
|
|
7418
7164
|
config?: AxiosRequestConfig
|
|
7419
7165
|
): OperationResponse<Paths.UpsertEntity.Responses.$200 | Paths.UpsertEntity.Responses.$201>
|
|
@@ -7486,7 +7232,7 @@ export interface OperationMethods {
|
|
|
7486
7232
|
*
|
|
7487
7233
|
*/
|
|
7488
7234
|
'getEntity'(
|
|
7489
|
-
parameters?: Parameters<
|
|
7235
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
7490
7236
|
data?: any,
|
|
7491
7237
|
config?: AxiosRequestConfig
|
|
7492
7238
|
): OperationResponse<Paths.GetEntity.Responses.$200>
|
|
@@ -7521,7 +7267,7 @@ export interface OperationMethods {
|
|
|
7521
7267
|
*
|
|
7522
7268
|
*/
|
|
7523
7269
|
'updateEntity'(
|
|
7524
|
-
parameters?: Parameters<
|
|
7270
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
7525
7271
|
data?: Paths.UpdateEntity.RequestBody,
|
|
7526
7272
|
config?: AxiosRequestConfig
|
|
7527
7273
|
): OperationResponse<Paths.UpdateEntity.Responses.$200>
|
|
@@ -7558,7 +7304,7 @@ export interface OperationMethods {
|
|
|
7558
7304
|
*
|
|
7559
7305
|
*/
|
|
7560
7306
|
'patchEntity'(
|
|
7561
|
-
parameters?: Parameters<
|
|
7307
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
7562
7308
|
data?: Paths.PatchEntity.RequestBody,
|
|
7563
7309
|
config?: AxiosRequestConfig
|
|
7564
7310
|
): OperationResponse<Paths.PatchEntity.Responses.$200>
|
|
@@ -7573,7 +7319,7 @@ export interface OperationMethods {
|
|
|
7573
7319
|
*
|
|
7574
7320
|
*/
|
|
7575
7321
|
'deleteEntity'(
|
|
7576
|
-
parameters?: Parameters<
|
|
7322
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
7577
7323
|
data?: any,
|
|
7578
7324
|
config?: AxiosRequestConfig
|
|
7579
7325
|
): OperationResponse<Paths.DeleteEntity.Responses.$200>
|
|
@@ -7608,7 +7354,7 @@ export interface OperationMethods {
|
|
|
7608
7354
|
* Get activity by id
|
|
7609
7355
|
*/
|
|
7610
7356
|
'getActivity'(
|
|
7611
|
-
parameters?: Parameters<Paths.GetActivity.
|
|
7357
|
+
parameters?: Parameters<Paths.GetActivity.QueryParameters> | null,
|
|
7612
7358
|
data?: any,
|
|
7613
7359
|
config?: AxiosRequestConfig
|
|
7614
7360
|
): OperationResponse<Paths.GetActivity.Responses.$200>
|
|
@@ -7618,7 +7364,7 @@ export interface OperationMethods {
|
|
|
7618
7364
|
* Attach existing activity to entity activity feeds
|
|
7619
7365
|
*/
|
|
7620
7366
|
'attachActivity'(
|
|
7621
|
-
parameters?: Parameters<Paths.AttachActivity.
|
|
7367
|
+
parameters?: Parameters<Paths.AttachActivity.QueryParameters> | null,
|
|
7622
7368
|
data?: any,
|
|
7623
7369
|
config?: AxiosRequestConfig
|
|
7624
7370
|
): OperationResponse<Paths.AttachActivity.Responses.$200>
|
|
@@ -7629,7 +7375,7 @@ export interface OperationMethods {
|
|
|
7629
7375
|
*
|
|
7630
7376
|
*/
|
|
7631
7377
|
'getEntityActivityFeed'(
|
|
7632
|
-
parameters?: Parameters<Paths.GetEntityActivityFeed.
|
|
7378
|
+
parameters?: Parameters<Paths.GetEntityActivityFeed.QueryParameters> | null,
|
|
7633
7379
|
data?: any,
|
|
7634
7380
|
config?: AxiosRequestConfig
|
|
7635
7381
|
): OperationResponse<Paths.GetEntityActivityFeed.Responses.$200>
|
|
@@ -7644,7 +7390,7 @@ export interface OperationMethods {
|
|
|
7644
7390
|
*
|
|
7645
7391
|
*/
|
|
7646
7392
|
'getRelations'(
|
|
7647
|
-
parameters?: Parameters<Paths.GetRelations.
|
|
7393
|
+
parameters?: Parameters<Paths.GetRelations.QueryParameters> | null,
|
|
7648
7394
|
data?: any,
|
|
7649
7395
|
config?: AxiosRequestConfig
|
|
7650
7396
|
): OperationResponse<Paths.GetRelations.Responses.$200>
|
|
@@ -7654,7 +7400,7 @@ export interface OperationMethods {
|
|
|
7654
7400
|
* Relates one or more entities to parent entity by adding items to a relation attribute
|
|
7655
7401
|
*/
|
|
7656
7402
|
'addRelations'(
|
|
7657
|
-
parameters?: Parameters<
|
|
7403
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
7658
7404
|
data?: Paths.AddRelations.RequestBody,
|
|
7659
7405
|
config?: AxiosRequestConfig
|
|
7660
7406
|
): OperationResponse<Paths.AddRelations.Responses.$200>
|
|
@@ -7669,7 +7415,7 @@ export interface OperationMethods {
|
|
|
7669
7415
|
*
|
|
7670
7416
|
*/
|
|
7671
7417
|
'getRelationsV2'(
|
|
7672
|
-
parameters?: Parameters<Paths.GetRelationsV2.
|
|
7418
|
+
parameters?: Parameters<Paths.GetRelationsV2.QueryParameters> | null,
|
|
7673
7419
|
data?: any,
|
|
7674
7420
|
config?: AxiosRequestConfig
|
|
7675
7421
|
): OperationResponse<Paths.GetRelationsV2.Responses.$200>
|
|
@@ -7684,7 +7430,7 @@ export interface OperationMethods {
|
|
|
7684
7430
|
*
|
|
7685
7431
|
*/
|
|
7686
7432
|
'getRelationsV3'(
|
|
7687
|
-
parameters?: Parameters<Paths.GetRelationsV3.
|
|
7433
|
+
parameters?: Parameters<Paths.GetRelationsV3.QueryParameters> | null,
|
|
7688
7434
|
data?: any,
|
|
7689
7435
|
config?: AxiosRequestConfig
|
|
7690
7436
|
): OperationResponse<Paths.GetRelationsV3.Responses.$200>
|
|
@@ -7695,7 +7441,7 @@ export interface OperationMethods {
|
|
|
7695
7441
|
*
|
|
7696
7442
|
*/
|
|
7697
7443
|
'getRelatedEntitiesCount'(
|
|
7698
|
-
parameters?: Parameters<
|
|
7444
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
7699
7445
|
data?: any,
|
|
7700
7446
|
config?: AxiosRequestConfig
|
|
7701
7447
|
): OperationResponse<Paths.GetRelatedEntitiesCount.Responses.$200>
|
|
@@ -7705,7 +7451,7 @@ export interface OperationMethods {
|
|
|
7705
7451
|
* Updates an existing relation between two entities.
|
|
7706
7452
|
*/
|
|
7707
7453
|
'updateRelation'(
|
|
7708
|
-
parameters?: Parameters<Paths.UpdateRelation.PathParameters
|
|
7454
|
+
parameters?: Parameters<Paths.UpdateRelation.PathParameters> | null,
|
|
7709
7455
|
data?: Paths.UpdateRelation.RequestBody,
|
|
7710
7456
|
config?: AxiosRequestConfig
|
|
7711
7457
|
): OperationResponse<Paths.UpdateRelation.Responses.$200>
|
|
@@ -7715,7 +7461,7 @@ export interface OperationMethods {
|
|
|
7715
7461
|
* Removes relation between two entities
|
|
7716
7462
|
*/
|
|
7717
7463
|
'deleteRelation'(
|
|
7718
|
-
parameters?: Parameters<Paths.DeleteRelation.PathParameters
|
|
7464
|
+
parameters?: Parameters<Paths.DeleteRelation.PathParameters> | null,
|
|
7719
7465
|
data?: any,
|
|
7720
7466
|
config?: AxiosRequestConfig
|
|
7721
7467
|
): OperationResponse<Paths.DeleteRelation.Responses.$204>
|
|
@@ -7768,7 +7514,7 @@ export interface OperationMethods {
|
|
|
7768
7514
|
* Gets Saved View configuration by id.
|
|
7769
7515
|
*/
|
|
7770
7516
|
'getSavedView'(
|
|
7771
|
-
parameters?: Parameters<
|
|
7517
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
7772
7518
|
data?: any,
|
|
7773
7519
|
config?: AxiosRequestConfig
|
|
7774
7520
|
): OperationResponse<Paths.GetSavedView.Responses.$200>
|
|
@@ -7778,7 +7524,7 @@ export interface OperationMethods {
|
|
|
7778
7524
|
* Updates a saved view
|
|
7779
7525
|
*/
|
|
7780
7526
|
'updateSavedView'(
|
|
7781
|
-
parameters?: Parameters<
|
|
7527
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
7782
7528
|
data?: Paths.UpdateSavedView.RequestBody,
|
|
7783
7529
|
config?: AxiosRequestConfig
|
|
7784
7530
|
): OperationResponse<Paths.UpdateSavedView.Responses.$200>
|
|
@@ -7788,7 +7534,7 @@ export interface OperationMethods {
|
|
|
7788
7534
|
* Deletes a saved view
|
|
7789
7535
|
*/
|
|
7790
7536
|
'deleteSavedView'(
|
|
7791
|
-
parameters?: Parameters<
|
|
7537
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
7792
7538
|
data?: any,
|
|
7793
7539
|
config?: AxiosRequestConfig
|
|
7794
7540
|
): OperationResponse<Paths.DeleteSavedView.Responses.$200>
|
|
@@ -7818,7 +7564,7 @@ export interface OperationMethods {
|
|
|
7818
7564
|
* Get taxonomy by slug
|
|
7819
7565
|
*/
|
|
7820
7566
|
'getTaxonomy'(
|
|
7821
|
-
parameters?: Parameters<
|
|
7567
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
7822
7568
|
data?: any,
|
|
7823
7569
|
config?: AxiosRequestConfig
|
|
7824
7570
|
): OperationResponse<Paths.GetTaxonomy.Responses.$200>
|
|
@@ -7828,7 +7574,7 @@ export interface OperationMethods {
|
|
|
7828
7574
|
* Taxonomies autocomplete
|
|
7829
7575
|
*/
|
|
7830
7576
|
'taxonomyAutocomplete'(
|
|
7831
|
-
parameters?: Parameters<Paths.TaxonomyAutocomplete.
|
|
7577
|
+
parameters?: Parameters<Paths.TaxonomyAutocomplete.QueryParameters> | null,
|
|
7832
7578
|
data?: any,
|
|
7833
7579
|
config?: AxiosRequestConfig
|
|
7834
7580
|
): OperationResponse<Paths.TaxonomyAutocomplete.Responses.$200>
|
|
@@ -7838,7 +7584,7 @@ export interface OperationMethods {
|
|
|
7838
7584
|
* List taxonomy classifications in an organisation based on taxonomy slug
|
|
7839
7585
|
*/
|
|
7840
7586
|
'taxonomiesClassificationsSearch'(
|
|
7841
|
-
parameters?: Parameters<
|
|
7587
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
7842
7588
|
data?: Paths.TaxonomiesClassificationsSearch.RequestBody,
|
|
7843
7589
|
config?: AxiosRequestConfig
|
|
7844
7590
|
): OperationResponse<Paths.TaxonomiesClassificationsSearch.Responses.$200>
|
|
@@ -7848,7 +7594,7 @@ export interface OperationMethods {
|
|
|
7848
7594
|
* Update taxonomies in an organisation based in taxonomy slug
|
|
7849
7595
|
*/
|
|
7850
7596
|
'updateClassificationsForTaxonomy'(
|
|
7851
|
-
parameters?: Parameters<
|
|
7597
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
7852
7598
|
data?: Paths.UpdateClassificationsForTaxonomy.RequestBody,
|
|
7853
7599
|
config?: AxiosRequestConfig
|
|
7854
7600
|
): OperationResponse<Paths.UpdateClassificationsForTaxonomy.Responses.$200>
|
|
@@ -7874,7 +7620,7 @@ export interface PathsDictionary {
|
|
|
7874
7620
|
* By default gets the latest version of the Schema and to get the specific version of schema pass the id.
|
|
7875
7621
|
*/
|
|
7876
7622
|
'get'(
|
|
7877
|
-
parameters?: Parameters<Paths.GetSchema.
|
|
7623
|
+
parameters?: Parameters<Paths.GetSchema.QueryParameters> | null,
|
|
7878
7624
|
data?: any,
|
|
7879
7625
|
config?: AxiosRequestConfig
|
|
7880
7626
|
): OperationResponse<Paths.GetSchema.Responses.$200>
|
|
@@ -7884,7 +7630,7 @@ export interface PathsDictionary {
|
|
|
7884
7630
|
* Create or update a schema with a new version
|
|
7885
7631
|
*/
|
|
7886
7632
|
'put'(
|
|
7887
|
-
parameters?: Parameters<Paths.PutSchema.
|
|
7633
|
+
parameters?: Parameters<Paths.PutSchema.QueryParameters> | null,
|
|
7888
7634
|
data?: Paths.PutSchema.RequestBody,
|
|
7889
7635
|
config?: AxiosRequestConfig
|
|
7890
7636
|
): OperationResponse<Paths.PutSchema.Responses.$200>
|
|
@@ -7894,7 +7640,7 @@ export interface PathsDictionary {
|
|
|
7894
7640
|
* Delete a schema, or a specific version of a schema
|
|
7895
7641
|
*/
|
|
7896
7642
|
'delete'(
|
|
7897
|
-
parameters?: Parameters<
|
|
7643
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
7898
7644
|
data?: any,
|
|
7899
7645
|
config?: AxiosRequestConfig
|
|
7900
7646
|
): OperationResponse<Paths.DeleteSchema.Responses.$204>
|
|
@@ -7906,7 +7652,7 @@ export interface PathsDictionary {
|
|
|
7906
7652
|
* Get all versions of this schema ordered by the latest versions including drafts.
|
|
7907
7653
|
*/
|
|
7908
7654
|
'get'(
|
|
7909
|
-
parameters?: Parameters<Paths.GetSchemaVersions.
|
|
7655
|
+
parameters?: Parameters<Paths.GetSchemaVersions.QueryParameters> | null,
|
|
7910
7656
|
data?: any,
|
|
7911
7657
|
config?: AxiosRequestConfig
|
|
7912
7658
|
): OperationResponse<Paths.GetSchemaVersions.Responses.$200>
|
|
@@ -7930,7 +7676,7 @@ export interface PathsDictionary {
|
|
|
7930
7676
|
* List taxonomy classifications for a given schema
|
|
7931
7677
|
*/
|
|
7932
7678
|
'get'(
|
|
7933
|
-
parameters?: Parameters<Paths.ListTaxonomyClassificationsForSchema.
|
|
7679
|
+
parameters?: Parameters<Paths.ListTaxonomyClassificationsForSchema.QueryParameters> | null,
|
|
7934
7680
|
data?: any,
|
|
7935
7681
|
config?: AxiosRequestConfig
|
|
7936
7682
|
): OperationResponse<Paths.ListTaxonomyClassificationsForSchema.Responses.$200>
|
|
@@ -8044,7 +7790,7 @@ export interface PathsDictionary {
|
|
|
8044
7790
|
*
|
|
8045
7791
|
*/
|
|
8046
7792
|
'post'(
|
|
8047
|
-
parameters?: Parameters<
|
|
7793
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
8048
7794
|
data?: Paths.CreateEntity.RequestBody,
|
|
8049
7795
|
config?: AxiosRequestConfig
|
|
8050
7796
|
): OperationResponse<Paths.CreateEntity.Responses.$201>
|
|
@@ -8065,7 +7811,7 @@ export interface PathsDictionary {
|
|
|
8065
7811
|
*
|
|
8066
7812
|
*/
|
|
8067
7813
|
'patch'(
|
|
8068
|
-
parameters?: Parameters<
|
|
7814
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
8069
7815
|
data?: Paths.UpsertEntity.RequestBody,
|
|
8070
7816
|
config?: AxiosRequestConfig
|
|
8071
7817
|
): OperationResponse<Paths.UpsertEntity.Responses.$200 | Paths.UpsertEntity.Responses.$201>
|
|
@@ -8140,7 +7886,7 @@ export interface PathsDictionary {
|
|
|
8140
7886
|
*
|
|
8141
7887
|
*/
|
|
8142
7888
|
'get'(
|
|
8143
|
-
parameters?: Parameters<
|
|
7889
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
8144
7890
|
data?: any,
|
|
8145
7891
|
config?: AxiosRequestConfig
|
|
8146
7892
|
): OperationResponse<Paths.GetEntity.Responses.$200>
|
|
@@ -8175,7 +7921,7 @@ export interface PathsDictionary {
|
|
|
8175
7921
|
*
|
|
8176
7922
|
*/
|
|
8177
7923
|
'put'(
|
|
8178
|
-
parameters?: Parameters<
|
|
7924
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
8179
7925
|
data?: Paths.UpdateEntity.RequestBody,
|
|
8180
7926
|
config?: AxiosRequestConfig
|
|
8181
7927
|
): OperationResponse<Paths.UpdateEntity.Responses.$200>
|
|
@@ -8212,7 +7958,7 @@ export interface PathsDictionary {
|
|
|
8212
7958
|
*
|
|
8213
7959
|
*/
|
|
8214
7960
|
'patch'(
|
|
8215
|
-
parameters?: Parameters<
|
|
7961
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
8216
7962
|
data?: Paths.PatchEntity.RequestBody,
|
|
8217
7963
|
config?: AxiosRequestConfig
|
|
8218
7964
|
): OperationResponse<Paths.PatchEntity.Responses.$200>
|
|
@@ -8227,7 +7973,7 @@ export interface PathsDictionary {
|
|
|
8227
7973
|
*
|
|
8228
7974
|
*/
|
|
8229
7975
|
'delete'(
|
|
8230
|
-
parameters?: Parameters<
|
|
7976
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
8231
7977
|
data?: any,
|
|
8232
7978
|
config?: AxiosRequestConfig
|
|
8233
7979
|
): OperationResponse<Paths.DeleteEntity.Responses.$200>
|
|
@@ -8268,7 +8014,7 @@ export interface PathsDictionary {
|
|
|
8268
8014
|
* Get activity by id
|
|
8269
8015
|
*/
|
|
8270
8016
|
'get'(
|
|
8271
|
-
parameters?: Parameters<Paths.GetActivity.
|
|
8017
|
+
parameters?: Parameters<Paths.GetActivity.QueryParameters> | null,
|
|
8272
8018
|
data?: any,
|
|
8273
8019
|
config?: AxiosRequestConfig
|
|
8274
8020
|
): OperationResponse<Paths.GetActivity.Responses.$200>
|
|
@@ -8280,7 +8026,7 @@ export interface PathsDictionary {
|
|
|
8280
8026
|
* Attach existing activity to entity activity feeds
|
|
8281
8027
|
*/
|
|
8282
8028
|
'post'(
|
|
8283
|
-
parameters?: Parameters<Paths.AttachActivity.
|
|
8029
|
+
parameters?: Parameters<Paths.AttachActivity.QueryParameters> | null,
|
|
8284
8030
|
data?: any,
|
|
8285
8031
|
config?: AxiosRequestConfig
|
|
8286
8032
|
): OperationResponse<Paths.AttachActivity.Responses.$200>
|
|
@@ -8293,7 +8039,7 @@ export interface PathsDictionary {
|
|
|
8293
8039
|
*
|
|
8294
8040
|
*/
|
|
8295
8041
|
'get'(
|
|
8296
|
-
parameters?: Parameters<Paths.GetEntityActivityFeed.
|
|
8042
|
+
parameters?: Parameters<Paths.GetEntityActivityFeed.QueryParameters> | null,
|
|
8297
8043
|
data?: any,
|
|
8298
8044
|
config?: AxiosRequestConfig
|
|
8299
8045
|
): OperationResponse<Paths.GetEntityActivityFeed.Responses.$200>
|
|
@@ -8310,7 +8056,7 @@ export interface PathsDictionary {
|
|
|
8310
8056
|
*
|
|
8311
8057
|
*/
|
|
8312
8058
|
'get'(
|
|
8313
|
-
parameters?: Parameters<Paths.GetRelations.
|
|
8059
|
+
parameters?: Parameters<Paths.GetRelations.QueryParameters> | null,
|
|
8314
8060
|
data?: any,
|
|
8315
8061
|
config?: AxiosRequestConfig
|
|
8316
8062
|
): OperationResponse<Paths.GetRelations.Responses.$200>
|
|
@@ -8320,7 +8066,7 @@ export interface PathsDictionary {
|
|
|
8320
8066
|
* Relates one or more entities to parent entity by adding items to a relation attribute
|
|
8321
8067
|
*/
|
|
8322
8068
|
'post'(
|
|
8323
|
-
parameters?: Parameters<
|
|
8069
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
8324
8070
|
data?: Paths.AddRelations.RequestBody,
|
|
8325
8071
|
config?: AxiosRequestConfig
|
|
8326
8072
|
): OperationResponse<Paths.AddRelations.Responses.$200>
|
|
@@ -8337,7 +8083,7 @@ export interface PathsDictionary {
|
|
|
8337
8083
|
*
|
|
8338
8084
|
*/
|
|
8339
8085
|
'get'(
|
|
8340
|
-
parameters?: Parameters<Paths.GetRelationsV2.
|
|
8086
|
+
parameters?: Parameters<Paths.GetRelationsV2.QueryParameters> | null,
|
|
8341
8087
|
data?: any,
|
|
8342
8088
|
config?: AxiosRequestConfig
|
|
8343
8089
|
): OperationResponse<Paths.GetRelationsV2.Responses.$200>
|
|
@@ -8354,7 +8100,7 @@ export interface PathsDictionary {
|
|
|
8354
8100
|
*
|
|
8355
8101
|
*/
|
|
8356
8102
|
'get'(
|
|
8357
|
-
parameters?: Parameters<Paths.GetRelationsV3.
|
|
8103
|
+
parameters?: Parameters<Paths.GetRelationsV3.QueryParameters> | null,
|
|
8358
8104
|
data?: any,
|
|
8359
8105
|
config?: AxiosRequestConfig
|
|
8360
8106
|
): OperationResponse<Paths.GetRelationsV3.Responses.$200>
|
|
@@ -8367,7 +8113,7 @@ export interface PathsDictionary {
|
|
|
8367
8113
|
*
|
|
8368
8114
|
*/
|
|
8369
8115
|
'get'(
|
|
8370
|
-
parameters?: Parameters<
|
|
8116
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
8371
8117
|
data?: any,
|
|
8372
8118
|
config?: AxiosRequestConfig
|
|
8373
8119
|
): OperationResponse<Paths.GetRelatedEntitiesCount.Responses.$200>
|
|
@@ -8379,7 +8125,7 @@ export interface PathsDictionary {
|
|
|
8379
8125
|
* Updates an existing relation between two entities.
|
|
8380
8126
|
*/
|
|
8381
8127
|
'put'(
|
|
8382
|
-
parameters?: Parameters<Paths.UpdateRelation.PathParameters
|
|
8128
|
+
parameters?: Parameters<Paths.UpdateRelation.PathParameters> | null,
|
|
8383
8129
|
data?: Paths.UpdateRelation.RequestBody,
|
|
8384
8130
|
config?: AxiosRequestConfig
|
|
8385
8131
|
): OperationResponse<Paths.UpdateRelation.Responses.$200>
|
|
@@ -8389,7 +8135,7 @@ export interface PathsDictionary {
|
|
|
8389
8135
|
* Removes relation between two entities
|
|
8390
8136
|
*/
|
|
8391
8137
|
'delete'(
|
|
8392
|
-
parameters?: Parameters<Paths.DeleteRelation.PathParameters
|
|
8138
|
+
parameters?: Parameters<Paths.DeleteRelation.PathParameters> | null,
|
|
8393
8139
|
data?: any,
|
|
8394
8140
|
config?: AxiosRequestConfig
|
|
8395
8141
|
): OperationResponse<Paths.DeleteRelation.Responses.$204>
|
|
@@ -8452,7 +8198,7 @@ export interface PathsDictionary {
|
|
|
8452
8198
|
* Gets Saved View configuration by id.
|
|
8453
8199
|
*/
|
|
8454
8200
|
'get'(
|
|
8455
|
-
parameters?: Parameters<
|
|
8201
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
8456
8202
|
data?: any,
|
|
8457
8203
|
config?: AxiosRequestConfig
|
|
8458
8204
|
): OperationResponse<Paths.GetSavedView.Responses.$200>
|
|
@@ -8462,7 +8208,7 @@ export interface PathsDictionary {
|
|
|
8462
8208
|
* Updates a saved view
|
|
8463
8209
|
*/
|
|
8464
8210
|
'put'(
|
|
8465
|
-
parameters?: Parameters<
|
|
8211
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
8466
8212
|
data?: Paths.UpdateSavedView.RequestBody,
|
|
8467
8213
|
config?: AxiosRequestConfig
|
|
8468
8214
|
): OperationResponse<Paths.UpdateSavedView.Responses.$200>
|
|
@@ -8472,7 +8218,7 @@ export interface PathsDictionary {
|
|
|
8472
8218
|
* Deletes a saved view
|
|
8473
8219
|
*/
|
|
8474
8220
|
'delete'(
|
|
8475
|
-
parameters?: Parameters<
|
|
8221
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
8476
8222
|
data?: any,
|
|
8477
8223
|
config?: AxiosRequestConfig
|
|
8478
8224
|
): OperationResponse<Paths.DeleteSavedView.Responses.$200>
|
|
@@ -8508,7 +8254,7 @@ export interface PathsDictionary {
|
|
|
8508
8254
|
* Get taxonomy by slug
|
|
8509
8255
|
*/
|
|
8510
8256
|
'get'(
|
|
8511
|
-
parameters?: Parameters<
|
|
8257
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
8512
8258
|
data?: any,
|
|
8513
8259
|
config?: AxiosRequestConfig
|
|
8514
8260
|
): OperationResponse<Paths.GetTaxonomy.Responses.$200>
|
|
@@ -8520,7 +8266,7 @@ export interface PathsDictionary {
|
|
|
8520
8266
|
* Taxonomies autocomplete
|
|
8521
8267
|
*/
|
|
8522
8268
|
'get'(
|
|
8523
|
-
parameters?: Parameters<Paths.TaxonomyAutocomplete.
|
|
8269
|
+
parameters?: Parameters<Paths.TaxonomyAutocomplete.QueryParameters> | null,
|
|
8524
8270
|
data?: any,
|
|
8525
8271
|
config?: AxiosRequestConfig
|
|
8526
8272
|
): OperationResponse<Paths.TaxonomyAutocomplete.Responses.$200>
|
|
@@ -8532,7 +8278,7 @@ export interface PathsDictionary {
|
|
|
8532
8278
|
* List taxonomy classifications in an organisation based on taxonomy slug
|
|
8533
8279
|
*/
|
|
8534
8280
|
'post'(
|
|
8535
|
-
parameters?: Parameters<
|
|
8281
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
8536
8282
|
data?: Paths.TaxonomiesClassificationsSearch.RequestBody,
|
|
8537
8283
|
config?: AxiosRequestConfig
|
|
8538
8284
|
): OperationResponse<Paths.TaxonomiesClassificationsSearch.Responses.$200>
|
|
@@ -8544,7 +8290,7 @@ export interface PathsDictionary {
|
|
|
8544
8290
|
* Update taxonomies in an organisation based in taxonomy slug
|
|
8545
8291
|
*/
|
|
8546
8292
|
'post'(
|
|
8547
|
-
parameters?: Parameters<
|
|
8293
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
8548
8294
|
data?: Paths.UpdateClassificationsForTaxonomy.RequestBody,
|
|
8549
8295
|
config?: AxiosRequestConfig
|
|
8550
8296
|
): OperationResponse<Paths.UpdateClassificationsForTaxonomy.Responses.$200>
|