@epilot/entity-client 4.18.1-rc.1 → 4.18.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/definition.js +1 -1
- package/dist/openapi-runtime.json +157 -222
- package/dist/openapi.d.ts +72 -15
- package/dist/openapi.json +230 -554
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -8,6 +8,67 @@ 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 EntityRelationsModeQueryParam = string;
|
|
28
|
+
export type EntitySlugPathParam = /**
|
|
29
|
+
* URL-friendly identifier for the entity schema
|
|
30
|
+
* example:
|
|
31
|
+
* contact
|
|
32
|
+
*/
|
|
33
|
+
Schemas.EntitySlug;
|
|
34
|
+
export type ExcludeSchemasQueryParam = /**
|
|
35
|
+
* URL-friendly identifier for the entity schema
|
|
36
|
+
* example:
|
|
37
|
+
* contact
|
|
38
|
+
*/
|
|
39
|
+
Schemas.EntitySlug[];
|
|
40
|
+
export type FromPageQueryParam = number;
|
|
41
|
+
export type HydrateEntitiesQueryParam = boolean;
|
|
42
|
+
export type IncludeReverseQueryParam = boolean;
|
|
43
|
+
export type IncludeSchemasQueryParam = /**
|
|
44
|
+
* URL-friendly identifier for the entity schema
|
|
45
|
+
* example:
|
|
46
|
+
* contact
|
|
47
|
+
*/
|
|
48
|
+
Schemas.EntitySlug[];
|
|
49
|
+
export type SavedViewIdPathParam = /* Generated uuid for a saved view */ Schemas.SavedViewId /* uuid */;
|
|
50
|
+
export type TaxonomySlugPathParam = string;
|
|
51
|
+
export type TaxonomySlugQueryParam = string;
|
|
52
|
+
}
|
|
53
|
+
export interface PathParameters {
|
|
54
|
+
EntityIdPathParam?: Parameters.EntityIdPathParam;
|
|
55
|
+
EntitySlugPathParam?: Parameters.EntitySlugPathParam;
|
|
56
|
+
TaxonomySlugPathParam?: Parameters.TaxonomySlugPathParam;
|
|
57
|
+
SavedViewIdPathParam?: Parameters.SavedViewIdPathParam;
|
|
58
|
+
ActivityIdPathParam?: Parameters.ActivityIdPathParam;
|
|
59
|
+
}
|
|
60
|
+
export interface QueryParameters {
|
|
61
|
+
TaxonomySlugQueryParam?: Parameters.TaxonomySlugQueryParam;
|
|
62
|
+
AsyncOperationQueryParam?: Parameters.AsyncOperationQueryParam;
|
|
63
|
+
HydrateEntitiesQueryParam?: Parameters.HydrateEntitiesQueryParam;
|
|
64
|
+
ActivityIdQueryParam?: Parameters.ActivityIdQueryParam;
|
|
65
|
+
FromPageQueryParam?: Parameters.FromPageQueryParam;
|
|
66
|
+
IncludeReverseQueryParam?: Parameters.IncludeReverseQueryParam;
|
|
67
|
+
IncludeSchemasQueryParam?: Parameters.IncludeSchemasQueryParam;
|
|
68
|
+
ExcludeSchemasQueryParam?: Parameters.ExcludeSchemasQueryParam;
|
|
69
|
+
EntityRelationsModeQueryParam?: Parameters.EntityRelationsModeQueryParam;
|
|
70
|
+
DryRunQueryParam?: Parameters.DryRunQueryParam;
|
|
71
|
+
}
|
|
11
72
|
namespace Schemas {
|
|
12
73
|
export interface Activity {
|
|
13
74
|
/**
|
|
@@ -1619,7 +1680,6 @@ declare namespace Components {
|
|
|
1619
1680
|
* Enable the thumbnail column
|
|
1620
1681
|
*/
|
|
1621
1682
|
enable_thumbnails?: boolean;
|
|
1622
|
-
classic_view?: string; // uri-reference
|
|
1623
1683
|
}
|
|
1624
1684
|
export type EntityId = string; // uuid
|
|
1625
1685
|
/**
|
|
@@ -6259,8 +6319,8 @@ declare namespace Paths {
|
|
|
6259
6319
|
Components.Schemas.EntitySlug;
|
|
6260
6320
|
}
|
|
6261
6321
|
export interface PathParameters {
|
|
6262
|
-
slug: Parameters.Slug;
|
|
6263
6322
|
id: Parameters.Id;
|
|
6323
|
+
slug: Parameters.Slug;
|
|
6264
6324
|
}
|
|
6265
6325
|
export interface QueryParameters {
|
|
6266
6326
|
hydrate?: Parameters.Hydrate;
|
|
@@ -6405,7 +6465,12 @@ declare namespace Paths {
|
|
|
6405
6465
|
}
|
|
6406
6466
|
namespace GetRelatedEntitiesCount {
|
|
6407
6467
|
namespace Parameters {
|
|
6408
|
-
export type ExcludeSchemas =
|
|
6468
|
+
export type ExcludeSchemas = /**
|
|
6469
|
+
* URL-friendly identifier for the entity schema
|
|
6470
|
+
* example:
|
|
6471
|
+
* contact
|
|
6472
|
+
*/
|
|
6473
|
+
Components.Schemas.EntitySlug[];
|
|
6409
6474
|
export type Id = Components.Schemas.EntityId /* uuid */;
|
|
6410
6475
|
export type Slug = /**
|
|
6411
6476
|
* URL-friendly identifier for the entity schema
|
|
@@ -6533,6 +6598,7 @@ declare namespace Paths {
|
|
|
6533
6598
|
* contact
|
|
6534
6599
|
*/
|
|
6535
6600
|
Components.Schemas.EntitySlug[];
|
|
6601
|
+
export type Mode = string;
|
|
6536
6602
|
export type Size = number;
|
|
6537
6603
|
export type Slug = /**
|
|
6538
6604
|
* URL-friendly identifier for the entity schema
|
|
@@ -6552,6 +6618,7 @@ declare namespace Paths {
|
|
|
6552
6618
|
size?: Parameters.Size;
|
|
6553
6619
|
include_schemas?: Parameters.IncludeSchemas;
|
|
6554
6620
|
exclude_schemas?: Parameters.ExcludeSchemas;
|
|
6621
|
+
mode?: Parameters.Mode;
|
|
6555
6622
|
}
|
|
6556
6623
|
namespace Responses {
|
|
6557
6624
|
export type $200 = Components.Schemas.GetRelationsRespWithPagination;
|
|
@@ -6621,12 +6688,7 @@ declare namespace Paths {
|
|
|
6621
6688
|
}
|
|
6622
6689
|
namespace GetTaxonomy {
|
|
6623
6690
|
namespace Parameters {
|
|
6624
|
-
export type TaxonomySlug =
|
|
6625
|
-
* URL-friendly name for taxonomy
|
|
6626
|
-
* example:
|
|
6627
|
-
* purpose
|
|
6628
|
-
*/
|
|
6629
|
-
Components.Schemas.TaxonomySlug;
|
|
6691
|
+
export type TaxonomySlug = string;
|
|
6630
6692
|
}
|
|
6631
6693
|
export interface PathParameters {
|
|
6632
6694
|
taxonomySlug: Parameters.TaxonomySlug;
|
|
@@ -6704,12 +6766,7 @@ declare namespace Paths {
|
|
|
6704
6766
|
* contact
|
|
6705
6767
|
*/
|
|
6706
6768
|
Components.Schemas.EntitySlug;
|
|
6707
|
-
export type TaxonomySlug =
|
|
6708
|
-
* URL-friendly name for taxonomy
|
|
6709
|
-
* example:
|
|
6710
|
-
* purpose
|
|
6711
|
-
*/
|
|
6712
|
-
Components.Schemas.TaxonomySlug;
|
|
6769
|
+
export type TaxonomySlug = string;
|
|
6713
6770
|
}
|
|
6714
6771
|
export interface PathParameters {
|
|
6715
6772
|
slug: Parameters.Slug;
|