@epilot/entity-client 4.34.1 → 4.34.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/openapi.d.ts +13 -10
- package/dist/openapi.json +38 -41
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -374,10 +374,7 @@ declare namespace Components {
|
|
|
374
374
|
hint_tooltip_placement?: string;
|
|
375
375
|
};
|
|
376
376
|
type?: "address";
|
|
377
|
-
|
|
378
|
-
* Default fields visible on addresses
|
|
379
|
-
*/
|
|
380
|
-
default_address_fields?: ("postal_code" | "city" | "street" | "street_number" | "plot_area" | "plot_of_land" | "suburb" | "country" | "additional_info" | "coordinates" | "start_date" | "end_date" | "salutation" | "title" | "first_name" | "last_name" | "company_name")[];
|
|
377
|
+
default_address_fields?: /* Default fields visible on addresses */ DefaultAddressFields;
|
|
381
378
|
}
|
|
382
379
|
/**
|
|
383
380
|
* Reference to an address attribute of another entity
|
|
@@ -515,6 +512,7 @@ declare namespace Components {
|
|
|
515
512
|
};
|
|
516
513
|
type?: "relation_address";
|
|
517
514
|
has_primary?: boolean;
|
|
515
|
+
default_address_fields?: /* Default fields visible on addresses */ DefaultAddressFields;
|
|
518
516
|
}
|
|
519
517
|
export type Attribute = /* Textarea or text input */ TextAttribute | /* Link with title and href */ LinkAttribute | /* Date or Datetime picker */ DateAttribute | /* Country picker */ CountryAttribute | /* Yes / No Toggle */ BooleanAttribute | /* Dropdown select */ SelectAttribute | /* Multi Choice Selection */ MultiSelectAttribute | /* Status select */ StatusAttribute | /* Sequence of unique identifiers */ SequenceAttribute | /* Entity Relationship */ RelationAttribute | /* User Relationship */ UserRelationAttribute | /* Address attribute */ AddressAttribute | /* Reference to an address attribute of another entity */ AddressRelationAttribute | /* Reference to a payment method attribute of another entity */ PaymentMethodRelationAttribute | /* Currency input */ CurrencyAttribute | /* Repeatable (add N number of fields) */ RepeatableAttribute | /* Tags */ TagsAttribute | /* Numeric input */ NumberAttribute | /* Consent Management */ ConsentAttribute | /* No UI representation */ InternalAttribute | /* Type of attribute to render N number of ordered fields */ OrderedListAttribute | /* File or Image Attachment */ FileAttribute | /* An attribute that is computed from the entity data. For more details on how to use them, check the docs [here](https://e-pilot.atlassian.net/wiki/spaces/EO/pages/5642977476/How+To+Computed+Schema+Attributes) */ ComputedAttribute | /* Partner Status */ PartnerStatusAttribute | /* Email address for send invitation */ InvitationEmailAttribute | /* Automation entity */ AutomationAttribute | /* Epilot internal user info */ InternalUserAttribute | /* Entity Taxonomy */ PurposeAttribute | /* Shared Partner Organisations */ PartnerOrganisationAttribute;
|
|
520
518
|
/**
|
|
@@ -1768,6 +1766,10 @@ declare namespace Components {
|
|
|
1768
1766
|
};
|
|
1769
1767
|
type?: "date" | "datetime";
|
|
1770
1768
|
}
|
|
1769
|
+
/**
|
|
1770
|
+
* Default fields visible on addresses
|
|
1771
|
+
*/
|
|
1772
|
+
export type DefaultAddressFields = ("postal_code" | "city" | "street" | "street_number" | "plot_area" | "plot_of_land" | "suburb" | "country" | "additional_info" | "coordinates" | "start_date" | "end_date" | "salutation" | "title" | "first_name" | "last_name" | "company_name")[];
|
|
1771
1773
|
export interface ESClusterAssignment {
|
|
1772
1774
|
/**
|
|
1773
1775
|
* The organization for which the cluster assignment is returned
|
|
@@ -2636,7 +2638,7 @@ declare namespace Components {
|
|
|
2636
2638
|
* example:
|
|
2637
2639
|
* customer_relations
|
|
2638
2640
|
*/
|
|
2639
|
-
category?:
|
|
2641
|
+
category?: string;
|
|
2640
2642
|
/**
|
|
2641
2643
|
* example:
|
|
2642
2644
|
* false
|
|
@@ -3010,7 +3012,7 @@ declare namespace Components {
|
|
|
3010
3012
|
* example:
|
|
3011
3013
|
* customer_relations
|
|
3012
3014
|
*/
|
|
3013
|
-
category?:
|
|
3015
|
+
category?: string;
|
|
3014
3016
|
/**
|
|
3015
3017
|
* example:
|
|
3016
3018
|
* false
|
|
@@ -10989,8 +10991,8 @@ export interface OperationMethods {
|
|
|
10989
10991
|
/**
|
|
10990
10992
|
* bulkDeleteClassifications - bulkDeleteClassifications
|
|
10991
10993
|
*
|
|
10992
|
-
* Permanently deletes taxonomy classifications. The classifications are deleted through a bulk
|
|
10993
|
-
* async operation which also deletes all references of the deleted classifications from the entities
|
|
10994
|
+
* Permanently deletes taxonomy classifications. The classifications are deleted through a bulk
|
|
10995
|
+
* async operation which also deletes all references of the deleted classifications from the entities
|
|
10994
10996
|
* referencing them.
|
|
10995
10997
|
*
|
|
10996
10998
|
*/
|
|
@@ -12077,8 +12079,8 @@ export interface PathsDictionary {
|
|
|
12077
12079
|
/**
|
|
12078
12080
|
* bulkDeleteClassifications - bulkDeleteClassifications
|
|
12079
12081
|
*
|
|
12080
|
-
* Permanently deletes taxonomy classifications. The classifications are deleted through a bulk
|
|
12081
|
-
* async operation which also deletes all references of the deleted classifications from the entities
|
|
12082
|
+
* Permanently deletes taxonomy classifications. The classifications are deleted through a bulk
|
|
12083
|
+
* async operation which also deletes all references of the deleted classifications from the entities
|
|
12082
12084
|
* referencing them.
|
|
12083
12085
|
*
|
|
12084
12086
|
*/
|
|
@@ -12290,6 +12292,7 @@ export type ConsentAttribute = Components.Schemas.ConsentAttribute;
|
|
|
12290
12292
|
export type CountryAttribute = Components.Schemas.CountryAttribute;
|
|
12291
12293
|
export type CurrencyAttribute = Components.Schemas.CurrencyAttribute;
|
|
12292
12294
|
export type DateAttribute = Components.Schemas.DateAttribute;
|
|
12295
|
+
export type DefaultAddressFields = Components.Schemas.DefaultAddressFields;
|
|
12293
12296
|
export type ESClusterAssignment = Components.Schemas.ESClusterAssignment;
|
|
12294
12297
|
export type Entity = Components.Schemas.Entity;
|
|
12295
12298
|
export type EntityAcl = Components.Schemas.EntityAcl;
|
package/dist/openapi.json
CHANGED
|
@@ -3043,7 +3043,7 @@
|
|
|
3043
3043
|
"post": {
|
|
3044
3044
|
"operationId": "bulkDeleteClassifications",
|
|
3045
3045
|
"summary": "bulkDeleteClassifications",
|
|
3046
|
-
"description": "Permanently deletes taxonomy classifications. The classifications are deleted through a bulk
|
|
3046
|
+
"description": "Permanently deletes taxonomy classifications. The classifications are deleted through a bulk\nasync operation which also deletes all references of the deleted classifications from the entities\nreferencing them.\n",
|
|
3047
3047
|
"tags": [
|
|
3048
3048
|
"Taxonomy"
|
|
3049
3049
|
],
|
|
@@ -3737,16 +3737,7 @@
|
|
|
3737
3737
|
},
|
|
3738
3738
|
"category": {
|
|
3739
3739
|
"type": "string",
|
|
3740
|
-
"example": "customer_relations"
|
|
3741
|
-
"enum": [
|
|
3742
|
-
"customer_relations",
|
|
3743
|
-
"sales",
|
|
3744
|
-
"product_hub",
|
|
3745
|
-
"contracts",
|
|
3746
|
-
"journeys",
|
|
3747
|
-
"messaging",
|
|
3748
|
-
"system"
|
|
3749
|
-
]
|
|
3740
|
+
"example": "customer_relations"
|
|
3750
3741
|
},
|
|
3751
3742
|
"published": {
|
|
3752
3743
|
"type": "boolean",
|
|
@@ -5146,6 +5137,38 @@
|
|
|
5146
5137
|
}
|
|
5147
5138
|
]
|
|
5148
5139
|
},
|
|
5140
|
+
"DefaultAddressFields": {
|
|
5141
|
+
"type": "array",
|
|
5142
|
+
"description": "Default fields visible on addresses",
|
|
5143
|
+
"items": {
|
|
5144
|
+
"type": "string",
|
|
5145
|
+
"enum": [
|
|
5146
|
+
"postal_code",
|
|
5147
|
+
"city",
|
|
5148
|
+
"street",
|
|
5149
|
+
"street_number",
|
|
5150
|
+
"plot_area",
|
|
5151
|
+
"plot_of_land",
|
|
5152
|
+
"suburb",
|
|
5153
|
+
"country",
|
|
5154
|
+
"additional_info",
|
|
5155
|
+
"coordinates",
|
|
5156
|
+
"start_date",
|
|
5157
|
+
"end_date",
|
|
5158
|
+
"salutation",
|
|
5159
|
+
"title",
|
|
5160
|
+
"first_name",
|
|
5161
|
+
"last_name",
|
|
5162
|
+
"company_name"
|
|
5163
|
+
]
|
|
5164
|
+
},
|
|
5165
|
+
"default": [
|
|
5166
|
+
"postal_code",
|
|
5167
|
+
"city",
|
|
5168
|
+
"street",
|
|
5169
|
+
"street_number"
|
|
5170
|
+
]
|
|
5171
|
+
},
|
|
5149
5172
|
"AddressAttribute": {
|
|
5150
5173
|
"allOf": [
|
|
5151
5174
|
{
|
|
@@ -5162,36 +5185,7 @@
|
|
|
5162
5185
|
]
|
|
5163
5186
|
},
|
|
5164
5187
|
"default_address_fields": {
|
|
5165
|
-
"
|
|
5166
|
-
"default": [
|
|
5167
|
-
"postal_code",
|
|
5168
|
-
"city",
|
|
5169
|
-
"street",
|
|
5170
|
-
"street_number"
|
|
5171
|
-
],
|
|
5172
|
-
"type": "array",
|
|
5173
|
-
"items": {
|
|
5174
|
-
"type": "string",
|
|
5175
|
-
"enum": [
|
|
5176
|
-
"postal_code",
|
|
5177
|
-
"city",
|
|
5178
|
-
"street",
|
|
5179
|
-
"street_number",
|
|
5180
|
-
"plot_area",
|
|
5181
|
-
"plot_of_land",
|
|
5182
|
-
"suburb",
|
|
5183
|
-
"country",
|
|
5184
|
-
"additional_info",
|
|
5185
|
-
"coordinates",
|
|
5186
|
-
"start_date",
|
|
5187
|
-
"end_date",
|
|
5188
|
-
"salutation",
|
|
5189
|
-
"title",
|
|
5190
|
-
"first_name",
|
|
5191
|
-
"last_name",
|
|
5192
|
-
"company_name"
|
|
5193
|
-
]
|
|
5194
|
-
}
|
|
5188
|
+
"$ref": "#/components/schemas/DefaultAddressFields"
|
|
5195
5189
|
}
|
|
5196
5190
|
}
|
|
5197
5191
|
}
|
|
@@ -5214,6 +5208,9 @@
|
|
|
5214
5208
|
},
|
|
5215
5209
|
"has_primary": {
|
|
5216
5210
|
"type": "boolean"
|
|
5211
|
+
},
|
|
5212
|
+
"default_address_fields": {
|
|
5213
|
+
"$ref": "#/components/schemas/DefaultAddressFields"
|
|
5217
5214
|
}
|
|
5218
5215
|
}
|
|
5219
5216
|
}
|