@epilot/entity-client 4.17.0 → 4.18.1-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/openapi.d.ts CHANGED
@@ -8,65 +8,6 @@ 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
- }
70
11
  namespace Schemas {
71
12
  export interface Activity {
72
13
  /**
@@ -5958,10 +5899,28 @@ declare namespace Components {
5958
5899
  declare namespace Paths {
5959
5900
  namespace AddRelations {
5960
5901
  namespace Parameters {
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;
5902
+ export type ActivityId = /**
5903
+ * See https://github.com/ulid/spec
5904
+ * example:
5905
+ * 01F130Q52Q6MWSNS8N2AVXV4JN
5906
+ */
5907
+ Components.Schemas.ActivityId /* ulid */;
5908
+ export type Async = boolean;
5909
+ export type Id = Components.Schemas.EntityId /* uuid */;
5910
+ export type Slug = /**
5911
+ * URL-friendly identifier for the entity schema
5912
+ * example:
5913
+ * contact
5914
+ */
5915
+ Components.Schemas.EntitySlug;
5916
+ }
5917
+ export interface PathParameters {
5918
+ slug: Parameters.Slug;
5919
+ id: Parameters.Id;
5920
+ }
5921
+ export interface QueryParameters {
5922
+ async?: Parameters.Async;
5923
+ activity_id?: Parameters.ActivityId;
5965
5924
  }
5966
5925
  export type RequestBody = Components.Schemas.RelationItem[];
5967
5926
  namespace Responses {
@@ -5970,8 +5929,16 @@ declare namespace Paths {
5970
5929
  }
5971
5930
  namespace AttachActivity {
5972
5931
  namespace Parameters {
5973
- export type $0 = Components.Parameters.ActivityIdPathParam;
5974
5932
  export type Entities = Components.Schemas.EntityId /* uuid */[];
5933
+ export type Id = /**
5934
+ * See https://github.com/ulid/spec
5935
+ * example:
5936
+ * 01F130Q52Q6MWSNS8N2AVXV4JN
5937
+ */
5938
+ Components.Schemas.ActivityId /* ulid */;
5939
+ }
5940
+ export interface PathParameters {
5941
+ id: Parameters.Id;
5975
5942
  }
5976
5943
  export interface QueryParameters {
5977
5944
  entities?: Parameters.Entities;
@@ -6039,9 +6006,26 @@ declare namespace Paths {
6039
6006
  }
6040
6007
  namespace CreateEntity {
6041
6008
  namespace Parameters {
6042
- export type $0 = Components.Parameters.EntitySlugPathParam;
6043
- export type $1 = Components.Parameters.ActivityIdQueryParam;
6044
- export type $2 = Components.Parameters.AsyncOperationQueryParam;
6009
+ export type ActivityId = /**
6010
+ * See https://github.com/ulid/spec
6011
+ * example:
6012
+ * 01F130Q52Q6MWSNS8N2AVXV4JN
6013
+ */
6014
+ Components.Schemas.ActivityId /* ulid */;
6015
+ export type Async = boolean;
6016
+ export type Slug = /**
6017
+ * URL-friendly identifier for the entity schema
6018
+ * example:
6019
+ * contact
6020
+ */
6021
+ Components.Schemas.EntitySlug;
6022
+ }
6023
+ export interface PathParameters {
6024
+ slug: Parameters.Slug;
6025
+ }
6026
+ export interface QueryParameters {
6027
+ activity_id?: Parameters.ActivityId;
6028
+ async?: Parameters.Async;
6045
6029
  }
6046
6030
  export type RequestBody = /**
6047
6031
  * example:
@@ -6130,9 +6114,26 @@ declare namespace Paths {
6130
6114
  }
6131
6115
  namespace DeleteEntity {
6132
6116
  namespace Parameters {
6133
- export type $0 = Components.Parameters.EntitySlugPathParam;
6134
- export type $1 = Components.Parameters.EntityIdPathParam;
6135
- export type $2 = Components.Parameters.ActivityIdQueryParam;
6117
+ export type ActivityId = /**
6118
+ * See https://github.com/ulid/spec
6119
+ * example:
6120
+ * 01F130Q52Q6MWSNS8N2AVXV4JN
6121
+ */
6122
+ Components.Schemas.ActivityId /* ulid */;
6123
+ export type Id = Components.Schemas.EntityId /* uuid */;
6124
+ export type Slug = /**
6125
+ * URL-friendly identifier for the entity schema
6126
+ * example:
6127
+ * contact
6128
+ */
6129
+ Components.Schemas.EntitySlug;
6130
+ }
6131
+ export interface PathParameters {
6132
+ slug: Parameters.Slug;
6133
+ id: Parameters.Id;
6134
+ }
6135
+ export interface QueryParameters {
6136
+ activity_id?: Parameters.ActivityId;
6136
6137
  }
6137
6138
  namespace Responses {
6138
6139
  export interface $200 {
@@ -6141,17 +6142,33 @@ declare namespace Paths {
6141
6142
  }
6142
6143
  namespace DeleteRelation {
6143
6144
  namespace Parameters {
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;
6145
+ export type ActivityId = /**
6146
+ * See https://github.com/ulid/spec
6147
+ * example:
6148
+ * 01F130Q52Q6MWSNS8N2AVXV4JN
6149
+ */
6150
+ Components.Schemas.ActivityId /* ulid */;
6151
+ export type Async = boolean;
6148
6152
  export type Attribute = string;
6149
6153
  export type EntityId = string;
6154
+ export type Id = Components.Schemas.EntityId /* uuid */;
6155
+ export type Slug = /**
6156
+ * URL-friendly identifier for the entity schema
6157
+ * example:
6158
+ * contact
6159
+ */
6160
+ Components.Schemas.EntitySlug;
6150
6161
  }
6151
6162
  export interface PathParameters {
6163
+ slug: Parameters.Slug;
6164
+ id: Parameters.Id;
6152
6165
  attribute: Parameters.Attribute;
6153
6166
  entity_id: Parameters.EntityId;
6154
6167
  }
6168
+ export interface QueryParameters {
6169
+ async?: Parameters.Async;
6170
+ activity_id?: Parameters.ActivityId;
6171
+ }
6155
6172
  namespace Responses {
6156
6173
  export interface $204 {
6157
6174
  }
@@ -6159,7 +6176,10 @@ declare namespace Paths {
6159
6176
  }
6160
6177
  namespace DeleteSavedView {
6161
6178
  namespace Parameters {
6162
- export type $0 = Components.Parameters.SavedViewIdPathParam;
6179
+ export type Id = /* Generated uuid for a saved view */ Components.Schemas.SavedViewId /* uuid */;
6180
+ }
6181
+ export interface PathParameters {
6182
+ id: Parameters.Id;
6163
6183
  }
6164
6184
  namespace Responses {
6165
6185
  export interface $200 {
@@ -6168,7 +6188,15 @@ declare namespace Paths {
6168
6188
  }
6169
6189
  namespace DeleteSchema {
6170
6190
  namespace Parameters {
6171
- export type $0 = Components.Parameters.EntitySlugPathParam;
6191
+ export type Slug = /**
6192
+ * URL-friendly identifier for the entity schema
6193
+ * example:
6194
+ * contact
6195
+ */
6196
+ Components.Schemas.EntitySlug;
6197
+ }
6198
+ export interface PathParameters {
6199
+ slug: Parameters.Slug;
6172
6200
  }
6173
6201
  namespace Responses {
6174
6202
  export interface $204 {
@@ -6199,10 +6227,18 @@ declare namespace Paths {
6199
6227
  }
6200
6228
  namespace GetActivity {
6201
6229
  namespace Parameters {
6202
- export type $0 = Components.Parameters.ActivityIdPathParam;
6230
+ export type Id = /**
6231
+ * See https://github.com/ulid/spec
6232
+ * example:
6233
+ * 01F130Q52Q6MWSNS8N2AVXV4JN
6234
+ */
6235
+ Components.Schemas.ActivityId /* ulid */;
6203
6236
  export type OperationsFrom = number;
6204
6237
  export type OperationsSize = number;
6205
6238
  }
6239
+ export interface PathParameters {
6240
+ id: Parameters.Id;
6241
+ }
6206
6242
  export interface QueryParameters {
6207
6243
  operations_size?: Parameters.OperationsSize;
6208
6244
  operations_from?: Parameters.OperationsFrom;
@@ -6213,9 +6249,21 @@ declare namespace Paths {
6213
6249
  }
6214
6250
  namespace GetEntity {
6215
6251
  namespace Parameters {
6216
- export type $0 = Components.Parameters.EntityIdPathParam;
6217
- export type $1 = Components.Parameters.EntitySlugPathParam;
6218
- export type $2 = Components.Parameters.HydrateEntitiesQueryParam;
6252
+ export type Hydrate = boolean;
6253
+ export type Id = Components.Schemas.EntityId /* uuid */;
6254
+ export type Slug = /**
6255
+ * URL-friendly identifier for the entity schema
6256
+ * example:
6257
+ * contact
6258
+ */
6259
+ Components.Schemas.EntitySlug;
6260
+ }
6261
+ export interface PathParameters {
6262
+ slug: Parameters.Slug;
6263
+ id: Parameters.Id;
6264
+ }
6265
+ export interface QueryParameters {
6266
+ hydrate?: Parameters.Hydrate;
6219
6267
  }
6220
6268
  namespace Responses {
6221
6269
  export interface $200 {
@@ -6310,22 +6358,32 @@ declare namespace Paths {
6310
6358
  }
6311
6359
  namespace GetEntityActivityFeed {
6312
6360
  namespace Parameters {
6313
- export type $0 = Components.Parameters.EntitySlugPathParam;
6314
- export type $1 = Components.Parameters.EntityIdPathParam;
6315
- export type $4 = Components.Parameters.FromPageQueryParam;
6316
6361
  export type After = string; // date-time
6317
6362
  export type Before = string; // date-time
6363
+ export type From = number;
6364
+ export type Id = Components.Schemas.EntityId /* uuid */;
6318
6365
  export type IncludeRelations = boolean;
6319
6366
  export type Size = number;
6367
+ export type Slug = /**
6368
+ * URL-friendly identifier for the entity schema
6369
+ * example:
6370
+ * contact
6371
+ */
6372
+ Components.Schemas.EntitySlug;
6320
6373
  /**
6321
6374
  * example:
6322
6375
  * SyncActivity
6323
6376
  */
6324
6377
  export type Type = string;
6325
6378
  }
6379
+ export interface PathParameters {
6380
+ slug: Parameters.Slug;
6381
+ id: Parameters.Id;
6382
+ }
6326
6383
  export interface QueryParameters {
6327
6384
  after?: Parameters.After /* date-time */;
6328
6385
  before?: Parameters.Before /* date-time */;
6386
+ from?: Parameters.From;
6329
6387
  size?: Parameters.Size;
6330
6388
  type?: /**
6331
6389
  * example:
@@ -6347,9 +6405,21 @@ declare namespace Paths {
6347
6405
  }
6348
6406
  namespace GetRelatedEntitiesCount {
6349
6407
  namespace Parameters {
6350
- export type $0 = Components.Parameters.EntitySlugPathParam;
6351
- export type $1 = Components.Parameters.EntityIdPathParam;
6352
- export type $2 = Components.Parameters.ExcludeSchemasQueryParam;
6408
+ export type ExcludeSchemas = string[];
6409
+ export type Id = Components.Schemas.EntityId /* uuid */;
6410
+ export type Slug = /**
6411
+ * URL-friendly identifier for the entity schema
6412
+ * example:
6413
+ * contact
6414
+ */
6415
+ Components.Schemas.EntitySlug;
6416
+ }
6417
+ export interface PathParameters {
6418
+ slug: Parameters.Slug;
6419
+ id: Parameters.Id;
6420
+ }
6421
+ export interface QueryParameters {
6422
+ exclude_schemas?: Parameters.ExcludeSchemas;
6353
6423
  }
6354
6424
  namespace Responses {
6355
6425
  export type $200 = Components.Schemas.GetRelatedEntitiesCount;
@@ -6357,17 +6427,41 @@ declare namespace Paths {
6357
6427
  }
6358
6428
  namespace GetRelations {
6359
6429
  namespace Parameters {
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;
6430
+ export type ExcludeSchemas = /**
6431
+ * URL-friendly identifier for the entity schema
6432
+ * example:
6433
+ * contact
6434
+ */
6435
+ Components.Schemas.EntitySlug[];
6436
+ export type From = number;
6437
+ export type Hydrate = boolean;
6438
+ export type Id = Components.Schemas.EntityId /* uuid */;
6439
+ export type IncludeReverse = boolean;
6440
+ export type IncludeSchemas = /**
6441
+ * URL-friendly identifier for the entity schema
6442
+ * example:
6443
+ * contact
6444
+ */
6445
+ Components.Schemas.EntitySlug[];
6367
6446
  export type Size = number;
6447
+ export type Slug = /**
6448
+ * URL-friendly identifier for the entity schema
6449
+ * example:
6450
+ * contact
6451
+ */
6452
+ Components.Schemas.EntitySlug;
6453
+ }
6454
+ export interface PathParameters {
6455
+ slug: Parameters.Slug;
6456
+ id: Parameters.Id;
6368
6457
  }
6369
6458
  export interface QueryParameters {
6459
+ hydrate?: Parameters.Hydrate;
6460
+ include_reverse?: Parameters.IncludeReverse;
6461
+ from?: Parameters.From;
6370
6462
  size?: Parameters.Size;
6463
+ include_schemas?: Parameters.IncludeSchemas;
6464
+ exclude_schemas?: Parameters.ExcludeSchemas;
6371
6465
  }
6372
6466
  namespace Responses {
6373
6467
  export type $200 = Components.Schemas.GetRelationsResp;
@@ -6375,11 +6469,6 @@ declare namespace Paths {
6375
6469
  }
6376
6470
  namespace GetRelationsV2 {
6377
6471
  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
6472
  /**
6384
6473
  * example:
6385
6474
  * [
@@ -6389,11 +6478,28 @@ declare namespace Paths {
6389
6478
  * ]
6390
6479
  */
6391
6480
  export type Fields = string[];
6481
+ export type From = number;
6482
+ export type Hydrate = boolean;
6483
+ export type Id = Components.Schemas.EntityId /* uuid */;
6484
+ export type IncludeReverse = boolean;
6392
6485
  export type Query = string;
6393
6486
  export type Size = number;
6487
+ export type Slug = /**
6488
+ * URL-friendly identifier for the entity schema
6489
+ * example:
6490
+ * contact
6491
+ */
6492
+ Components.Schemas.EntitySlug;
6493
+ }
6494
+ export interface PathParameters {
6495
+ slug: Parameters.Slug;
6496
+ id: Parameters.Id;
6394
6497
  }
6395
6498
  export interface QueryParameters {
6499
+ hydrate?: Parameters.Hydrate;
6396
6500
  query?: Parameters.Query;
6501
+ include_reverse?: Parameters.IncludeReverse;
6502
+ from?: Parameters.From;
6397
6503
  size?: Parameters.Size;
6398
6504
  fields?: /**
6399
6505
  * example:
@@ -6411,17 +6517,41 @@ declare namespace Paths {
6411
6517
  }
6412
6518
  namespace GetRelationsV3 {
6413
6519
  namespace Parameters {
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;
6520
+ export type ExcludeSchemas = /**
6521
+ * URL-friendly identifier for the entity schema
6522
+ * example:
6523
+ * contact
6524
+ */
6525
+ Components.Schemas.EntitySlug[];
6526
+ export type From = number;
6527
+ export type Hydrate = boolean;
6528
+ export type Id = Components.Schemas.EntityId /* uuid */;
6529
+ export type IncludeReverse = boolean;
6530
+ export type IncludeSchemas = /**
6531
+ * URL-friendly identifier for the entity schema
6532
+ * example:
6533
+ * contact
6534
+ */
6535
+ Components.Schemas.EntitySlug[];
6421
6536
  export type Size = number;
6537
+ export type Slug = /**
6538
+ * URL-friendly identifier for the entity schema
6539
+ * example:
6540
+ * contact
6541
+ */
6542
+ Components.Schemas.EntitySlug;
6543
+ }
6544
+ export interface PathParameters {
6545
+ slug: Parameters.Slug;
6546
+ id: Parameters.Id;
6422
6547
  }
6423
6548
  export interface QueryParameters {
6549
+ hydrate?: Parameters.Hydrate;
6550
+ include_reverse?: Parameters.IncludeReverse;
6551
+ from?: Parameters.From;
6424
6552
  size?: Parameters.Size;
6553
+ include_schemas?: Parameters.IncludeSchemas;
6554
+ exclude_schemas?: Parameters.ExcludeSchemas;
6425
6555
  }
6426
6556
  namespace Responses {
6427
6557
  export type $200 = Components.Schemas.GetRelationsRespWithPagination;
@@ -6429,7 +6559,10 @@ declare namespace Paths {
6429
6559
  }
6430
6560
  namespace GetSavedView {
6431
6561
  namespace Parameters {
6432
- export type $0 = Components.Parameters.SavedViewIdPathParam;
6562
+ export type Id = /* Generated uuid for a saved view */ Components.Schemas.SavedViewId /* uuid */;
6563
+ }
6564
+ export interface PathParameters {
6565
+ id: Parameters.Id;
6433
6566
  }
6434
6567
  namespace Responses {
6435
6568
  export interface $200 {
@@ -6439,8 +6572,16 @@ declare namespace Paths {
6439
6572
  }
6440
6573
  namespace GetSchema {
6441
6574
  namespace Parameters {
6442
- export type $0 = Components.Parameters.EntitySlugPathParam;
6443
6575
  export type Id = /* Generated uuid for schema */ Components.Schemas.SchemaId /* uuid */;
6576
+ export type Slug = /**
6577
+ * URL-friendly identifier for the entity schema
6578
+ * example:
6579
+ * contact
6580
+ */
6581
+ Components.Schemas.EntitySlug;
6582
+ }
6583
+ export interface PathParameters {
6584
+ slug: Parameters.Slug;
6444
6585
  }
6445
6586
  export interface QueryParameters {
6446
6587
  id?: Parameters.Id;
@@ -6451,12 +6592,20 @@ declare namespace Paths {
6451
6592
  }
6452
6593
  namespace GetSchemaVersions {
6453
6594
  namespace Parameters {
6454
- export type $0 = Components.Parameters.EntitySlugPathParam;
6455
6595
  export type DraftsFrom = number;
6456
6596
  export type DraftsSize = number;
6597
+ export type Slug = /**
6598
+ * URL-friendly identifier for the entity schema
6599
+ * example:
6600
+ * contact
6601
+ */
6602
+ Components.Schemas.EntitySlug;
6457
6603
  export type VersionsFrom = number;
6458
6604
  export type VersionsSize = number;
6459
6605
  }
6606
+ export interface PathParameters {
6607
+ slug: Parameters.Slug;
6608
+ }
6460
6609
  export interface QueryParameters {
6461
6610
  versions_from?: Parameters.VersionsFrom;
6462
6611
  versions_size?: Parameters.VersionsSize;
@@ -6472,7 +6621,15 @@ declare namespace Paths {
6472
6621
  }
6473
6622
  namespace GetTaxonomy {
6474
6623
  namespace Parameters {
6475
- export type $0 = Components.Parameters.TaxonomySlugPathParam;
6624
+ export type TaxonomySlug = /**
6625
+ * URL-friendly name for taxonomy
6626
+ * example:
6627
+ * purpose
6628
+ */
6629
+ Components.Schemas.TaxonomySlug;
6630
+ }
6631
+ export interface PathParameters {
6632
+ taxonomySlug: Parameters.TaxonomySlug;
6476
6633
  }
6477
6634
  namespace Responses {
6478
6635
  export type $200 = Components.Schemas.Taxonomy;
@@ -6539,10 +6696,24 @@ declare namespace Paths {
6539
6696
  }
6540
6697
  namespace ListTaxonomyClassificationsForSchema {
6541
6698
  namespace Parameters {
6542
- export type $0 = Components.Parameters.EntitySlugPathParam;
6543
- export type $1 = Components.Parameters.TaxonomySlugPathParam;
6544
6699
  export type Query = string;
6545
6700
  export type Size = number;
6701
+ export type Slug = /**
6702
+ * URL-friendly identifier for the entity schema
6703
+ * example:
6704
+ * contact
6705
+ */
6706
+ Components.Schemas.EntitySlug;
6707
+ export type TaxonomySlug = /**
6708
+ * URL-friendly name for taxonomy
6709
+ * example:
6710
+ * purpose
6711
+ */
6712
+ Components.Schemas.TaxonomySlug;
6713
+ }
6714
+ export interface PathParameters {
6715
+ slug: Parameters.Slug;
6716
+ taxonomySlug: Parameters.TaxonomySlug;
6546
6717
  }
6547
6718
  export interface QueryParameters {
6548
6719
  query?: Parameters.Query;
@@ -6556,11 +6727,30 @@ declare namespace Paths {
6556
6727
  }
6557
6728
  namespace PatchEntity {
6558
6729
  namespace Parameters {
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;
6730
+ export type ActivityId = /**
6731
+ * See https://github.com/ulid/spec
6732
+ * example:
6733
+ * 01F130Q52Q6MWSNS8N2AVXV4JN
6734
+ */
6735
+ Components.Schemas.ActivityId /* ulid */;
6736
+ export type Async = boolean;
6737
+ export type DryRun = boolean;
6738
+ export type Id = Components.Schemas.EntityId /* uuid */;
6739
+ export type Slug = /**
6740
+ * URL-friendly identifier for the entity schema
6741
+ * example:
6742
+ * contact
6743
+ */
6744
+ Components.Schemas.EntitySlug;
6745
+ }
6746
+ export interface PathParameters {
6747
+ slug: Parameters.Slug;
6748
+ id: Parameters.Id;
6749
+ }
6750
+ export interface QueryParameters {
6751
+ activity_id?: Parameters.ActivityId;
6752
+ dry_run?: Parameters.DryRun;
6753
+ async?: Parameters.Async;
6564
6754
  }
6565
6755
  export type RequestBody = /**
6566
6756
  * example:
@@ -6645,8 +6835,16 @@ declare namespace Paths {
6645
6835
  }
6646
6836
  namespace PutSchema {
6647
6837
  namespace Parameters {
6648
- export type $0 = Components.Parameters.EntitySlugPathParam;
6649
6838
  export type Draft = boolean;
6839
+ export type Slug = /**
6840
+ * URL-friendly identifier for the entity schema
6841
+ * example:
6842
+ * contact
6843
+ */
6844
+ Components.Schemas.EntitySlug;
6845
+ }
6846
+ export interface PathParameters {
6847
+ slug: Parameters.Slug;
6650
6848
  }
6651
6849
  export interface QueryParameters {
6652
6850
  draft?: Parameters.Draft;
@@ -6664,7 +6862,10 @@ declare namespace Paths {
6664
6862
  }
6665
6863
  namespace TaxonomiesClassificationsSearch {
6666
6864
  namespace Parameters {
6667
- export type $0 = Components.Parameters.TaxonomySlugQueryParam;
6865
+ export type TaxonomySlug = string;
6866
+ }
6867
+ export interface QueryParameters {
6868
+ taxonomySlug: Parameters.TaxonomySlug;
6668
6869
  }
6669
6870
  export interface RequestBody {
6670
6871
  classificationIds?: Components.Schemas.ClassificationId /* uuid */[];
@@ -6677,9 +6878,12 @@ declare namespace Paths {
6677
6878
  }
6678
6879
  namespace TaxonomyAutocomplete {
6679
6880
  namespace Parameters {
6680
- export type $0 = Components.Parameters.TaxonomySlugPathParam;
6681
6881
  export type Query = string;
6682
6882
  export type Size = number;
6883
+ export type TaxonomySlug = string;
6884
+ }
6885
+ export interface PathParameters {
6886
+ taxonomySlug: Parameters.TaxonomySlug;
6683
6887
  }
6684
6888
  export interface QueryParameters {
6685
6889
  query?: Parameters.Query;
@@ -6693,7 +6897,10 @@ declare namespace Paths {
6693
6897
  }
6694
6898
  namespace UpdateClassificationsForTaxonomy {
6695
6899
  namespace Parameters {
6696
- export type $0 = Components.Parameters.TaxonomySlugPathParam;
6900
+ export type TaxonomySlug = string;
6901
+ }
6902
+ export interface PathParameters {
6903
+ taxonomySlug: Parameters.TaxonomySlug;
6697
6904
  }
6698
6905
  export type RequestBody = Components.Schemas.ClassificationsUpdate;
6699
6906
  namespace Responses {
@@ -6708,10 +6915,28 @@ declare namespace Paths {
6708
6915
  }
6709
6916
  namespace UpdateEntity {
6710
6917
  namespace Parameters {
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;
6918
+ export type ActivityId = /**
6919
+ * See https://github.com/ulid/spec
6920
+ * example:
6921
+ * 01F130Q52Q6MWSNS8N2AVXV4JN
6922
+ */
6923
+ Components.Schemas.ActivityId /* ulid */;
6924
+ export type Async = boolean;
6925
+ export type Id = Components.Schemas.EntityId /* uuid */;
6926
+ export type Slug = /**
6927
+ * URL-friendly identifier for the entity schema
6928
+ * example:
6929
+ * contact
6930
+ */
6931
+ Components.Schemas.EntitySlug;
6932
+ }
6933
+ export interface PathParameters {
6934
+ slug: Parameters.Slug;
6935
+ id: Parameters.Id;
6936
+ }
6937
+ export interface QueryParameters {
6938
+ activity_id?: Parameters.ActivityId;
6939
+ async?: Parameters.Async;
6715
6940
  }
6716
6941
  export type RequestBody = /**
6717
6942
  * example:
@@ -6794,17 +7019,33 @@ declare namespace Paths {
6794
7019
  }
6795
7020
  namespace UpdateRelation {
6796
7021
  namespace Parameters {
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;
7022
+ export type ActivityId = /**
7023
+ * See https://github.com/ulid/spec
7024
+ * example:
7025
+ * 01F130Q52Q6MWSNS8N2AVXV4JN
7026
+ */
7027
+ Components.Schemas.ActivityId /* ulid */;
7028
+ export type Async = boolean;
6801
7029
  export type Attribute = string;
6802
7030
  export type EntityId = string;
7031
+ export type Id = Components.Schemas.EntityId /* uuid */;
7032
+ export type Slug = /**
7033
+ * URL-friendly identifier for the entity schema
7034
+ * example:
7035
+ * contact
7036
+ */
7037
+ Components.Schemas.EntitySlug;
6803
7038
  }
6804
7039
  export interface PathParameters {
7040
+ slug: Parameters.Slug;
7041
+ id: Parameters.Id;
6805
7042
  attribute: Parameters.Attribute;
6806
7043
  entity_id: Parameters.EntityId;
6807
7044
  }
7045
+ export interface QueryParameters {
7046
+ async?: Parameters.Async;
7047
+ activity_id?: Parameters.ActivityId;
7048
+ }
6808
7049
  export interface RequestBody {
6809
7050
  _tags?: string[];
6810
7051
  }
@@ -6814,7 +7055,10 @@ declare namespace Paths {
6814
7055
  }
6815
7056
  namespace UpdateSavedView {
6816
7057
  namespace Parameters {
6817
- export type $0 = Components.Parameters.SavedViewIdPathParam;
7058
+ export type Id = /* Generated uuid for a saved view */ Components.Schemas.SavedViewId /* uuid */;
7059
+ }
7060
+ export interface PathParameters {
7061
+ id: Parameters.Id;
6818
7062
  }
6819
7063
  export type RequestBody = /* A saved entity view */ Components.Schemas.SavedView;
6820
7064
  namespace Responses {
@@ -6823,10 +7067,28 @@ declare namespace Paths {
6823
7067
  }
6824
7068
  namespace UpsertEntity {
6825
7069
  namespace Parameters {
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;
7070
+ export type ActivityId = /**
7071
+ * See https://github.com/ulid/spec
7072
+ * example:
7073
+ * 01F130Q52Q6MWSNS8N2AVXV4JN
7074
+ */
7075
+ Components.Schemas.ActivityId /* ulid */;
7076
+ export type Async = boolean;
7077
+ export type DryRun = boolean;
7078
+ export type Slug = /**
7079
+ * URL-friendly identifier for the entity schema
7080
+ * example:
7081
+ * contact
7082
+ */
7083
+ Components.Schemas.EntitySlug;
7084
+ }
7085
+ export interface PathParameters {
7086
+ slug: Parameters.Slug;
7087
+ }
7088
+ export interface QueryParameters {
7089
+ activity_id?: Parameters.ActivityId;
7090
+ dry_run?: Parameters.DryRun;
7091
+ async?: Parameters.Async;
6830
7092
  }
6831
7093
  export interface RequestBody {
6832
7094
  /**
@@ -6980,7 +7242,7 @@ export interface OperationMethods {
6980
7242
  * By default gets the latest version of the Schema and to get the specific version of schema pass the id.
6981
7243
  */
6982
7244
  'getSchema'(
6983
- parameters?: Parameters<Paths.GetSchema.QueryParameters> | null,
7245
+ parameters?: Parameters<Paths.GetSchema.PathParameters & Paths.GetSchema.QueryParameters> | null,
6984
7246
  data?: any,
6985
7247
  config?: AxiosRequestConfig
6986
7248
  ): OperationResponse<Paths.GetSchema.Responses.$200>
@@ -6990,7 +7252,7 @@ export interface OperationMethods {
6990
7252
  * Create or update a schema with a new version
6991
7253
  */
6992
7254
  'putSchema'(
6993
- parameters?: Parameters<Paths.PutSchema.QueryParameters> | null,
7255
+ parameters?: Parameters<Paths.PutSchema.PathParameters & Paths.PutSchema.QueryParameters> | null,
6994
7256
  data?: Paths.PutSchema.RequestBody,
6995
7257
  config?: AxiosRequestConfig
6996
7258
  ): OperationResponse<Paths.PutSchema.Responses.$200>
@@ -7000,7 +7262,7 @@ export interface OperationMethods {
7000
7262
  * Delete a schema, or a specific version of a schema
7001
7263
  */
7002
7264
  'deleteSchema'(
7003
- parameters?: Parameters<UnknownParamsObject> | null,
7265
+ parameters?: Parameters<Paths.DeleteSchema.PathParameters> | null,
7004
7266
  data?: any,
7005
7267
  config?: AxiosRequestConfig
7006
7268
  ): OperationResponse<Paths.DeleteSchema.Responses.$204>
@@ -7010,7 +7272,7 @@ export interface OperationMethods {
7010
7272
  * Get all versions of this schema ordered by the latest versions including drafts.
7011
7273
  */
7012
7274
  'getSchemaVersions'(
7013
- parameters?: Parameters<Paths.GetSchemaVersions.QueryParameters> | null,
7275
+ parameters?: Parameters<Paths.GetSchemaVersions.PathParameters & Paths.GetSchemaVersions.QueryParameters> | null,
7014
7276
  data?: any,
7015
7277
  config?: AxiosRequestConfig
7016
7278
  ): OperationResponse<Paths.GetSchemaVersions.Responses.$200>
@@ -7030,7 +7292,7 @@ export interface OperationMethods {
7030
7292
  * List taxonomy classifications for a given schema
7031
7293
  */
7032
7294
  'listTaxonomyClassificationsForSchema'(
7033
- parameters?: Parameters<Paths.ListTaxonomyClassificationsForSchema.QueryParameters> | null,
7295
+ parameters?: Parameters<Paths.ListTaxonomyClassificationsForSchema.PathParameters & Paths.ListTaxonomyClassificationsForSchema.QueryParameters> | null,
7034
7296
  data?: any,
7035
7297
  config?: AxiosRequestConfig
7036
7298
  ): OperationResponse<Paths.ListTaxonomyClassificationsForSchema.Responses.$200>
@@ -7140,7 +7402,7 @@ export interface OperationMethods {
7140
7402
  *
7141
7403
  */
7142
7404
  'createEntity'(
7143
- parameters?: Parameters<UnknownParamsObject> | null,
7405
+ parameters?: Parameters<Paths.CreateEntity.PathParameters & Paths.CreateEntity.QueryParameters> | null,
7144
7406
  data?: Paths.CreateEntity.RequestBody,
7145
7407
  config?: AxiosRequestConfig
7146
7408
  ): OperationResponse<Paths.CreateEntity.Responses.$201>
@@ -7159,7 +7421,7 @@ export interface OperationMethods {
7159
7421
  *
7160
7422
  */
7161
7423
  'upsertEntity'(
7162
- parameters?: Parameters<UnknownParamsObject> | null,
7424
+ parameters?: Parameters<Paths.UpsertEntity.PathParameters & Paths.UpsertEntity.QueryParameters> | null,
7163
7425
  data?: Paths.UpsertEntity.RequestBody,
7164
7426
  config?: AxiosRequestConfig
7165
7427
  ): OperationResponse<Paths.UpsertEntity.Responses.$200 | Paths.UpsertEntity.Responses.$201>
@@ -7232,7 +7494,7 @@ export interface OperationMethods {
7232
7494
  *
7233
7495
  */
7234
7496
  'getEntity'(
7235
- parameters?: Parameters<UnknownParamsObject> | null,
7497
+ parameters?: Parameters<Paths.GetEntity.PathParameters & Paths.GetEntity.QueryParameters> | null,
7236
7498
  data?: any,
7237
7499
  config?: AxiosRequestConfig
7238
7500
  ): OperationResponse<Paths.GetEntity.Responses.$200>
@@ -7267,7 +7529,7 @@ export interface OperationMethods {
7267
7529
  *
7268
7530
  */
7269
7531
  'updateEntity'(
7270
- parameters?: Parameters<UnknownParamsObject> | null,
7532
+ parameters?: Parameters<Paths.UpdateEntity.PathParameters & Paths.UpdateEntity.QueryParameters> | null,
7271
7533
  data?: Paths.UpdateEntity.RequestBody,
7272
7534
  config?: AxiosRequestConfig
7273
7535
  ): OperationResponse<Paths.UpdateEntity.Responses.$200>
@@ -7304,7 +7566,7 @@ export interface OperationMethods {
7304
7566
  *
7305
7567
  */
7306
7568
  'patchEntity'(
7307
- parameters?: Parameters<UnknownParamsObject> | null,
7569
+ parameters?: Parameters<Paths.PatchEntity.PathParameters & Paths.PatchEntity.QueryParameters> | null,
7308
7570
  data?: Paths.PatchEntity.RequestBody,
7309
7571
  config?: AxiosRequestConfig
7310
7572
  ): OperationResponse<Paths.PatchEntity.Responses.$200>
@@ -7319,7 +7581,7 @@ export interface OperationMethods {
7319
7581
  *
7320
7582
  */
7321
7583
  'deleteEntity'(
7322
- parameters?: Parameters<UnknownParamsObject> | null,
7584
+ parameters?: Parameters<Paths.DeleteEntity.PathParameters & Paths.DeleteEntity.QueryParameters> | null,
7323
7585
  data?: any,
7324
7586
  config?: AxiosRequestConfig
7325
7587
  ): OperationResponse<Paths.DeleteEntity.Responses.$200>
@@ -7354,7 +7616,7 @@ export interface OperationMethods {
7354
7616
  * Get activity by id
7355
7617
  */
7356
7618
  'getActivity'(
7357
- parameters?: Parameters<Paths.GetActivity.QueryParameters> | null,
7619
+ parameters?: Parameters<Paths.GetActivity.PathParameters & Paths.GetActivity.QueryParameters> | null,
7358
7620
  data?: any,
7359
7621
  config?: AxiosRequestConfig
7360
7622
  ): OperationResponse<Paths.GetActivity.Responses.$200>
@@ -7364,7 +7626,7 @@ export interface OperationMethods {
7364
7626
  * Attach existing activity to entity activity feeds
7365
7627
  */
7366
7628
  'attachActivity'(
7367
- parameters?: Parameters<Paths.AttachActivity.QueryParameters> | null,
7629
+ parameters?: Parameters<Paths.AttachActivity.PathParameters & Paths.AttachActivity.QueryParameters> | null,
7368
7630
  data?: any,
7369
7631
  config?: AxiosRequestConfig
7370
7632
  ): OperationResponse<Paths.AttachActivity.Responses.$200>
@@ -7375,7 +7637,7 @@ export interface OperationMethods {
7375
7637
  *
7376
7638
  */
7377
7639
  'getEntityActivityFeed'(
7378
- parameters?: Parameters<Paths.GetEntityActivityFeed.QueryParameters> | null,
7640
+ parameters?: Parameters<Paths.GetEntityActivityFeed.PathParameters & Paths.GetEntityActivityFeed.QueryParameters> | null,
7379
7641
  data?: any,
7380
7642
  config?: AxiosRequestConfig
7381
7643
  ): OperationResponse<Paths.GetEntityActivityFeed.Responses.$200>
@@ -7390,7 +7652,7 @@ export interface OperationMethods {
7390
7652
  *
7391
7653
  */
7392
7654
  'getRelations'(
7393
- parameters?: Parameters<Paths.GetRelations.QueryParameters> | null,
7655
+ parameters?: Parameters<Paths.GetRelations.PathParameters & Paths.GetRelations.QueryParameters> | null,
7394
7656
  data?: any,
7395
7657
  config?: AxiosRequestConfig
7396
7658
  ): OperationResponse<Paths.GetRelations.Responses.$200>
@@ -7400,7 +7662,7 @@ export interface OperationMethods {
7400
7662
  * Relates one or more entities to parent entity by adding items to a relation attribute
7401
7663
  */
7402
7664
  'addRelations'(
7403
- parameters?: Parameters<UnknownParamsObject> | null,
7665
+ parameters?: Parameters<Paths.AddRelations.PathParameters & Paths.AddRelations.QueryParameters> | null,
7404
7666
  data?: Paths.AddRelations.RequestBody,
7405
7667
  config?: AxiosRequestConfig
7406
7668
  ): OperationResponse<Paths.AddRelations.Responses.$200>
@@ -7415,7 +7677,7 @@ export interface OperationMethods {
7415
7677
  *
7416
7678
  */
7417
7679
  'getRelationsV2'(
7418
- parameters?: Parameters<Paths.GetRelationsV2.QueryParameters> | null,
7680
+ parameters?: Parameters<Paths.GetRelationsV2.PathParameters & Paths.GetRelationsV2.QueryParameters> | null,
7419
7681
  data?: any,
7420
7682
  config?: AxiosRequestConfig
7421
7683
  ): OperationResponse<Paths.GetRelationsV2.Responses.$200>
@@ -7430,7 +7692,7 @@ export interface OperationMethods {
7430
7692
  *
7431
7693
  */
7432
7694
  'getRelationsV3'(
7433
- parameters?: Parameters<Paths.GetRelationsV3.QueryParameters> | null,
7695
+ parameters?: Parameters<Paths.GetRelationsV3.PathParameters & Paths.GetRelationsV3.QueryParameters> | null,
7434
7696
  data?: any,
7435
7697
  config?: AxiosRequestConfig
7436
7698
  ): OperationResponse<Paths.GetRelationsV3.Responses.$200>
@@ -7441,7 +7703,7 @@ export interface OperationMethods {
7441
7703
  *
7442
7704
  */
7443
7705
  'getRelatedEntitiesCount'(
7444
- parameters?: Parameters<UnknownParamsObject> | null,
7706
+ parameters?: Parameters<Paths.GetRelatedEntitiesCount.PathParameters & Paths.GetRelatedEntitiesCount.QueryParameters> | null,
7445
7707
  data?: any,
7446
7708
  config?: AxiosRequestConfig
7447
7709
  ): OperationResponse<Paths.GetRelatedEntitiesCount.Responses.$200>
@@ -7451,7 +7713,7 @@ export interface OperationMethods {
7451
7713
  * Updates an existing relation between two entities.
7452
7714
  */
7453
7715
  'updateRelation'(
7454
- parameters?: Parameters<Paths.UpdateRelation.PathParameters> | null,
7716
+ parameters?: Parameters<Paths.UpdateRelation.PathParameters & Paths.UpdateRelation.QueryParameters> | null,
7455
7717
  data?: Paths.UpdateRelation.RequestBody,
7456
7718
  config?: AxiosRequestConfig
7457
7719
  ): OperationResponse<Paths.UpdateRelation.Responses.$200>
@@ -7461,7 +7723,7 @@ export interface OperationMethods {
7461
7723
  * Removes relation between two entities
7462
7724
  */
7463
7725
  'deleteRelation'(
7464
- parameters?: Parameters<Paths.DeleteRelation.PathParameters> | null,
7726
+ parameters?: Parameters<Paths.DeleteRelation.PathParameters & Paths.DeleteRelation.QueryParameters> | null,
7465
7727
  data?: any,
7466
7728
  config?: AxiosRequestConfig
7467
7729
  ): OperationResponse<Paths.DeleteRelation.Responses.$204>
@@ -7514,7 +7776,7 @@ export interface OperationMethods {
7514
7776
  * Gets Saved View configuration by id.
7515
7777
  */
7516
7778
  'getSavedView'(
7517
- parameters?: Parameters<UnknownParamsObject> | null,
7779
+ parameters?: Parameters<Paths.GetSavedView.PathParameters> | null,
7518
7780
  data?: any,
7519
7781
  config?: AxiosRequestConfig
7520
7782
  ): OperationResponse<Paths.GetSavedView.Responses.$200>
@@ -7524,7 +7786,7 @@ export interface OperationMethods {
7524
7786
  * Updates a saved view
7525
7787
  */
7526
7788
  'updateSavedView'(
7527
- parameters?: Parameters<UnknownParamsObject> | null,
7789
+ parameters?: Parameters<Paths.UpdateSavedView.PathParameters> | null,
7528
7790
  data?: Paths.UpdateSavedView.RequestBody,
7529
7791
  config?: AxiosRequestConfig
7530
7792
  ): OperationResponse<Paths.UpdateSavedView.Responses.$200>
@@ -7534,7 +7796,7 @@ export interface OperationMethods {
7534
7796
  * Deletes a saved view
7535
7797
  */
7536
7798
  'deleteSavedView'(
7537
- parameters?: Parameters<UnknownParamsObject> | null,
7799
+ parameters?: Parameters<Paths.DeleteSavedView.PathParameters> | null,
7538
7800
  data?: any,
7539
7801
  config?: AxiosRequestConfig
7540
7802
  ): OperationResponse<Paths.DeleteSavedView.Responses.$200>
@@ -7564,7 +7826,7 @@ export interface OperationMethods {
7564
7826
  * Get taxonomy by slug
7565
7827
  */
7566
7828
  'getTaxonomy'(
7567
- parameters?: Parameters<UnknownParamsObject> | null,
7829
+ parameters?: Parameters<Paths.GetTaxonomy.PathParameters> | null,
7568
7830
  data?: any,
7569
7831
  config?: AxiosRequestConfig
7570
7832
  ): OperationResponse<Paths.GetTaxonomy.Responses.$200>
@@ -7574,7 +7836,7 @@ export interface OperationMethods {
7574
7836
  * Taxonomies autocomplete
7575
7837
  */
7576
7838
  'taxonomyAutocomplete'(
7577
- parameters?: Parameters<Paths.TaxonomyAutocomplete.QueryParameters> | null,
7839
+ parameters?: Parameters<Paths.TaxonomyAutocomplete.PathParameters & Paths.TaxonomyAutocomplete.QueryParameters> | null,
7578
7840
  data?: any,
7579
7841
  config?: AxiosRequestConfig
7580
7842
  ): OperationResponse<Paths.TaxonomyAutocomplete.Responses.$200>
@@ -7584,7 +7846,7 @@ export interface OperationMethods {
7584
7846
  * List taxonomy classifications in an organisation based on taxonomy slug
7585
7847
  */
7586
7848
  'taxonomiesClassificationsSearch'(
7587
- parameters?: Parameters<UnknownParamsObject> | null,
7849
+ parameters?: Parameters<Paths.TaxonomiesClassificationsSearch.QueryParameters> | null,
7588
7850
  data?: Paths.TaxonomiesClassificationsSearch.RequestBody,
7589
7851
  config?: AxiosRequestConfig
7590
7852
  ): OperationResponse<Paths.TaxonomiesClassificationsSearch.Responses.$200>
@@ -7594,7 +7856,7 @@ export interface OperationMethods {
7594
7856
  * Update taxonomies in an organisation based in taxonomy slug
7595
7857
  */
7596
7858
  'updateClassificationsForTaxonomy'(
7597
- parameters?: Parameters<UnknownParamsObject> | null,
7859
+ parameters?: Parameters<Paths.UpdateClassificationsForTaxonomy.PathParameters> | null,
7598
7860
  data?: Paths.UpdateClassificationsForTaxonomy.RequestBody,
7599
7861
  config?: AxiosRequestConfig
7600
7862
  ): OperationResponse<Paths.UpdateClassificationsForTaxonomy.Responses.$200>
@@ -7620,7 +7882,7 @@ export interface PathsDictionary {
7620
7882
  * By default gets the latest version of the Schema and to get the specific version of schema pass the id.
7621
7883
  */
7622
7884
  'get'(
7623
- parameters?: Parameters<Paths.GetSchema.QueryParameters> | null,
7885
+ parameters?: Parameters<Paths.GetSchema.PathParameters & Paths.GetSchema.QueryParameters> | null,
7624
7886
  data?: any,
7625
7887
  config?: AxiosRequestConfig
7626
7888
  ): OperationResponse<Paths.GetSchema.Responses.$200>
@@ -7630,7 +7892,7 @@ export interface PathsDictionary {
7630
7892
  * Create or update a schema with a new version
7631
7893
  */
7632
7894
  'put'(
7633
- parameters?: Parameters<Paths.PutSchema.QueryParameters> | null,
7895
+ parameters?: Parameters<Paths.PutSchema.PathParameters & Paths.PutSchema.QueryParameters> | null,
7634
7896
  data?: Paths.PutSchema.RequestBody,
7635
7897
  config?: AxiosRequestConfig
7636
7898
  ): OperationResponse<Paths.PutSchema.Responses.$200>
@@ -7640,7 +7902,7 @@ export interface PathsDictionary {
7640
7902
  * Delete a schema, or a specific version of a schema
7641
7903
  */
7642
7904
  'delete'(
7643
- parameters?: Parameters<UnknownParamsObject> | null,
7905
+ parameters?: Parameters<Paths.DeleteSchema.PathParameters> | null,
7644
7906
  data?: any,
7645
7907
  config?: AxiosRequestConfig
7646
7908
  ): OperationResponse<Paths.DeleteSchema.Responses.$204>
@@ -7652,7 +7914,7 @@ export interface PathsDictionary {
7652
7914
  * Get all versions of this schema ordered by the latest versions including drafts.
7653
7915
  */
7654
7916
  'get'(
7655
- parameters?: Parameters<Paths.GetSchemaVersions.QueryParameters> | null,
7917
+ parameters?: Parameters<Paths.GetSchemaVersions.PathParameters & Paths.GetSchemaVersions.QueryParameters> | null,
7656
7918
  data?: any,
7657
7919
  config?: AxiosRequestConfig
7658
7920
  ): OperationResponse<Paths.GetSchemaVersions.Responses.$200>
@@ -7676,7 +7938,7 @@ export interface PathsDictionary {
7676
7938
  * List taxonomy classifications for a given schema
7677
7939
  */
7678
7940
  'get'(
7679
- parameters?: Parameters<Paths.ListTaxonomyClassificationsForSchema.QueryParameters> | null,
7941
+ parameters?: Parameters<Paths.ListTaxonomyClassificationsForSchema.PathParameters & Paths.ListTaxonomyClassificationsForSchema.QueryParameters> | null,
7680
7942
  data?: any,
7681
7943
  config?: AxiosRequestConfig
7682
7944
  ): OperationResponse<Paths.ListTaxonomyClassificationsForSchema.Responses.$200>
@@ -7790,7 +8052,7 @@ export interface PathsDictionary {
7790
8052
  *
7791
8053
  */
7792
8054
  'post'(
7793
- parameters?: Parameters<UnknownParamsObject> | null,
8055
+ parameters?: Parameters<Paths.CreateEntity.PathParameters & Paths.CreateEntity.QueryParameters> | null,
7794
8056
  data?: Paths.CreateEntity.RequestBody,
7795
8057
  config?: AxiosRequestConfig
7796
8058
  ): OperationResponse<Paths.CreateEntity.Responses.$201>
@@ -7811,7 +8073,7 @@ export interface PathsDictionary {
7811
8073
  *
7812
8074
  */
7813
8075
  'patch'(
7814
- parameters?: Parameters<UnknownParamsObject> | null,
8076
+ parameters?: Parameters<Paths.UpsertEntity.PathParameters & Paths.UpsertEntity.QueryParameters> | null,
7815
8077
  data?: Paths.UpsertEntity.RequestBody,
7816
8078
  config?: AxiosRequestConfig
7817
8079
  ): OperationResponse<Paths.UpsertEntity.Responses.$200 | Paths.UpsertEntity.Responses.$201>
@@ -7886,7 +8148,7 @@ export interface PathsDictionary {
7886
8148
  *
7887
8149
  */
7888
8150
  'get'(
7889
- parameters?: Parameters<UnknownParamsObject> | null,
8151
+ parameters?: Parameters<Paths.GetEntity.PathParameters & Paths.GetEntity.QueryParameters> | null,
7890
8152
  data?: any,
7891
8153
  config?: AxiosRequestConfig
7892
8154
  ): OperationResponse<Paths.GetEntity.Responses.$200>
@@ -7921,7 +8183,7 @@ export interface PathsDictionary {
7921
8183
  *
7922
8184
  */
7923
8185
  'put'(
7924
- parameters?: Parameters<UnknownParamsObject> | null,
8186
+ parameters?: Parameters<Paths.UpdateEntity.PathParameters & Paths.UpdateEntity.QueryParameters> | null,
7925
8187
  data?: Paths.UpdateEntity.RequestBody,
7926
8188
  config?: AxiosRequestConfig
7927
8189
  ): OperationResponse<Paths.UpdateEntity.Responses.$200>
@@ -7958,7 +8220,7 @@ export interface PathsDictionary {
7958
8220
  *
7959
8221
  */
7960
8222
  'patch'(
7961
- parameters?: Parameters<UnknownParamsObject> | null,
8223
+ parameters?: Parameters<Paths.PatchEntity.PathParameters & Paths.PatchEntity.QueryParameters> | null,
7962
8224
  data?: Paths.PatchEntity.RequestBody,
7963
8225
  config?: AxiosRequestConfig
7964
8226
  ): OperationResponse<Paths.PatchEntity.Responses.$200>
@@ -7973,7 +8235,7 @@ export interface PathsDictionary {
7973
8235
  *
7974
8236
  */
7975
8237
  'delete'(
7976
- parameters?: Parameters<UnknownParamsObject> | null,
8238
+ parameters?: Parameters<Paths.DeleteEntity.PathParameters & Paths.DeleteEntity.QueryParameters> | null,
7977
8239
  data?: any,
7978
8240
  config?: AxiosRequestConfig
7979
8241
  ): OperationResponse<Paths.DeleteEntity.Responses.$200>
@@ -8014,7 +8276,7 @@ export interface PathsDictionary {
8014
8276
  * Get activity by id
8015
8277
  */
8016
8278
  'get'(
8017
- parameters?: Parameters<Paths.GetActivity.QueryParameters> | null,
8279
+ parameters?: Parameters<Paths.GetActivity.PathParameters & Paths.GetActivity.QueryParameters> | null,
8018
8280
  data?: any,
8019
8281
  config?: AxiosRequestConfig
8020
8282
  ): OperationResponse<Paths.GetActivity.Responses.$200>
@@ -8026,7 +8288,7 @@ export interface PathsDictionary {
8026
8288
  * Attach existing activity to entity activity feeds
8027
8289
  */
8028
8290
  'post'(
8029
- parameters?: Parameters<Paths.AttachActivity.QueryParameters> | null,
8291
+ parameters?: Parameters<Paths.AttachActivity.PathParameters & Paths.AttachActivity.QueryParameters> | null,
8030
8292
  data?: any,
8031
8293
  config?: AxiosRequestConfig
8032
8294
  ): OperationResponse<Paths.AttachActivity.Responses.$200>
@@ -8039,7 +8301,7 @@ export interface PathsDictionary {
8039
8301
  *
8040
8302
  */
8041
8303
  'get'(
8042
- parameters?: Parameters<Paths.GetEntityActivityFeed.QueryParameters> | null,
8304
+ parameters?: Parameters<Paths.GetEntityActivityFeed.PathParameters & Paths.GetEntityActivityFeed.QueryParameters> | null,
8043
8305
  data?: any,
8044
8306
  config?: AxiosRequestConfig
8045
8307
  ): OperationResponse<Paths.GetEntityActivityFeed.Responses.$200>
@@ -8056,7 +8318,7 @@ export interface PathsDictionary {
8056
8318
  *
8057
8319
  */
8058
8320
  'get'(
8059
- parameters?: Parameters<Paths.GetRelations.QueryParameters> | null,
8321
+ parameters?: Parameters<Paths.GetRelations.PathParameters & Paths.GetRelations.QueryParameters> | null,
8060
8322
  data?: any,
8061
8323
  config?: AxiosRequestConfig
8062
8324
  ): OperationResponse<Paths.GetRelations.Responses.$200>
@@ -8066,7 +8328,7 @@ export interface PathsDictionary {
8066
8328
  * Relates one or more entities to parent entity by adding items to a relation attribute
8067
8329
  */
8068
8330
  'post'(
8069
- parameters?: Parameters<UnknownParamsObject> | null,
8331
+ parameters?: Parameters<Paths.AddRelations.PathParameters & Paths.AddRelations.QueryParameters> | null,
8070
8332
  data?: Paths.AddRelations.RequestBody,
8071
8333
  config?: AxiosRequestConfig
8072
8334
  ): OperationResponse<Paths.AddRelations.Responses.$200>
@@ -8083,7 +8345,7 @@ export interface PathsDictionary {
8083
8345
  *
8084
8346
  */
8085
8347
  'get'(
8086
- parameters?: Parameters<Paths.GetRelationsV2.QueryParameters> | null,
8348
+ parameters?: Parameters<Paths.GetRelationsV2.PathParameters & Paths.GetRelationsV2.QueryParameters> | null,
8087
8349
  data?: any,
8088
8350
  config?: AxiosRequestConfig
8089
8351
  ): OperationResponse<Paths.GetRelationsV2.Responses.$200>
@@ -8100,7 +8362,7 @@ export interface PathsDictionary {
8100
8362
  *
8101
8363
  */
8102
8364
  'get'(
8103
- parameters?: Parameters<Paths.GetRelationsV3.QueryParameters> | null,
8365
+ parameters?: Parameters<Paths.GetRelationsV3.PathParameters & Paths.GetRelationsV3.QueryParameters> | null,
8104
8366
  data?: any,
8105
8367
  config?: AxiosRequestConfig
8106
8368
  ): OperationResponse<Paths.GetRelationsV3.Responses.$200>
@@ -8113,7 +8375,7 @@ export interface PathsDictionary {
8113
8375
  *
8114
8376
  */
8115
8377
  'get'(
8116
- parameters?: Parameters<UnknownParamsObject> | null,
8378
+ parameters?: Parameters<Paths.GetRelatedEntitiesCount.PathParameters & Paths.GetRelatedEntitiesCount.QueryParameters> | null,
8117
8379
  data?: any,
8118
8380
  config?: AxiosRequestConfig
8119
8381
  ): OperationResponse<Paths.GetRelatedEntitiesCount.Responses.$200>
@@ -8125,7 +8387,7 @@ export interface PathsDictionary {
8125
8387
  * Updates an existing relation between two entities.
8126
8388
  */
8127
8389
  'put'(
8128
- parameters?: Parameters<Paths.UpdateRelation.PathParameters> | null,
8390
+ parameters?: Parameters<Paths.UpdateRelation.PathParameters & Paths.UpdateRelation.QueryParameters> | null,
8129
8391
  data?: Paths.UpdateRelation.RequestBody,
8130
8392
  config?: AxiosRequestConfig
8131
8393
  ): OperationResponse<Paths.UpdateRelation.Responses.$200>
@@ -8135,7 +8397,7 @@ export interface PathsDictionary {
8135
8397
  * Removes relation between two entities
8136
8398
  */
8137
8399
  'delete'(
8138
- parameters?: Parameters<Paths.DeleteRelation.PathParameters> | null,
8400
+ parameters?: Parameters<Paths.DeleteRelation.PathParameters & Paths.DeleteRelation.QueryParameters> | null,
8139
8401
  data?: any,
8140
8402
  config?: AxiosRequestConfig
8141
8403
  ): OperationResponse<Paths.DeleteRelation.Responses.$204>
@@ -8198,7 +8460,7 @@ export interface PathsDictionary {
8198
8460
  * Gets Saved View configuration by id.
8199
8461
  */
8200
8462
  'get'(
8201
- parameters?: Parameters<UnknownParamsObject> | null,
8463
+ parameters?: Parameters<Paths.GetSavedView.PathParameters> | null,
8202
8464
  data?: any,
8203
8465
  config?: AxiosRequestConfig
8204
8466
  ): OperationResponse<Paths.GetSavedView.Responses.$200>
@@ -8208,7 +8470,7 @@ export interface PathsDictionary {
8208
8470
  * Updates a saved view
8209
8471
  */
8210
8472
  'put'(
8211
- parameters?: Parameters<UnknownParamsObject> | null,
8473
+ parameters?: Parameters<Paths.UpdateSavedView.PathParameters> | null,
8212
8474
  data?: Paths.UpdateSavedView.RequestBody,
8213
8475
  config?: AxiosRequestConfig
8214
8476
  ): OperationResponse<Paths.UpdateSavedView.Responses.$200>
@@ -8218,7 +8480,7 @@ export interface PathsDictionary {
8218
8480
  * Deletes a saved view
8219
8481
  */
8220
8482
  'delete'(
8221
- parameters?: Parameters<UnknownParamsObject> | null,
8483
+ parameters?: Parameters<Paths.DeleteSavedView.PathParameters> | null,
8222
8484
  data?: any,
8223
8485
  config?: AxiosRequestConfig
8224
8486
  ): OperationResponse<Paths.DeleteSavedView.Responses.$200>
@@ -8254,7 +8516,7 @@ export interface PathsDictionary {
8254
8516
  * Get taxonomy by slug
8255
8517
  */
8256
8518
  'get'(
8257
- parameters?: Parameters<UnknownParamsObject> | null,
8519
+ parameters?: Parameters<Paths.GetTaxonomy.PathParameters> | null,
8258
8520
  data?: any,
8259
8521
  config?: AxiosRequestConfig
8260
8522
  ): OperationResponse<Paths.GetTaxonomy.Responses.$200>
@@ -8266,7 +8528,7 @@ export interface PathsDictionary {
8266
8528
  * Taxonomies autocomplete
8267
8529
  */
8268
8530
  'get'(
8269
- parameters?: Parameters<Paths.TaxonomyAutocomplete.QueryParameters> | null,
8531
+ parameters?: Parameters<Paths.TaxonomyAutocomplete.PathParameters & Paths.TaxonomyAutocomplete.QueryParameters> | null,
8270
8532
  data?: any,
8271
8533
  config?: AxiosRequestConfig
8272
8534
  ): OperationResponse<Paths.TaxonomyAutocomplete.Responses.$200>
@@ -8278,7 +8540,7 @@ export interface PathsDictionary {
8278
8540
  * List taxonomy classifications in an organisation based on taxonomy slug
8279
8541
  */
8280
8542
  'post'(
8281
- parameters?: Parameters<UnknownParamsObject> | null,
8543
+ parameters?: Parameters<Paths.TaxonomiesClassificationsSearch.QueryParameters> | null,
8282
8544
  data?: Paths.TaxonomiesClassificationsSearch.RequestBody,
8283
8545
  config?: AxiosRequestConfig
8284
8546
  ): OperationResponse<Paths.TaxonomiesClassificationsSearch.Responses.$200>
@@ -8290,7 +8552,7 @@ export interface PathsDictionary {
8290
8552
  * Update taxonomies in an organisation based in taxonomy slug
8291
8553
  */
8292
8554
  'post'(
8293
- parameters?: Parameters<UnknownParamsObject> | null,
8555
+ parameters?: Parameters<Paths.UpdateClassificationsForTaxonomy.PathParameters> | null,
8294
8556
  data?: Paths.UpdateClassificationsForTaxonomy.RequestBody,
8295
8557
  config?: AxiosRequestConfig
8296
8558
  ): OperationResponse<Paths.UpdateClassificationsForTaxonomy.Responses.$200>