@epilot/entity-client 4.18.0 → 4.18.1-rc.2
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 +8 -0
- package/dist/openapi.d.ts +450 -131
- package/dist/openapi.json +19 -5
- package/dist/schema-model.d.ts +0 -0
- package/dist/schema-model.js +0 -0
- package/package.json +2 -2
package/dist/openapi.d.ts
CHANGED
|
@@ -24,6 +24,7 @@ declare namespace Components {
|
|
|
24
24
|
export type AsyncOperationQueryParam = boolean;
|
|
25
25
|
export type DryRunQueryParam = boolean;
|
|
26
26
|
export type EntityIdPathParam = Schemas.EntityId /* uuid */;
|
|
27
|
+
export type EntityRelationsModeQueryParam = string;
|
|
27
28
|
export type EntitySlugPathParam = /**
|
|
28
29
|
* URL-friendly identifier for the entity schema
|
|
29
30
|
* example:
|
|
@@ -65,6 +66,7 @@ declare namespace Components {
|
|
|
65
66
|
IncludeReverseQueryParam?: Parameters.IncludeReverseQueryParam;
|
|
66
67
|
IncludeSchemasQueryParam?: Parameters.IncludeSchemasQueryParam;
|
|
67
68
|
ExcludeSchemasQueryParam?: Parameters.ExcludeSchemasQueryParam;
|
|
69
|
+
EntityRelationsModeQueryParam?: Parameters.EntityRelationsModeQueryParam;
|
|
68
70
|
DryRunQueryParam?: Parameters.DryRunQueryParam;
|
|
69
71
|
}
|
|
70
72
|
namespace Schemas {
|
|
@@ -1678,7 +1680,6 @@ declare namespace Components {
|
|
|
1678
1680
|
* Enable the thumbnail column
|
|
1679
1681
|
*/
|
|
1680
1682
|
enable_thumbnails?: boolean;
|
|
1681
|
-
classic_view?: string; // uri-reference
|
|
1682
1683
|
}
|
|
1683
1684
|
export type EntityId = string; // uuid
|
|
1684
1685
|
/**
|
|
@@ -5958,10 +5959,28 @@ declare namespace Components {
|
|
|
5958
5959
|
declare namespace Paths {
|
|
5959
5960
|
namespace AddRelations {
|
|
5960
5961
|
namespace Parameters {
|
|
5961
|
-
export type
|
|
5962
|
-
|
|
5963
|
-
|
|
5964
|
-
|
|
5962
|
+
export type ActivityId = /**
|
|
5963
|
+
* See https://github.com/ulid/spec
|
|
5964
|
+
* example:
|
|
5965
|
+
* 01F130Q52Q6MWSNS8N2AVXV4JN
|
|
5966
|
+
*/
|
|
5967
|
+
Components.Schemas.ActivityId /* ulid */;
|
|
5968
|
+
export type Async = boolean;
|
|
5969
|
+
export type Id = Components.Schemas.EntityId /* uuid */;
|
|
5970
|
+
export type Slug = /**
|
|
5971
|
+
* URL-friendly identifier for the entity schema
|
|
5972
|
+
* example:
|
|
5973
|
+
* contact
|
|
5974
|
+
*/
|
|
5975
|
+
Components.Schemas.EntitySlug;
|
|
5976
|
+
}
|
|
5977
|
+
export interface PathParameters {
|
|
5978
|
+
slug: Parameters.Slug;
|
|
5979
|
+
id: Parameters.Id;
|
|
5980
|
+
}
|
|
5981
|
+
export interface QueryParameters {
|
|
5982
|
+
async?: Parameters.Async;
|
|
5983
|
+
activity_id?: Parameters.ActivityId;
|
|
5965
5984
|
}
|
|
5966
5985
|
export type RequestBody = Components.Schemas.RelationItem[];
|
|
5967
5986
|
namespace Responses {
|
|
@@ -5970,8 +5989,16 @@ declare namespace Paths {
|
|
|
5970
5989
|
}
|
|
5971
5990
|
namespace AttachActivity {
|
|
5972
5991
|
namespace Parameters {
|
|
5973
|
-
export type $0 = Components.Parameters.ActivityIdPathParam;
|
|
5974
5992
|
export type Entities = Components.Schemas.EntityId /* uuid */[];
|
|
5993
|
+
export type Id = /**
|
|
5994
|
+
* See https://github.com/ulid/spec
|
|
5995
|
+
* example:
|
|
5996
|
+
* 01F130Q52Q6MWSNS8N2AVXV4JN
|
|
5997
|
+
*/
|
|
5998
|
+
Components.Schemas.ActivityId /* ulid */;
|
|
5999
|
+
}
|
|
6000
|
+
export interface PathParameters {
|
|
6001
|
+
id: Parameters.Id;
|
|
5975
6002
|
}
|
|
5976
6003
|
export interface QueryParameters {
|
|
5977
6004
|
entities?: Parameters.Entities;
|
|
@@ -6039,9 +6066,26 @@ declare namespace Paths {
|
|
|
6039
6066
|
}
|
|
6040
6067
|
namespace CreateEntity {
|
|
6041
6068
|
namespace Parameters {
|
|
6042
|
-
export type
|
|
6043
|
-
|
|
6044
|
-
|
|
6069
|
+
export type ActivityId = /**
|
|
6070
|
+
* See https://github.com/ulid/spec
|
|
6071
|
+
* example:
|
|
6072
|
+
* 01F130Q52Q6MWSNS8N2AVXV4JN
|
|
6073
|
+
*/
|
|
6074
|
+
Components.Schemas.ActivityId /* ulid */;
|
|
6075
|
+
export type Async = boolean;
|
|
6076
|
+
export type Slug = /**
|
|
6077
|
+
* URL-friendly identifier for the entity schema
|
|
6078
|
+
* example:
|
|
6079
|
+
* contact
|
|
6080
|
+
*/
|
|
6081
|
+
Components.Schemas.EntitySlug;
|
|
6082
|
+
}
|
|
6083
|
+
export interface PathParameters {
|
|
6084
|
+
slug: Parameters.Slug;
|
|
6085
|
+
}
|
|
6086
|
+
export interface QueryParameters {
|
|
6087
|
+
activity_id?: Parameters.ActivityId;
|
|
6088
|
+
async?: Parameters.Async;
|
|
6045
6089
|
}
|
|
6046
6090
|
export type RequestBody = /**
|
|
6047
6091
|
* example:
|
|
@@ -6130,9 +6174,26 @@ declare namespace Paths {
|
|
|
6130
6174
|
}
|
|
6131
6175
|
namespace DeleteEntity {
|
|
6132
6176
|
namespace Parameters {
|
|
6133
|
-
export type
|
|
6134
|
-
|
|
6135
|
-
|
|
6177
|
+
export type ActivityId = /**
|
|
6178
|
+
* See https://github.com/ulid/spec
|
|
6179
|
+
* example:
|
|
6180
|
+
* 01F130Q52Q6MWSNS8N2AVXV4JN
|
|
6181
|
+
*/
|
|
6182
|
+
Components.Schemas.ActivityId /* ulid */;
|
|
6183
|
+
export type Id = Components.Schemas.EntityId /* uuid */;
|
|
6184
|
+
export type Slug = /**
|
|
6185
|
+
* URL-friendly identifier for the entity schema
|
|
6186
|
+
* example:
|
|
6187
|
+
* contact
|
|
6188
|
+
*/
|
|
6189
|
+
Components.Schemas.EntitySlug;
|
|
6190
|
+
}
|
|
6191
|
+
export interface PathParameters {
|
|
6192
|
+
slug: Parameters.Slug;
|
|
6193
|
+
id: Parameters.Id;
|
|
6194
|
+
}
|
|
6195
|
+
export interface QueryParameters {
|
|
6196
|
+
activity_id?: Parameters.ActivityId;
|
|
6136
6197
|
}
|
|
6137
6198
|
namespace Responses {
|
|
6138
6199
|
export interface $200 {
|
|
@@ -6141,17 +6202,33 @@ declare namespace Paths {
|
|
|
6141
6202
|
}
|
|
6142
6203
|
namespace DeleteRelation {
|
|
6143
6204
|
namespace Parameters {
|
|
6144
|
-
export type
|
|
6145
|
-
|
|
6146
|
-
|
|
6147
|
-
|
|
6205
|
+
export type ActivityId = /**
|
|
6206
|
+
* See https://github.com/ulid/spec
|
|
6207
|
+
* example:
|
|
6208
|
+
* 01F130Q52Q6MWSNS8N2AVXV4JN
|
|
6209
|
+
*/
|
|
6210
|
+
Components.Schemas.ActivityId /* ulid */;
|
|
6211
|
+
export type Async = boolean;
|
|
6148
6212
|
export type Attribute = string;
|
|
6149
6213
|
export type EntityId = string;
|
|
6214
|
+
export type Id = Components.Schemas.EntityId /* uuid */;
|
|
6215
|
+
export type Slug = /**
|
|
6216
|
+
* URL-friendly identifier for the entity schema
|
|
6217
|
+
* example:
|
|
6218
|
+
* contact
|
|
6219
|
+
*/
|
|
6220
|
+
Components.Schemas.EntitySlug;
|
|
6150
6221
|
}
|
|
6151
6222
|
export interface PathParameters {
|
|
6223
|
+
slug: Parameters.Slug;
|
|
6224
|
+
id: Parameters.Id;
|
|
6152
6225
|
attribute: Parameters.Attribute;
|
|
6153
6226
|
entity_id: Parameters.EntityId;
|
|
6154
6227
|
}
|
|
6228
|
+
export interface QueryParameters {
|
|
6229
|
+
async?: Parameters.Async;
|
|
6230
|
+
activity_id?: Parameters.ActivityId;
|
|
6231
|
+
}
|
|
6155
6232
|
namespace Responses {
|
|
6156
6233
|
export interface $204 {
|
|
6157
6234
|
}
|
|
@@ -6159,7 +6236,10 @@ declare namespace Paths {
|
|
|
6159
6236
|
}
|
|
6160
6237
|
namespace DeleteSavedView {
|
|
6161
6238
|
namespace Parameters {
|
|
6162
|
-
export type
|
|
6239
|
+
export type Id = /* Generated uuid for a saved view */ Components.Schemas.SavedViewId /* uuid */;
|
|
6240
|
+
}
|
|
6241
|
+
export interface PathParameters {
|
|
6242
|
+
id: Parameters.Id;
|
|
6163
6243
|
}
|
|
6164
6244
|
namespace Responses {
|
|
6165
6245
|
export interface $200 {
|
|
@@ -6168,7 +6248,15 @@ declare namespace Paths {
|
|
|
6168
6248
|
}
|
|
6169
6249
|
namespace DeleteSchema {
|
|
6170
6250
|
namespace Parameters {
|
|
6171
|
-
export type
|
|
6251
|
+
export type Slug = /**
|
|
6252
|
+
* URL-friendly identifier for the entity schema
|
|
6253
|
+
* example:
|
|
6254
|
+
* contact
|
|
6255
|
+
*/
|
|
6256
|
+
Components.Schemas.EntitySlug;
|
|
6257
|
+
}
|
|
6258
|
+
export interface PathParameters {
|
|
6259
|
+
slug: Parameters.Slug;
|
|
6172
6260
|
}
|
|
6173
6261
|
namespace Responses {
|
|
6174
6262
|
export interface $204 {
|
|
@@ -6199,10 +6287,18 @@ declare namespace Paths {
|
|
|
6199
6287
|
}
|
|
6200
6288
|
namespace GetActivity {
|
|
6201
6289
|
namespace Parameters {
|
|
6202
|
-
export type
|
|
6290
|
+
export type Id = /**
|
|
6291
|
+
* See https://github.com/ulid/spec
|
|
6292
|
+
* example:
|
|
6293
|
+
* 01F130Q52Q6MWSNS8N2AVXV4JN
|
|
6294
|
+
*/
|
|
6295
|
+
Components.Schemas.ActivityId /* ulid */;
|
|
6203
6296
|
export type OperationsFrom = number;
|
|
6204
6297
|
export type OperationsSize = number;
|
|
6205
6298
|
}
|
|
6299
|
+
export interface PathParameters {
|
|
6300
|
+
id: Parameters.Id;
|
|
6301
|
+
}
|
|
6206
6302
|
export interface QueryParameters {
|
|
6207
6303
|
operations_size?: Parameters.OperationsSize;
|
|
6208
6304
|
operations_from?: Parameters.OperationsFrom;
|
|
@@ -6213,9 +6309,21 @@ declare namespace Paths {
|
|
|
6213
6309
|
}
|
|
6214
6310
|
namespace GetEntity {
|
|
6215
6311
|
namespace Parameters {
|
|
6216
|
-
export type
|
|
6217
|
-
export type
|
|
6218
|
-
export type
|
|
6312
|
+
export type Hydrate = boolean;
|
|
6313
|
+
export type Id = Components.Schemas.EntityId /* uuid */;
|
|
6314
|
+
export type Slug = /**
|
|
6315
|
+
* URL-friendly identifier for the entity schema
|
|
6316
|
+
* example:
|
|
6317
|
+
* contact
|
|
6318
|
+
*/
|
|
6319
|
+
Components.Schemas.EntitySlug;
|
|
6320
|
+
}
|
|
6321
|
+
export interface PathParameters {
|
|
6322
|
+
id: Parameters.Id;
|
|
6323
|
+
slug: Parameters.Slug;
|
|
6324
|
+
}
|
|
6325
|
+
export interface QueryParameters {
|
|
6326
|
+
hydrate?: Parameters.Hydrate;
|
|
6219
6327
|
}
|
|
6220
6328
|
namespace Responses {
|
|
6221
6329
|
export interface $200 {
|
|
@@ -6310,22 +6418,32 @@ declare namespace Paths {
|
|
|
6310
6418
|
}
|
|
6311
6419
|
namespace GetEntityActivityFeed {
|
|
6312
6420
|
namespace Parameters {
|
|
6313
|
-
export type $0 = Components.Parameters.EntitySlugPathParam;
|
|
6314
|
-
export type $1 = Components.Parameters.EntityIdPathParam;
|
|
6315
|
-
export type $4 = Components.Parameters.FromPageQueryParam;
|
|
6316
6421
|
export type After = string; // date-time
|
|
6317
6422
|
export type Before = string; // date-time
|
|
6423
|
+
export type From = number;
|
|
6424
|
+
export type Id = Components.Schemas.EntityId /* uuid */;
|
|
6318
6425
|
export type IncludeRelations = boolean;
|
|
6319
6426
|
export type Size = number;
|
|
6427
|
+
export type Slug = /**
|
|
6428
|
+
* URL-friendly identifier for the entity schema
|
|
6429
|
+
* example:
|
|
6430
|
+
* contact
|
|
6431
|
+
*/
|
|
6432
|
+
Components.Schemas.EntitySlug;
|
|
6320
6433
|
/**
|
|
6321
6434
|
* example:
|
|
6322
6435
|
* SyncActivity
|
|
6323
6436
|
*/
|
|
6324
6437
|
export type Type = string;
|
|
6325
6438
|
}
|
|
6439
|
+
export interface PathParameters {
|
|
6440
|
+
slug: Parameters.Slug;
|
|
6441
|
+
id: Parameters.Id;
|
|
6442
|
+
}
|
|
6326
6443
|
export interface QueryParameters {
|
|
6327
6444
|
after?: Parameters.After /* date-time */;
|
|
6328
6445
|
before?: Parameters.Before /* date-time */;
|
|
6446
|
+
from?: Parameters.From;
|
|
6329
6447
|
size?: Parameters.Size;
|
|
6330
6448
|
type?: /**
|
|
6331
6449
|
* example:
|
|
@@ -6347,9 +6465,26 @@ declare namespace Paths {
|
|
|
6347
6465
|
}
|
|
6348
6466
|
namespace GetRelatedEntitiesCount {
|
|
6349
6467
|
namespace Parameters {
|
|
6350
|
-
export type
|
|
6351
|
-
|
|
6352
|
-
|
|
6468
|
+
export type ExcludeSchemas = /**
|
|
6469
|
+
* URL-friendly identifier for the entity schema
|
|
6470
|
+
* example:
|
|
6471
|
+
* contact
|
|
6472
|
+
*/
|
|
6473
|
+
Components.Schemas.EntitySlug[];
|
|
6474
|
+
export type Id = Components.Schemas.EntityId /* uuid */;
|
|
6475
|
+
export type Slug = /**
|
|
6476
|
+
* URL-friendly identifier for the entity schema
|
|
6477
|
+
* example:
|
|
6478
|
+
* contact
|
|
6479
|
+
*/
|
|
6480
|
+
Components.Schemas.EntitySlug;
|
|
6481
|
+
}
|
|
6482
|
+
export interface PathParameters {
|
|
6483
|
+
slug: Parameters.Slug;
|
|
6484
|
+
id: Parameters.Id;
|
|
6485
|
+
}
|
|
6486
|
+
export interface QueryParameters {
|
|
6487
|
+
exclude_schemas?: Parameters.ExcludeSchemas;
|
|
6353
6488
|
}
|
|
6354
6489
|
namespace Responses {
|
|
6355
6490
|
export type $200 = Components.Schemas.GetRelatedEntitiesCount;
|
|
@@ -6357,17 +6492,41 @@ declare namespace Paths {
|
|
|
6357
6492
|
}
|
|
6358
6493
|
namespace GetRelations {
|
|
6359
6494
|
namespace Parameters {
|
|
6360
|
-
export type
|
|
6361
|
-
|
|
6362
|
-
|
|
6363
|
-
|
|
6364
|
-
|
|
6365
|
-
|
|
6366
|
-
export type
|
|
6495
|
+
export type ExcludeSchemas = /**
|
|
6496
|
+
* URL-friendly identifier for the entity schema
|
|
6497
|
+
* example:
|
|
6498
|
+
* contact
|
|
6499
|
+
*/
|
|
6500
|
+
Components.Schemas.EntitySlug[];
|
|
6501
|
+
export type From = number;
|
|
6502
|
+
export type Hydrate = boolean;
|
|
6503
|
+
export type Id = Components.Schemas.EntityId /* uuid */;
|
|
6504
|
+
export type IncludeReverse = boolean;
|
|
6505
|
+
export type IncludeSchemas = /**
|
|
6506
|
+
* URL-friendly identifier for the entity schema
|
|
6507
|
+
* example:
|
|
6508
|
+
* contact
|
|
6509
|
+
*/
|
|
6510
|
+
Components.Schemas.EntitySlug[];
|
|
6367
6511
|
export type Size = number;
|
|
6512
|
+
export type Slug = /**
|
|
6513
|
+
* URL-friendly identifier for the entity schema
|
|
6514
|
+
* example:
|
|
6515
|
+
* contact
|
|
6516
|
+
*/
|
|
6517
|
+
Components.Schemas.EntitySlug;
|
|
6518
|
+
}
|
|
6519
|
+
export interface PathParameters {
|
|
6520
|
+
slug: Parameters.Slug;
|
|
6521
|
+
id: Parameters.Id;
|
|
6368
6522
|
}
|
|
6369
6523
|
export interface QueryParameters {
|
|
6524
|
+
hydrate?: Parameters.Hydrate;
|
|
6525
|
+
include_reverse?: Parameters.IncludeReverse;
|
|
6526
|
+
from?: Parameters.From;
|
|
6370
6527
|
size?: Parameters.Size;
|
|
6528
|
+
include_schemas?: Parameters.IncludeSchemas;
|
|
6529
|
+
exclude_schemas?: Parameters.ExcludeSchemas;
|
|
6371
6530
|
}
|
|
6372
6531
|
namespace Responses {
|
|
6373
6532
|
export type $200 = Components.Schemas.GetRelationsResp;
|
|
@@ -6375,11 +6534,6 @@ declare namespace Paths {
|
|
|
6375
6534
|
}
|
|
6376
6535
|
namespace GetRelationsV2 {
|
|
6377
6536
|
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;
|
|
6383
6537
|
/**
|
|
6384
6538
|
* example:
|
|
6385
6539
|
* [
|
|
@@ -6389,11 +6543,28 @@ declare namespace Paths {
|
|
|
6389
6543
|
* ]
|
|
6390
6544
|
*/
|
|
6391
6545
|
export type Fields = string[];
|
|
6546
|
+
export type From = number;
|
|
6547
|
+
export type Hydrate = boolean;
|
|
6548
|
+
export type Id = Components.Schemas.EntityId /* uuid */;
|
|
6549
|
+
export type IncludeReverse = boolean;
|
|
6392
6550
|
export type Query = string;
|
|
6393
6551
|
export type Size = number;
|
|
6552
|
+
export type Slug = /**
|
|
6553
|
+
* URL-friendly identifier for the entity schema
|
|
6554
|
+
* example:
|
|
6555
|
+
* contact
|
|
6556
|
+
*/
|
|
6557
|
+
Components.Schemas.EntitySlug;
|
|
6558
|
+
}
|
|
6559
|
+
export interface PathParameters {
|
|
6560
|
+
slug: Parameters.Slug;
|
|
6561
|
+
id: Parameters.Id;
|
|
6394
6562
|
}
|
|
6395
6563
|
export interface QueryParameters {
|
|
6564
|
+
hydrate?: Parameters.Hydrate;
|
|
6396
6565
|
query?: Parameters.Query;
|
|
6566
|
+
include_reverse?: Parameters.IncludeReverse;
|
|
6567
|
+
from?: Parameters.From;
|
|
6397
6568
|
size?: Parameters.Size;
|
|
6398
6569
|
fields?: /**
|
|
6399
6570
|
* example:
|
|
@@ -6411,17 +6582,43 @@ declare namespace Paths {
|
|
|
6411
6582
|
}
|
|
6412
6583
|
namespace GetRelationsV3 {
|
|
6413
6584
|
namespace Parameters {
|
|
6414
|
-
export type
|
|
6415
|
-
|
|
6416
|
-
|
|
6417
|
-
|
|
6418
|
-
|
|
6419
|
-
|
|
6420
|
-
export type
|
|
6585
|
+
export type ExcludeSchemas = /**
|
|
6586
|
+
* URL-friendly identifier for the entity schema
|
|
6587
|
+
* example:
|
|
6588
|
+
* contact
|
|
6589
|
+
*/
|
|
6590
|
+
Components.Schemas.EntitySlug[];
|
|
6591
|
+
export type From = number;
|
|
6592
|
+
export type Hydrate = boolean;
|
|
6593
|
+
export type Id = Components.Schemas.EntityId /* uuid */;
|
|
6594
|
+
export type IncludeReverse = boolean;
|
|
6595
|
+
export type IncludeSchemas = /**
|
|
6596
|
+
* URL-friendly identifier for the entity schema
|
|
6597
|
+
* example:
|
|
6598
|
+
* contact
|
|
6599
|
+
*/
|
|
6600
|
+
Components.Schemas.EntitySlug[];
|
|
6601
|
+
export type Mode = string;
|
|
6421
6602
|
export type Size = number;
|
|
6603
|
+
export type Slug = /**
|
|
6604
|
+
* URL-friendly identifier for the entity schema
|
|
6605
|
+
* example:
|
|
6606
|
+
* contact
|
|
6607
|
+
*/
|
|
6608
|
+
Components.Schemas.EntitySlug;
|
|
6609
|
+
}
|
|
6610
|
+
export interface PathParameters {
|
|
6611
|
+
slug: Parameters.Slug;
|
|
6612
|
+
id: Parameters.Id;
|
|
6422
6613
|
}
|
|
6423
6614
|
export interface QueryParameters {
|
|
6615
|
+
hydrate?: Parameters.Hydrate;
|
|
6616
|
+
include_reverse?: Parameters.IncludeReverse;
|
|
6617
|
+
from?: Parameters.From;
|
|
6424
6618
|
size?: Parameters.Size;
|
|
6619
|
+
include_schemas?: Parameters.IncludeSchemas;
|
|
6620
|
+
exclude_schemas?: Parameters.ExcludeSchemas;
|
|
6621
|
+
mode?: Parameters.Mode;
|
|
6425
6622
|
}
|
|
6426
6623
|
namespace Responses {
|
|
6427
6624
|
export type $200 = Components.Schemas.GetRelationsRespWithPagination;
|
|
@@ -6429,7 +6626,10 @@ declare namespace Paths {
|
|
|
6429
6626
|
}
|
|
6430
6627
|
namespace GetSavedView {
|
|
6431
6628
|
namespace Parameters {
|
|
6432
|
-
export type
|
|
6629
|
+
export type Id = /* Generated uuid for a saved view */ Components.Schemas.SavedViewId /* uuid */;
|
|
6630
|
+
}
|
|
6631
|
+
export interface PathParameters {
|
|
6632
|
+
id: Parameters.Id;
|
|
6433
6633
|
}
|
|
6434
6634
|
namespace Responses {
|
|
6435
6635
|
export interface $200 {
|
|
@@ -6439,8 +6639,16 @@ declare namespace Paths {
|
|
|
6439
6639
|
}
|
|
6440
6640
|
namespace GetSchema {
|
|
6441
6641
|
namespace Parameters {
|
|
6442
|
-
export type $0 = Components.Parameters.EntitySlugPathParam;
|
|
6443
6642
|
export type Id = /* Generated uuid for schema */ Components.Schemas.SchemaId /* uuid */;
|
|
6643
|
+
export type Slug = /**
|
|
6644
|
+
* URL-friendly identifier for the entity schema
|
|
6645
|
+
* example:
|
|
6646
|
+
* contact
|
|
6647
|
+
*/
|
|
6648
|
+
Components.Schemas.EntitySlug;
|
|
6649
|
+
}
|
|
6650
|
+
export interface PathParameters {
|
|
6651
|
+
slug: Parameters.Slug;
|
|
6444
6652
|
}
|
|
6445
6653
|
export interface QueryParameters {
|
|
6446
6654
|
id?: Parameters.Id;
|
|
@@ -6451,12 +6659,20 @@ declare namespace Paths {
|
|
|
6451
6659
|
}
|
|
6452
6660
|
namespace GetSchemaVersions {
|
|
6453
6661
|
namespace Parameters {
|
|
6454
|
-
export type $0 = Components.Parameters.EntitySlugPathParam;
|
|
6455
6662
|
export type DraftsFrom = number;
|
|
6456
6663
|
export type DraftsSize = number;
|
|
6664
|
+
export type Slug = /**
|
|
6665
|
+
* URL-friendly identifier for the entity schema
|
|
6666
|
+
* example:
|
|
6667
|
+
* contact
|
|
6668
|
+
*/
|
|
6669
|
+
Components.Schemas.EntitySlug;
|
|
6457
6670
|
export type VersionsFrom = number;
|
|
6458
6671
|
export type VersionsSize = number;
|
|
6459
6672
|
}
|
|
6673
|
+
export interface PathParameters {
|
|
6674
|
+
slug: Parameters.Slug;
|
|
6675
|
+
}
|
|
6460
6676
|
export interface QueryParameters {
|
|
6461
6677
|
versions_from?: Parameters.VersionsFrom;
|
|
6462
6678
|
versions_size?: Parameters.VersionsSize;
|
|
@@ -6472,7 +6688,10 @@ declare namespace Paths {
|
|
|
6472
6688
|
}
|
|
6473
6689
|
namespace GetTaxonomy {
|
|
6474
6690
|
namespace Parameters {
|
|
6475
|
-
export type
|
|
6691
|
+
export type TaxonomySlug = string;
|
|
6692
|
+
}
|
|
6693
|
+
export interface PathParameters {
|
|
6694
|
+
taxonomySlug: Parameters.TaxonomySlug;
|
|
6476
6695
|
}
|
|
6477
6696
|
namespace Responses {
|
|
6478
6697
|
export type $200 = Components.Schemas.Taxonomy;
|
|
@@ -6539,10 +6758,19 @@ declare namespace Paths {
|
|
|
6539
6758
|
}
|
|
6540
6759
|
namespace ListTaxonomyClassificationsForSchema {
|
|
6541
6760
|
namespace Parameters {
|
|
6542
|
-
export type $0 = Components.Parameters.EntitySlugPathParam;
|
|
6543
|
-
export type $1 = Components.Parameters.TaxonomySlugPathParam;
|
|
6544
6761
|
export type Query = string;
|
|
6545
6762
|
export type Size = number;
|
|
6763
|
+
export type Slug = /**
|
|
6764
|
+
* URL-friendly identifier for the entity schema
|
|
6765
|
+
* example:
|
|
6766
|
+
* contact
|
|
6767
|
+
*/
|
|
6768
|
+
Components.Schemas.EntitySlug;
|
|
6769
|
+
export type TaxonomySlug = string;
|
|
6770
|
+
}
|
|
6771
|
+
export interface PathParameters {
|
|
6772
|
+
slug: Parameters.Slug;
|
|
6773
|
+
taxonomySlug: Parameters.TaxonomySlug;
|
|
6546
6774
|
}
|
|
6547
6775
|
export interface QueryParameters {
|
|
6548
6776
|
query?: Parameters.Query;
|
|
@@ -6556,11 +6784,30 @@ declare namespace Paths {
|
|
|
6556
6784
|
}
|
|
6557
6785
|
namespace PatchEntity {
|
|
6558
6786
|
namespace Parameters {
|
|
6559
|
-
export type
|
|
6560
|
-
|
|
6561
|
-
|
|
6562
|
-
|
|
6563
|
-
|
|
6787
|
+
export type ActivityId = /**
|
|
6788
|
+
* See https://github.com/ulid/spec
|
|
6789
|
+
* example:
|
|
6790
|
+
* 01F130Q52Q6MWSNS8N2AVXV4JN
|
|
6791
|
+
*/
|
|
6792
|
+
Components.Schemas.ActivityId /* ulid */;
|
|
6793
|
+
export type Async = boolean;
|
|
6794
|
+
export type DryRun = boolean;
|
|
6795
|
+
export type Id = Components.Schemas.EntityId /* uuid */;
|
|
6796
|
+
export type Slug = /**
|
|
6797
|
+
* URL-friendly identifier for the entity schema
|
|
6798
|
+
* example:
|
|
6799
|
+
* contact
|
|
6800
|
+
*/
|
|
6801
|
+
Components.Schemas.EntitySlug;
|
|
6802
|
+
}
|
|
6803
|
+
export interface PathParameters {
|
|
6804
|
+
slug: Parameters.Slug;
|
|
6805
|
+
id: Parameters.Id;
|
|
6806
|
+
}
|
|
6807
|
+
export interface QueryParameters {
|
|
6808
|
+
activity_id?: Parameters.ActivityId;
|
|
6809
|
+
dry_run?: Parameters.DryRun;
|
|
6810
|
+
async?: Parameters.Async;
|
|
6564
6811
|
}
|
|
6565
6812
|
export type RequestBody = /**
|
|
6566
6813
|
* example:
|
|
@@ -6645,8 +6892,16 @@ declare namespace Paths {
|
|
|
6645
6892
|
}
|
|
6646
6893
|
namespace PutSchema {
|
|
6647
6894
|
namespace Parameters {
|
|
6648
|
-
export type $0 = Components.Parameters.EntitySlugPathParam;
|
|
6649
6895
|
export type Draft = boolean;
|
|
6896
|
+
export type Slug = /**
|
|
6897
|
+
* URL-friendly identifier for the entity schema
|
|
6898
|
+
* example:
|
|
6899
|
+
* contact
|
|
6900
|
+
*/
|
|
6901
|
+
Components.Schemas.EntitySlug;
|
|
6902
|
+
}
|
|
6903
|
+
export interface PathParameters {
|
|
6904
|
+
slug: Parameters.Slug;
|
|
6650
6905
|
}
|
|
6651
6906
|
export interface QueryParameters {
|
|
6652
6907
|
draft?: Parameters.Draft;
|
|
@@ -6664,7 +6919,10 @@ declare namespace Paths {
|
|
|
6664
6919
|
}
|
|
6665
6920
|
namespace TaxonomiesClassificationsSearch {
|
|
6666
6921
|
namespace Parameters {
|
|
6667
|
-
export type
|
|
6922
|
+
export type TaxonomySlug = string;
|
|
6923
|
+
}
|
|
6924
|
+
export interface QueryParameters {
|
|
6925
|
+
taxonomySlug: Parameters.TaxonomySlug;
|
|
6668
6926
|
}
|
|
6669
6927
|
export interface RequestBody {
|
|
6670
6928
|
classificationIds?: Components.Schemas.ClassificationId /* uuid */[];
|
|
@@ -6677,9 +6935,12 @@ declare namespace Paths {
|
|
|
6677
6935
|
}
|
|
6678
6936
|
namespace TaxonomyAutocomplete {
|
|
6679
6937
|
namespace Parameters {
|
|
6680
|
-
export type $0 = Components.Parameters.TaxonomySlugPathParam;
|
|
6681
6938
|
export type Query = string;
|
|
6682
6939
|
export type Size = number;
|
|
6940
|
+
export type TaxonomySlug = string;
|
|
6941
|
+
}
|
|
6942
|
+
export interface PathParameters {
|
|
6943
|
+
taxonomySlug: Parameters.TaxonomySlug;
|
|
6683
6944
|
}
|
|
6684
6945
|
export interface QueryParameters {
|
|
6685
6946
|
query?: Parameters.Query;
|
|
@@ -6693,7 +6954,10 @@ declare namespace Paths {
|
|
|
6693
6954
|
}
|
|
6694
6955
|
namespace UpdateClassificationsForTaxonomy {
|
|
6695
6956
|
namespace Parameters {
|
|
6696
|
-
export type
|
|
6957
|
+
export type TaxonomySlug = string;
|
|
6958
|
+
}
|
|
6959
|
+
export interface PathParameters {
|
|
6960
|
+
taxonomySlug: Parameters.TaxonomySlug;
|
|
6697
6961
|
}
|
|
6698
6962
|
export type RequestBody = Components.Schemas.ClassificationsUpdate;
|
|
6699
6963
|
namespace Responses {
|
|
@@ -6708,10 +6972,28 @@ declare namespace Paths {
|
|
|
6708
6972
|
}
|
|
6709
6973
|
namespace UpdateEntity {
|
|
6710
6974
|
namespace Parameters {
|
|
6711
|
-
export type
|
|
6712
|
-
|
|
6713
|
-
|
|
6714
|
-
|
|
6975
|
+
export type ActivityId = /**
|
|
6976
|
+
* See https://github.com/ulid/spec
|
|
6977
|
+
* example:
|
|
6978
|
+
* 01F130Q52Q6MWSNS8N2AVXV4JN
|
|
6979
|
+
*/
|
|
6980
|
+
Components.Schemas.ActivityId /* ulid */;
|
|
6981
|
+
export type Async = boolean;
|
|
6982
|
+
export type Id = Components.Schemas.EntityId /* uuid */;
|
|
6983
|
+
export type Slug = /**
|
|
6984
|
+
* URL-friendly identifier for the entity schema
|
|
6985
|
+
* example:
|
|
6986
|
+
* contact
|
|
6987
|
+
*/
|
|
6988
|
+
Components.Schemas.EntitySlug;
|
|
6989
|
+
}
|
|
6990
|
+
export interface PathParameters {
|
|
6991
|
+
slug: Parameters.Slug;
|
|
6992
|
+
id: Parameters.Id;
|
|
6993
|
+
}
|
|
6994
|
+
export interface QueryParameters {
|
|
6995
|
+
activity_id?: Parameters.ActivityId;
|
|
6996
|
+
async?: Parameters.Async;
|
|
6715
6997
|
}
|
|
6716
6998
|
export type RequestBody = /**
|
|
6717
6999
|
* example:
|
|
@@ -6794,17 +7076,33 @@ declare namespace Paths {
|
|
|
6794
7076
|
}
|
|
6795
7077
|
namespace UpdateRelation {
|
|
6796
7078
|
namespace Parameters {
|
|
6797
|
-
export type
|
|
6798
|
-
|
|
6799
|
-
|
|
6800
|
-
|
|
7079
|
+
export type ActivityId = /**
|
|
7080
|
+
* See https://github.com/ulid/spec
|
|
7081
|
+
* example:
|
|
7082
|
+
* 01F130Q52Q6MWSNS8N2AVXV4JN
|
|
7083
|
+
*/
|
|
7084
|
+
Components.Schemas.ActivityId /* ulid */;
|
|
7085
|
+
export type Async = boolean;
|
|
6801
7086
|
export type Attribute = string;
|
|
6802
7087
|
export type EntityId = string;
|
|
7088
|
+
export type Id = Components.Schemas.EntityId /* uuid */;
|
|
7089
|
+
export type Slug = /**
|
|
7090
|
+
* URL-friendly identifier for the entity schema
|
|
7091
|
+
* example:
|
|
7092
|
+
* contact
|
|
7093
|
+
*/
|
|
7094
|
+
Components.Schemas.EntitySlug;
|
|
6803
7095
|
}
|
|
6804
7096
|
export interface PathParameters {
|
|
7097
|
+
slug: Parameters.Slug;
|
|
7098
|
+
id: Parameters.Id;
|
|
6805
7099
|
attribute: Parameters.Attribute;
|
|
6806
7100
|
entity_id: Parameters.EntityId;
|
|
6807
7101
|
}
|
|
7102
|
+
export interface QueryParameters {
|
|
7103
|
+
async?: Parameters.Async;
|
|
7104
|
+
activity_id?: Parameters.ActivityId;
|
|
7105
|
+
}
|
|
6808
7106
|
export interface RequestBody {
|
|
6809
7107
|
_tags?: string[];
|
|
6810
7108
|
}
|
|
@@ -6814,7 +7112,10 @@ declare namespace Paths {
|
|
|
6814
7112
|
}
|
|
6815
7113
|
namespace UpdateSavedView {
|
|
6816
7114
|
namespace Parameters {
|
|
6817
|
-
export type
|
|
7115
|
+
export type Id = /* Generated uuid for a saved view */ Components.Schemas.SavedViewId /* uuid */;
|
|
7116
|
+
}
|
|
7117
|
+
export interface PathParameters {
|
|
7118
|
+
id: Parameters.Id;
|
|
6818
7119
|
}
|
|
6819
7120
|
export type RequestBody = /* A saved entity view */ Components.Schemas.SavedView;
|
|
6820
7121
|
namespace Responses {
|
|
@@ -6823,10 +7124,28 @@ declare namespace Paths {
|
|
|
6823
7124
|
}
|
|
6824
7125
|
namespace UpsertEntity {
|
|
6825
7126
|
namespace Parameters {
|
|
6826
|
-
export type
|
|
6827
|
-
|
|
6828
|
-
|
|
6829
|
-
|
|
7127
|
+
export type ActivityId = /**
|
|
7128
|
+
* See https://github.com/ulid/spec
|
|
7129
|
+
* example:
|
|
7130
|
+
* 01F130Q52Q6MWSNS8N2AVXV4JN
|
|
7131
|
+
*/
|
|
7132
|
+
Components.Schemas.ActivityId /* ulid */;
|
|
7133
|
+
export type Async = boolean;
|
|
7134
|
+
export type DryRun = boolean;
|
|
7135
|
+
export type Slug = /**
|
|
7136
|
+
* URL-friendly identifier for the entity schema
|
|
7137
|
+
* example:
|
|
7138
|
+
* contact
|
|
7139
|
+
*/
|
|
7140
|
+
Components.Schemas.EntitySlug;
|
|
7141
|
+
}
|
|
7142
|
+
export interface PathParameters {
|
|
7143
|
+
slug: Parameters.Slug;
|
|
7144
|
+
}
|
|
7145
|
+
export interface QueryParameters {
|
|
7146
|
+
activity_id?: Parameters.ActivityId;
|
|
7147
|
+
dry_run?: Parameters.DryRun;
|
|
7148
|
+
async?: Parameters.Async;
|
|
6830
7149
|
}
|
|
6831
7150
|
export interface RequestBody {
|
|
6832
7151
|
/**
|
|
@@ -6980,7 +7299,7 @@ export interface OperationMethods {
|
|
|
6980
7299
|
* By default gets the latest version of the Schema and to get the specific version of schema pass the id.
|
|
6981
7300
|
*/
|
|
6982
7301
|
'getSchema'(
|
|
6983
|
-
parameters?: Parameters<Paths.GetSchema.QueryParameters> | null,
|
|
7302
|
+
parameters?: Parameters<Paths.GetSchema.PathParameters & Paths.GetSchema.QueryParameters> | null,
|
|
6984
7303
|
data?: any,
|
|
6985
7304
|
config?: AxiosRequestConfig
|
|
6986
7305
|
): OperationResponse<Paths.GetSchema.Responses.$200>
|
|
@@ -6990,7 +7309,7 @@ export interface OperationMethods {
|
|
|
6990
7309
|
* Create or update a schema with a new version
|
|
6991
7310
|
*/
|
|
6992
7311
|
'putSchema'(
|
|
6993
|
-
parameters?: Parameters<Paths.PutSchema.QueryParameters> | null,
|
|
7312
|
+
parameters?: Parameters<Paths.PutSchema.PathParameters & Paths.PutSchema.QueryParameters> | null,
|
|
6994
7313
|
data?: Paths.PutSchema.RequestBody,
|
|
6995
7314
|
config?: AxiosRequestConfig
|
|
6996
7315
|
): OperationResponse<Paths.PutSchema.Responses.$200>
|
|
@@ -7000,7 +7319,7 @@ export interface OperationMethods {
|
|
|
7000
7319
|
* Delete a schema, or a specific version of a schema
|
|
7001
7320
|
*/
|
|
7002
7321
|
'deleteSchema'(
|
|
7003
|
-
parameters?: Parameters<
|
|
7322
|
+
parameters?: Parameters<Paths.DeleteSchema.PathParameters> | null,
|
|
7004
7323
|
data?: any,
|
|
7005
7324
|
config?: AxiosRequestConfig
|
|
7006
7325
|
): OperationResponse<Paths.DeleteSchema.Responses.$204>
|
|
@@ -7010,7 +7329,7 @@ export interface OperationMethods {
|
|
|
7010
7329
|
* Get all versions of this schema ordered by the latest versions including drafts.
|
|
7011
7330
|
*/
|
|
7012
7331
|
'getSchemaVersions'(
|
|
7013
|
-
parameters?: Parameters<Paths.GetSchemaVersions.QueryParameters> | null,
|
|
7332
|
+
parameters?: Parameters<Paths.GetSchemaVersions.PathParameters & Paths.GetSchemaVersions.QueryParameters> | null,
|
|
7014
7333
|
data?: any,
|
|
7015
7334
|
config?: AxiosRequestConfig
|
|
7016
7335
|
): OperationResponse<Paths.GetSchemaVersions.Responses.$200>
|
|
@@ -7030,7 +7349,7 @@ export interface OperationMethods {
|
|
|
7030
7349
|
* List taxonomy classifications for a given schema
|
|
7031
7350
|
*/
|
|
7032
7351
|
'listTaxonomyClassificationsForSchema'(
|
|
7033
|
-
parameters?: Parameters<Paths.ListTaxonomyClassificationsForSchema.QueryParameters> | null,
|
|
7352
|
+
parameters?: Parameters<Paths.ListTaxonomyClassificationsForSchema.PathParameters & Paths.ListTaxonomyClassificationsForSchema.QueryParameters> | null,
|
|
7034
7353
|
data?: any,
|
|
7035
7354
|
config?: AxiosRequestConfig
|
|
7036
7355
|
): OperationResponse<Paths.ListTaxonomyClassificationsForSchema.Responses.$200>
|
|
@@ -7140,7 +7459,7 @@ export interface OperationMethods {
|
|
|
7140
7459
|
*
|
|
7141
7460
|
*/
|
|
7142
7461
|
'createEntity'(
|
|
7143
|
-
parameters?: Parameters<
|
|
7462
|
+
parameters?: Parameters<Paths.CreateEntity.PathParameters & Paths.CreateEntity.QueryParameters> | null,
|
|
7144
7463
|
data?: Paths.CreateEntity.RequestBody,
|
|
7145
7464
|
config?: AxiosRequestConfig
|
|
7146
7465
|
): OperationResponse<Paths.CreateEntity.Responses.$201>
|
|
@@ -7159,7 +7478,7 @@ export interface OperationMethods {
|
|
|
7159
7478
|
*
|
|
7160
7479
|
*/
|
|
7161
7480
|
'upsertEntity'(
|
|
7162
|
-
parameters?: Parameters<
|
|
7481
|
+
parameters?: Parameters<Paths.UpsertEntity.PathParameters & Paths.UpsertEntity.QueryParameters> | null,
|
|
7163
7482
|
data?: Paths.UpsertEntity.RequestBody,
|
|
7164
7483
|
config?: AxiosRequestConfig
|
|
7165
7484
|
): OperationResponse<Paths.UpsertEntity.Responses.$200 | Paths.UpsertEntity.Responses.$201>
|
|
@@ -7232,7 +7551,7 @@ export interface OperationMethods {
|
|
|
7232
7551
|
*
|
|
7233
7552
|
*/
|
|
7234
7553
|
'getEntity'(
|
|
7235
|
-
parameters?: Parameters<
|
|
7554
|
+
parameters?: Parameters<Paths.GetEntity.PathParameters & Paths.GetEntity.QueryParameters> | null,
|
|
7236
7555
|
data?: any,
|
|
7237
7556
|
config?: AxiosRequestConfig
|
|
7238
7557
|
): OperationResponse<Paths.GetEntity.Responses.$200>
|
|
@@ -7267,7 +7586,7 @@ export interface OperationMethods {
|
|
|
7267
7586
|
*
|
|
7268
7587
|
*/
|
|
7269
7588
|
'updateEntity'(
|
|
7270
|
-
parameters?: Parameters<
|
|
7589
|
+
parameters?: Parameters<Paths.UpdateEntity.PathParameters & Paths.UpdateEntity.QueryParameters> | null,
|
|
7271
7590
|
data?: Paths.UpdateEntity.RequestBody,
|
|
7272
7591
|
config?: AxiosRequestConfig
|
|
7273
7592
|
): OperationResponse<Paths.UpdateEntity.Responses.$200>
|
|
@@ -7304,7 +7623,7 @@ export interface OperationMethods {
|
|
|
7304
7623
|
*
|
|
7305
7624
|
*/
|
|
7306
7625
|
'patchEntity'(
|
|
7307
|
-
parameters?: Parameters<
|
|
7626
|
+
parameters?: Parameters<Paths.PatchEntity.PathParameters & Paths.PatchEntity.QueryParameters> | null,
|
|
7308
7627
|
data?: Paths.PatchEntity.RequestBody,
|
|
7309
7628
|
config?: AxiosRequestConfig
|
|
7310
7629
|
): OperationResponse<Paths.PatchEntity.Responses.$200>
|
|
@@ -7319,7 +7638,7 @@ export interface OperationMethods {
|
|
|
7319
7638
|
*
|
|
7320
7639
|
*/
|
|
7321
7640
|
'deleteEntity'(
|
|
7322
|
-
parameters?: Parameters<
|
|
7641
|
+
parameters?: Parameters<Paths.DeleteEntity.PathParameters & Paths.DeleteEntity.QueryParameters> | null,
|
|
7323
7642
|
data?: any,
|
|
7324
7643
|
config?: AxiosRequestConfig
|
|
7325
7644
|
): OperationResponse<Paths.DeleteEntity.Responses.$200>
|
|
@@ -7354,7 +7673,7 @@ export interface OperationMethods {
|
|
|
7354
7673
|
* Get activity by id
|
|
7355
7674
|
*/
|
|
7356
7675
|
'getActivity'(
|
|
7357
|
-
parameters?: Parameters<Paths.GetActivity.QueryParameters> | null,
|
|
7676
|
+
parameters?: Parameters<Paths.GetActivity.PathParameters & Paths.GetActivity.QueryParameters> | null,
|
|
7358
7677
|
data?: any,
|
|
7359
7678
|
config?: AxiosRequestConfig
|
|
7360
7679
|
): OperationResponse<Paths.GetActivity.Responses.$200>
|
|
@@ -7364,7 +7683,7 @@ export interface OperationMethods {
|
|
|
7364
7683
|
* Attach existing activity to entity activity feeds
|
|
7365
7684
|
*/
|
|
7366
7685
|
'attachActivity'(
|
|
7367
|
-
parameters?: Parameters<Paths.AttachActivity.QueryParameters> | null,
|
|
7686
|
+
parameters?: Parameters<Paths.AttachActivity.PathParameters & Paths.AttachActivity.QueryParameters> | null,
|
|
7368
7687
|
data?: any,
|
|
7369
7688
|
config?: AxiosRequestConfig
|
|
7370
7689
|
): OperationResponse<Paths.AttachActivity.Responses.$200>
|
|
@@ -7375,7 +7694,7 @@ export interface OperationMethods {
|
|
|
7375
7694
|
*
|
|
7376
7695
|
*/
|
|
7377
7696
|
'getEntityActivityFeed'(
|
|
7378
|
-
parameters?: Parameters<Paths.GetEntityActivityFeed.QueryParameters> | null,
|
|
7697
|
+
parameters?: Parameters<Paths.GetEntityActivityFeed.PathParameters & Paths.GetEntityActivityFeed.QueryParameters> | null,
|
|
7379
7698
|
data?: any,
|
|
7380
7699
|
config?: AxiosRequestConfig
|
|
7381
7700
|
): OperationResponse<Paths.GetEntityActivityFeed.Responses.$200>
|
|
@@ -7390,7 +7709,7 @@ export interface OperationMethods {
|
|
|
7390
7709
|
*
|
|
7391
7710
|
*/
|
|
7392
7711
|
'getRelations'(
|
|
7393
|
-
parameters?: Parameters<Paths.GetRelations.QueryParameters> | null,
|
|
7712
|
+
parameters?: Parameters<Paths.GetRelations.PathParameters & Paths.GetRelations.QueryParameters> | null,
|
|
7394
7713
|
data?: any,
|
|
7395
7714
|
config?: AxiosRequestConfig
|
|
7396
7715
|
): OperationResponse<Paths.GetRelations.Responses.$200>
|
|
@@ -7400,7 +7719,7 @@ export interface OperationMethods {
|
|
|
7400
7719
|
* Relates one or more entities to parent entity by adding items to a relation attribute
|
|
7401
7720
|
*/
|
|
7402
7721
|
'addRelations'(
|
|
7403
|
-
parameters?: Parameters<
|
|
7722
|
+
parameters?: Parameters<Paths.AddRelations.PathParameters & Paths.AddRelations.QueryParameters> | null,
|
|
7404
7723
|
data?: Paths.AddRelations.RequestBody,
|
|
7405
7724
|
config?: AxiosRequestConfig
|
|
7406
7725
|
): OperationResponse<Paths.AddRelations.Responses.$200>
|
|
@@ -7415,7 +7734,7 @@ export interface OperationMethods {
|
|
|
7415
7734
|
*
|
|
7416
7735
|
*/
|
|
7417
7736
|
'getRelationsV2'(
|
|
7418
|
-
parameters?: Parameters<Paths.GetRelationsV2.QueryParameters> | null,
|
|
7737
|
+
parameters?: Parameters<Paths.GetRelationsV2.PathParameters & Paths.GetRelationsV2.QueryParameters> | null,
|
|
7419
7738
|
data?: any,
|
|
7420
7739
|
config?: AxiosRequestConfig
|
|
7421
7740
|
): OperationResponse<Paths.GetRelationsV2.Responses.$200>
|
|
@@ -7430,7 +7749,7 @@ export interface OperationMethods {
|
|
|
7430
7749
|
*
|
|
7431
7750
|
*/
|
|
7432
7751
|
'getRelationsV3'(
|
|
7433
|
-
parameters?: Parameters<Paths.GetRelationsV3.QueryParameters> | null,
|
|
7752
|
+
parameters?: Parameters<Paths.GetRelationsV3.PathParameters & Paths.GetRelationsV3.QueryParameters> | null,
|
|
7434
7753
|
data?: any,
|
|
7435
7754
|
config?: AxiosRequestConfig
|
|
7436
7755
|
): OperationResponse<Paths.GetRelationsV3.Responses.$200>
|
|
@@ -7441,7 +7760,7 @@ export interface OperationMethods {
|
|
|
7441
7760
|
*
|
|
7442
7761
|
*/
|
|
7443
7762
|
'getRelatedEntitiesCount'(
|
|
7444
|
-
parameters?: Parameters<
|
|
7763
|
+
parameters?: Parameters<Paths.GetRelatedEntitiesCount.PathParameters & Paths.GetRelatedEntitiesCount.QueryParameters> | null,
|
|
7445
7764
|
data?: any,
|
|
7446
7765
|
config?: AxiosRequestConfig
|
|
7447
7766
|
): OperationResponse<Paths.GetRelatedEntitiesCount.Responses.$200>
|
|
@@ -7451,7 +7770,7 @@ export interface OperationMethods {
|
|
|
7451
7770
|
* Updates an existing relation between two entities.
|
|
7452
7771
|
*/
|
|
7453
7772
|
'updateRelation'(
|
|
7454
|
-
parameters?: Parameters<Paths.UpdateRelation.PathParameters> | null,
|
|
7773
|
+
parameters?: Parameters<Paths.UpdateRelation.PathParameters & Paths.UpdateRelation.QueryParameters> | null,
|
|
7455
7774
|
data?: Paths.UpdateRelation.RequestBody,
|
|
7456
7775
|
config?: AxiosRequestConfig
|
|
7457
7776
|
): OperationResponse<Paths.UpdateRelation.Responses.$200>
|
|
@@ -7461,7 +7780,7 @@ export interface OperationMethods {
|
|
|
7461
7780
|
* Removes relation between two entities
|
|
7462
7781
|
*/
|
|
7463
7782
|
'deleteRelation'(
|
|
7464
|
-
parameters?: Parameters<Paths.DeleteRelation.PathParameters> | null,
|
|
7783
|
+
parameters?: Parameters<Paths.DeleteRelation.PathParameters & Paths.DeleteRelation.QueryParameters> | null,
|
|
7465
7784
|
data?: any,
|
|
7466
7785
|
config?: AxiosRequestConfig
|
|
7467
7786
|
): OperationResponse<Paths.DeleteRelation.Responses.$204>
|
|
@@ -7514,7 +7833,7 @@ export interface OperationMethods {
|
|
|
7514
7833
|
* Gets Saved View configuration by id.
|
|
7515
7834
|
*/
|
|
7516
7835
|
'getSavedView'(
|
|
7517
|
-
parameters?: Parameters<
|
|
7836
|
+
parameters?: Parameters<Paths.GetSavedView.PathParameters> | null,
|
|
7518
7837
|
data?: any,
|
|
7519
7838
|
config?: AxiosRequestConfig
|
|
7520
7839
|
): OperationResponse<Paths.GetSavedView.Responses.$200>
|
|
@@ -7524,7 +7843,7 @@ export interface OperationMethods {
|
|
|
7524
7843
|
* Updates a saved view
|
|
7525
7844
|
*/
|
|
7526
7845
|
'updateSavedView'(
|
|
7527
|
-
parameters?: Parameters<
|
|
7846
|
+
parameters?: Parameters<Paths.UpdateSavedView.PathParameters> | null,
|
|
7528
7847
|
data?: Paths.UpdateSavedView.RequestBody,
|
|
7529
7848
|
config?: AxiosRequestConfig
|
|
7530
7849
|
): OperationResponse<Paths.UpdateSavedView.Responses.$200>
|
|
@@ -7534,7 +7853,7 @@ export interface OperationMethods {
|
|
|
7534
7853
|
* Deletes a saved view
|
|
7535
7854
|
*/
|
|
7536
7855
|
'deleteSavedView'(
|
|
7537
|
-
parameters?: Parameters<
|
|
7856
|
+
parameters?: Parameters<Paths.DeleteSavedView.PathParameters> | null,
|
|
7538
7857
|
data?: any,
|
|
7539
7858
|
config?: AxiosRequestConfig
|
|
7540
7859
|
): OperationResponse<Paths.DeleteSavedView.Responses.$200>
|
|
@@ -7564,7 +7883,7 @@ export interface OperationMethods {
|
|
|
7564
7883
|
* Get taxonomy by slug
|
|
7565
7884
|
*/
|
|
7566
7885
|
'getTaxonomy'(
|
|
7567
|
-
parameters?: Parameters<
|
|
7886
|
+
parameters?: Parameters<Paths.GetTaxonomy.PathParameters> | null,
|
|
7568
7887
|
data?: any,
|
|
7569
7888
|
config?: AxiosRequestConfig
|
|
7570
7889
|
): OperationResponse<Paths.GetTaxonomy.Responses.$200>
|
|
@@ -7574,7 +7893,7 @@ export interface OperationMethods {
|
|
|
7574
7893
|
* Taxonomies autocomplete
|
|
7575
7894
|
*/
|
|
7576
7895
|
'taxonomyAutocomplete'(
|
|
7577
|
-
parameters?: Parameters<Paths.TaxonomyAutocomplete.QueryParameters> | null,
|
|
7896
|
+
parameters?: Parameters<Paths.TaxonomyAutocomplete.PathParameters & Paths.TaxonomyAutocomplete.QueryParameters> | null,
|
|
7578
7897
|
data?: any,
|
|
7579
7898
|
config?: AxiosRequestConfig
|
|
7580
7899
|
): OperationResponse<Paths.TaxonomyAutocomplete.Responses.$200>
|
|
@@ -7584,7 +7903,7 @@ export interface OperationMethods {
|
|
|
7584
7903
|
* List taxonomy classifications in an organisation based on taxonomy slug
|
|
7585
7904
|
*/
|
|
7586
7905
|
'taxonomiesClassificationsSearch'(
|
|
7587
|
-
parameters?: Parameters<
|
|
7906
|
+
parameters?: Parameters<Paths.TaxonomiesClassificationsSearch.QueryParameters> | null,
|
|
7588
7907
|
data?: Paths.TaxonomiesClassificationsSearch.RequestBody,
|
|
7589
7908
|
config?: AxiosRequestConfig
|
|
7590
7909
|
): OperationResponse<Paths.TaxonomiesClassificationsSearch.Responses.$200>
|
|
@@ -7594,7 +7913,7 @@ export interface OperationMethods {
|
|
|
7594
7913
|
* Update taxonomies in an organisation based in taxonomy slug
|
|
7595
7914
|
*/
|
|
7596
7915
|
'updateClassificationsForTaxonomy'(
|
|
7597
|
-
parameters?: Parameters<
|
|
7916
|
+
parameters?: Parameters<Paths.UpdateClassificationsForTaxonomy.PathParameters> | null,
|
|
7598
7917
|
data?: Paths.UpdateClassificationsForTaxonomy.RequestBody,
|
|
7599
7918
|
config?: AxiosRequestConfig
|
|
7600
7919
|
): OperationResponse<Paths.UpdateClassificationsForTaxonomy.Responses.$200>
|
|
@@ -7620,7 +7939,7 @@ export interface PathsDictionary {
|
|
|
7620
7939
|
* By default gets the latest version of the Schema and to get the specific version of schema pass the id.
|
|
7621
7940
|
*/
|
|
7622
7941
|
'get'(
|
|
7623
|
-
parameters?: Parameters<Paths.GetSchema.QueryParameters> | null,
|
|
7942
|
+
parameters?: Parameters<Paths.GetSchema.PathParameters & Paths.GetSchema.QueryParameters> | null,
|
|
7624
7943
|
data?: any,
|
|
7625
7944
|
config?: AxiosRequestConfig
|
|
7626
7945
|
): OperationResponse<Paths.GetSchema.Responses.$200>
|
|
@@ -7630,7 +7949,7 @@ export interface PathsDictionary {
|
|
|
7630
7949
|
* Create or update a schema with a new version
|
|
7631
7950
|
*/
|
|
7632
7951
|
'put'(
|
|
7633
|
-
parameters?: Parameters<Paths.PutSchema.QueryParameters> | null,
|
|
7952
|
+
parameters?: Parameters<Paths.PutSchema.PathParameters & Paths.PutSchema.QueryParameters> | null,
|
|
7634
7953
|
data?: Paths.PutSchema.RequestBody,
|
|
7635
7954
|
config?: AxiosRequestConfig
|
|
7636
7955
|
): OperationResponse<Paths.PutSchema.Responses.$200>
|
|
@@ -7640,7 +7959,7 @@ export interface PathsDictionary {
|
|
|
7640
7959
|
* Delete a schema, or a specific version of a schema
|
|
7641
7960
|
*/
|
|
7642
7961
|
'delete'(
|
|
7643
|
-
parameters?: Parameters<
|
|
7962
|
+
parameters?: Parameters<Paths.DeleteSchema.PathParameters> | null,
|
|
7644
7963
|
data?: any,
|
|
7645
7964
|
config?: AxiosRequestConfig
|
|
7646
7965
|
): OperationResponse<Paths.DeleteSchema.Responses.$204>
|
|
@@ -7652,7 +7971,7 @@ export interface PathsDictionary {
|
|
|
7652
7971
|
* Get all versions of this schema ordered by the latest versions including drafts.
|
|
7653
7972
|
*/
|
|
7654
7973
|
'get'(
|
|
7655
|
-
parameters?: Parameters<Paths.GetSchemaVersions.QueryParameters> | null,
|
|
7974
|
+
parameters?: Parameters<Paths.GetSchemaVersions.PathParameters & Paths.GetSchemaVersions.QueryParameters> | null,
|
|
7656
7975
|
data?: any,
|
|
7657
7976
|
config?: AxiosRequestConfig
|
|
7658
7977
|
): OperationResponse<Paths.GetSchemaVersions.Responses.$200>
|
|
@@ -7676,7 +7995,7 @@ export interface PathsDictionary {
|
|
|
7676
7995
|
* List taxonomy classifications for a given schema
|
|
7677
7996
|
*/
|
|
7678
7997
|
'get'(
|
|
7679
|
-
parameters?: Parameters<Paths.ListTaxonomyClassificationsForSchema.QueryParameters> | null,
|
|
7998
|
+
parameters?: Parameters<Paths.ListTaxonomyClassificationsForSchema.PathParameters & Paths.ListTaxonomyClassificationsForSchema.QueryParameters> | null,
|
|
7680
7999
|
data?: any,
|
|
7681
8000
|
config?: AxiosRequestConfig
|
|
7682
8001
|
): OperationResponse<Paths.ListTaxonomyClassificationsForSchema.Responses.$200>
|
|
@@ -7790,7 +8109,7 @@ export interface PathsDictionary {
|
|
|
7790
8109
|
*
|
|
7791
8110
|
*/
|
|
7792
8111
|
'post'(
|
|
7793
|
-
parameters?: Parameters<
|
|
8112
|
+
parameters?: Parameters<Paths.CreateEntity.PathParameters & Paths.CreateEntity.QueryParameters> | null,
|
|
7794
8113
|
data?: Paths.CreateEntity.RequestBody,
|
|
7795
8114
|
config?: AxiosRequestConfig
|
|
7796
8115
|
): OperationResponse<Paths.CreateEntity.Responses.$201>
|
|
@@ -7811,7 +8130,7 @@ export interface PathsDictionary {
|
|
|
7811
8130
|
*
|
|
7812
8131
|
*/
|
|
7813
8132
|
'patch'(
|
|
7814
|
-
parameters?: Parameters<
|
|
8133
|
+
parameters?: Parameters<Paths.UpsertEntity.PathParameters & Paths.UpsertEntity.QueryParameters> | null,
|
|
7815
8134
|
data?: Paths.UpsertEntity.RequestBody,
|
|
7816
8135
|
config?: AxiosRequestConfig
|
|
7817
8136
|
): OperationResponse<Paths.UpsertEntity.Responses.$200 | Paths.UpsertEntity.Responses.$201>
|
|
@@ -7886,7 +8205,7 @@ export interface PathsDictionary {
|
|
|
7886
8205
|
*
|
|
7887
8206
|
*/
|
|
7888
8207
|
'get'(
|
|
7889
|
-
parameters?: Parameters<
|
|
8208
|
+
parameters?: Parameters<Paths.GetEntity.PathParameters & Paths.GetEntity.QueryParameters> | null,
|
|
7890
8209
|
data?: any,
|
|
7891
8210
|
config?: AxiosRequestConfig
|
|
7892
8211
|
): OperationResponse<Paths.GetEntity.Responses.$200>
|
|
@@ -7921,7 +8240,7 @@ export interface PathsDictionary {
|
|
|
7921
8240
|
*
|
|
7922
8241
|
*/
|
|
7923
8242
|
'put'(
|
|
7924
|
-
parameters?: Parameters<
|
|
8243
|
+
parameters?: Parameters<Paths.UpdateEntity.PathParameters & Paths.UpdateEntity.QueryParameters> | null,
|
|
7925
8244
|
data?: Paths.UpdateEntity.RequestBody,
|
|
7926
8245
|
config?: AxiosRequestConfig
|
|
7927
8246
|
): OperationResponse<Paths.UpdateEntity.Responses.$200>
|
|
@@ -7958,7 +8277,7 @@ export interface PathsDictionary {
|
|
|
7958
8277
|
*
|
|
7959
8278
|
*/
|
|
7960
8279
|
'patch'(
|
|
7961
|
-
parameters?: Parameters<
|
|
8280
|
+
parameters?: Parameters<Paths.PatchEntity.PathParameters & Paths.PatchEntity.QueryParameters> | null,
|
|
7962
8281
|
data?: Paths.PatchEntity.RequestBody,
|
|
7963
8282
|
config?: AxiosRequestConfig
|
|
7964
8283
|
): OperationResponse<Paths.PatchEntity.Responses.$200>
|
|
@@ -7973,7 +8292,7 @@ export interface PathsDictionary {
|
|
|
7973
8292
|
*
|
|
7974
8293
|
*/
|
|
7975
8294
|
'delete'(
|
|
7976
|
-
parameters?: Parameters<
|
|
8295
|
+
parameters?: Parameters<Paths.DeleteEntity.PathParameters & Paths.DeleteEntity.QueryParameters> | null,
|
|
7977
8296
|
data?: any,
|
|
7978
8297
|
config?: AxiosRequestConfig
|
|
7979
8298
|
): OperationResponse<Paths.DeleteEntity.Responses.$200>
|
|
@@ -8014,7 +8333,7 @@ export interface PathsDictionary {
|
|
|
8014
8333
|
* Get activity by id
|
|
8015
8334
|
*/
|
|
8016
8335
|
'get'(
|
|
8017
|
-
parameters?: Parameters<Paths.GetActivity.QueryParameters> | null,
|
|
8336
|
+
parameters?: Parameters<Paths.GetActivity.PathParameters & Paths.GetActivity.QueryParameters> | null,
|
|
8018
8337
|
data?: any,
|
|
8019
8338
|
config?: AxiosRequestConfig
|
|
8020
8339
|
): OperationResponse<Paths.GetActivity.Responses.$200>
|
|
@@ -8026,7 +8345,7 @@ export interface PathsDictionary {
|
|
|
8026
8345
|
* Attach existing activity to entity activity feeds
|
|
8027
8346
|
*/
|
|
8028
8347
|
'post'(
|
|
8029
|
-
parameters?: Parameters<Paths.AttachActivity.QueryParameters> | null,
|
|
8348
|
+
parameters?: Parameters<Paths.AttachActivity.PathParameters & Paths.AttachActivity.QueryParameters> | null,
|
|
8030
8349
|
data?: any,
|
|
8031
8350
|
config?: AxiosRequestConfig
|
|
8032
8351
|
): OperationResponse<Paths.AttachActivity.Responses.$200>
|
|
@@ -8039,7 +8358,7 @@ export interface PathsDictionary {
|
|
|
8039
8358
|
*
|
|
8040
8359
|
*/
|
|
8041
8360
|
'get'(
|
|
8042
|
-
parameters?: Parameters<Paths.GetEntityActivityFeed.QueryParameters> | null,
|
|
8361
|
+
parameters?: Parameters<Paths.GetEntityActivityFeed.PathParameters & Paths.GetEntityActivityFeed.QueryParameters> | null,
|
|
8043
8362
|
data?: any,
|
|
8044
8363
|
config?: AxiosRequestConfig
|
|
8045
8364
|
): OperationResponse<Paths.GetEntityActivityFeed.Responses.$200>
|
|
@@ -8056,7 +8375,7 @@ export interface PathsDictionary {
|
|
|
8056
8375
|
*
|
|
8057
8376
|
*/
|
|
8058
8377
|
'get'(
|
|
8059
|
-
parameters?: Parameters<Paths.GetRelations.QueryParameters> | null,
|
|
8378
|
+
parameters?: Parameters<Paths.GetRelations.PathParameters & Paths.GetRelations.QueryParameters> | null,
|
|
8060
8379
|
data?: any,
|
|
8061
8380
|
config?: AxiosRequestConfig
|
|
8062
8381
|
): OperationResponse<Paths.GetRelations.Responses.$200>
|
|
@@ -8066,7 +8385,7 @@ export interface PathsDictionary {
|
|
|
8066
8385
|
* Relates one or more entities to parent entity by adding items to a relation attribute
|
|
8067
8386
|
*/
|
|
8068
8387
|
'post'(
|
|
8069
|
-
parameters?: Parameters<
|
|
8388
|
+
parameters?: Parameters<Paths.AddRelations.PathParameters & Paths.AddRelations.QueryParameters> | null,
|
|
8070
8389
|
data?: Paths.AddRelations.RequestBody,
|
|
8071
8390
|
config?: AxiosRequestConfig
|
|
8072
8391
|
): OperationResponse<Paths.AddRelations.Responses.$200>
|
|
@@ -8083,7 +8402,7 @@ export interface PathsDictionary {
|
|
|
8083
8402
|
*
|
|
8084
8403
|
*/
|
|
8085
8404
|
'get'(
|
|
8086
|
-
parameters?: Parameters<Paths.GetRelationsV2.QueryParameters> | null,
|
|
8405
|
+
parameters?: Parameters<Paths.GetRelationsV2.PathParameters & Paths.GetRelationsV2.QueryParameters> | null,
|
|
8087
8406
|
data?: any,
|
|
8088
8407
|
config?: AxiosRequestConfig
|
|
8089
8408
|
): OperationResponse<Paths.GetRelationsV2.Responses.$200>
|
|
@@ -8100,7 +8419,7 @@ export interface PathsDictionary {
|
|
|
8100
8419
|
*
|
|
8101
8420
|
*/
|
|
8102
8421
|
'get'(
|
|
8103
|
-
parameters?: Parameters<Paths.GetRelationsV3.QueryParameters> | null,
|
|
8422
|
+
parameters?: Parameters<Paths.GetRelationsV3.PathParameters & Paths.GetRelationsV3.QueryParameters> | null,
|
|
8104
8423
|
data?: any,
|
|
8105
8424
|
config?: AxiosRequestConfig
|
|
8106
8425
|
): OperationResponse<Paths.GetRelationsV3.Responses.$200>
|
|
@@ -8113,7 +8432,7 @@ export interface PathsDictionary {
|
|
|
8113
8432
|
*
|
|
8114
8433
|
*/
|
|
8115
8434
|
'get'(
|
|
8116
|
-
parameters?: Parameters<
|
|
8435
|
+
parameters?: Parameters<Paths.GetRelatedEntitiesCount.PathParameters & Paths.GetRelatedEntitiesCount.QueryParameters> | null,
|
|
8117
8436
|
data?: any,
|
|
8118
8437
|
config?: AxiosRequestConfig
|
|
8119
8438
|
): OperationResponse<Paths.GetRelatedEntitiesCount.Responses.$200>
|
|
@@ -8125,7 +8444,7 @@ export interface PathsDictionary {
|
|
|
8125
8444
|
* Updates an existing relation between two entities.
|
|
8126
8445
|
*/
|
|
8127
8446
|
'put'(
|
|
8128
|
-
parameters?: Parameters<Paths.UpdateRelation.PathParameters> | null,
|
|
8447
|
+
parameters?: Parameters<Paths.UpdateRelation.PathParameters & Paths.UpdateRelation.QueryParameters> | null,
|
|
8129
8448
|
data?: Paths.UpdateRelation.RequestBody,
|
|
8130
8449
|
config?: AxiosRequestConfig
|
|
8131
8450
|
): OperationResponse<Paths.UpdateRelation.Responses.$200>
|
|
@@ -8135,7 +8454,7 @@ export interface PathsDictionary {
|
|
|
8135
8454
|
* Removes relation between two entities
|
|
8136
8455
|
*/
|
|
8137
8456
|
'delete'(
|
|
8138
|
-
parameters?: Parameters<Paths.DeleteRelation.PathParameters> | null,
|
|
8457
|
+
parameters?: Parameters<Paths.DeleteRelation.PathParameters & Paths.DeleteRelation.QueryParameters> | null,
|
|
8139
8458
|
data?: any,
|
|
8140
8459
|
config?: AxiosRequestConfig
|
|
8141
8460
|
): OperationResponse<Paths.DeleteRelation.Responses.$204>
|
|
@@ -8198,7 +8517,7 @@ export interface PathsDictionary {
|
|
|
8198
8517
|
* Gets Saved View configuration by id.
|
|
8199
8518
|
*/
|
|
8200
8519
|
'get'(
|
|
8201
|
-
parameters?: Parameters<
|
|
8520
|
+
parameters?: Parameters<Paths.GetSavedView.PathParameters> | null,
|
|
8202
8521
|
data?: any,
|
|
8203
8522
|
config?: AxiosRequestConfig
|
|
8204
8523
|
): OperationResponse<Paths.GetSavedView.Responses.$200>
|
|
@@ -8208,7 +8527,7 @@ export interface PathsDictionary {
|
|
|
8208
8527
|
* Updates a saved view
|
|
8209
8528
|
*/
|
|
8210
8529
|
'put'(
|
|
8211
|
-
parameters?: Parameters<
|
|
8530
|
+
parameters?: Parameters<Paths.UpdateSavedView.PathParameters> | null,
|
|
8212
8531
|
data?: Paths.UpdateSavedView.RequestBody,
|
|
8213
8532
|
config?: AxiosRequestConfig
|
|
8214
8533
|
): OperationResponse<Paths.UpdateSavedView.Responses.$200>
|
|
@@ -8218,7 +8537,7 @@ export interface PathsDictionary {
|
|
|
8218
8537
|
* Deletes a saved view
|
|
8219
8538
|
*/
|
|
8220
8539
|
'delete'(
|
|
8221
|
-
parameters?: Parameters<
|
|
8540
|
+
parameters?: Parameters<Paths.DeleteSavedView.PathParameters> | null,
|
|
8222
8541
|
data?: any,
|
|
8223
8542
|
config?: AxiosRequestConfig
|
|
8224
8543
|
): OperationResponse<Paths.DeleteSavedView.Responses.$200>
|
|
@@ -8254,7 +8573,7 @@ export interface PathsDictionary {
|
|
|
8254
8573
|
* Get taxonomy by slug
|
|
8255
8574
|
*/
|
|
8256
8575
|
'get'(
|
|
8257
|
-
parameters?: Parameters<
|
|
8576
|
+
parameters?: Parameters<Paths.GetTaxonomy.PathParameters> | null,
|
|
8258
8577
|
data?: any,
|
|
8259
8578
|
config?: AxiosRequestConfig
|
|
8260
8579
|
): OperationResponse<Paths.GetTaxonomy.Responses.$200>
|
|
@@ -8266,7 +8585,7 @@ export interface PathsDictionary {
|
|
|
8266
8585
|
* Taxonomies autocomplete
|
|
8267
8586
|
*/
|
|
8268
8587
|
'get'(
|
|
8269
|
-
parameters?: Parameters<Paths.TaxonomyAutocomplete.QueryParameters> | null,
|
|
8588
|
+
parameters?: Parameters<Paths.TaxonomyAutocomplete.PathParameters & Paths.TaxonomyAutocomplete.QueryParameters> | null,
|
|
8270
8589
|
data?: any,
|
|
8271
8590
|
config?: AxiosRequestConfig
|
|
8272
8591
|
): OperationResponse<Paths.TaxonomyAutocomplete.Responses.$200>
|
|
@@ -8278,7 +8597,7 @@ export interface PathsDictionary {
|
|
|
8278
8597
|
* List taxonomy classifications in an organisation based on taxonomy slug
|
|
8279
8598
|
*/
|
|
8280
8599
|
'post'(
|
|
8281
|
-
parameters?: Parameters<
|
|
8600
|
+
parameters?: Parameters<Paths.TaxonomiesClassificationsSearch.QueryParameters> | null,
|
|
8282
8601
|
data?: Paths.TaxonomiesClassificationsSearch.RequestBody,
|
|
8283
8602
|
config?: AxiosRequestConfig
|
|
8284
8603
|
): OperationResponse<Paths.TaxonomiesClassificationsSearch.Responses.$200>
|
|
@@ -8290,7 +8609,7 @@ export interface PathsDictionary {
|
|
|
8290
8609
|
* Update taxonomies in an organisation based in taxonomy slug
|
|
8291
8610
|
*/
|
|
8292
8611
|
'post'(
|
|
8293
|
-
parameters?: Parameters<
|
|
8612
|
+
parameters?: Parameters<Paths.UpdateClassificationsForTaxonomy.PathParameters> | null,
|
|
8294
8613
|
data?: Paths.UpdateClassificationsForTaxonomy.RequestBody,
|
|
8295
8614
|
config?: AxiosRequestConfig
|
|
8296
8615
|
): OperationResponse<Paths.UpdateClassificationsForTaxonomy.Responses.$200>
|