Skip to content

Commit 39dc116

Browse files
Excavator: Upgrade API Version (#285)
1 parent f1ebae2 commit 39dc116

24 files changed

+889
-179
lines changed

.excavator.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
auto-label:
44
names:
5-
versions-props/upgrade-all: [ "merge when ready" ]
6-
circleci/manage-circleci: [ "merge when ready" ]
5+
versions-props/upgrade-all: ["merge when ready"]
6+
circleci/manage-circleci: ["merge when ready"]
77
tags:
8-
donotmerge: [ "do not merge" ]
9-
roomba: [ "merge when ready" ]
10-
automerge: [ "merge when ready" ]
11-
autorelease: [ "autorelease" ]
8+
roomba: ["merge when ready"]
9+
automerge: ["merge when ready"]
10+
autorelease: ["autorelease"]

docs-snippets-npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"sls": {
2525
"dependencies": {
2626
"com.palantir.foundry.api:api-gateway": {
27-
"minVersion": "1.1300.0",
27+
"minVersion": "1.1303.0",
2828
"maxVersion": "1.x.x",
2929
"optional": false
3030
}

docs-snippets-npm/src/index.ts

Lines changed: 31 additions & 31 deletions
Large diffs are not rendered by default.

docs/v2/Ontologies/Action.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Name | Type | Description | Notes |
2525
**ontology** | OntologyIdentifier | | |
2626
**action** | ActionTypeApiName | The API name of the action to apply. To find the API name for your action, use the **List action types** endpoint or check the **Ontology Manager**. | |
2727
**parameters** | Dict[ParameterId, Optional[DataValue]] | | |
28-
**branch** | Optional[FoundryBranch] | The Foundry branch to apply the action against. If not specified, the default branch is used. | [optional] |
28+
**branch** | Optional[FoundryBranch] | The Foundry branch to apply the action against. If not specified, the default branch is used. Branches are an experimental feature and not all workflows are supported. | [optional] |
2929
**options** | Optional[ApplyActionRequestOptions] | | [optional] |
3030
**sdk_package_rid** | Optional[SdkPackageRid] | The package rid of the generated SDK. | [optional] |
3131
**sdk_version** | Optional[SdkVersion] | The version of the generated SDK. | [optional] |
@@ -48,7 +48,7 @@ ontology = "palantir"
4848
action = "rename-employee"
4949
# Dict[ParameterId, Optional[DataValue]]
5050
parameters = {"id": 80060, "newName": "Anna Smith-Doe"}
51-
# Optional[FoundryBranch] | The Foundry branch to apply the action against. If not specified, the default branch is used.
51+
# Optional[FoundryBranch] | The Foundry branch to apply the action against. If not specified, the default branch is used. Branches are an experimental feature and not all workflows are supported.
5252
branch = None
5353
# Optional[ApplyActionRequestOptions]
5454
options = None
@@ -107,7 +107,7 @@ Name | Type | Description | Notes |
107107
**ontology** | OntologyIdentifier | | |
108108
**action** | ActionTypeApiName | The API name of the action to apply. To find the API name for your action, use the **List action types** endpoint or check the **Ontology Manager**. | |
109109
**requests** | List[BatchApplyActionRequestItem] | | |
110-
**branch** | Optional[FoundryBranch] | The Foundry branch to apply the action against. If not specified, the default branch is used. | [optional] |
110+
**branch** | Optional[FoundryBranch] | The Foundry branch to apply the action against. If not specified, the default branch is used. Branches are an experimental feature and not all workflows are supported. | [optional] |
111111
**options** | Optional[BatchApplyActionRequestOptions] | | [optional] |
112112
**sdk_package_rid** | Optional[SdkPackageRid] | The package rid of the generated SDK. | [optional] |
113113
**sdk_version** | Optional[SdkVersion] | The version of the generated SDK. | [optional] |
@@ -133,7 +133,7 @@ requests = [
133133
{"parameters": {"id": 80060, "newName": "Anna Smith-Doe"}},
134134
{"parameters": {"id": 80061, "newName": "Joe Bloggs"}},
135135
]
136-
# Optional[FoundryBranch] | The Foundry branch to apply the action against. If not specified, the default branch is used.
136+
# Optional[FoundryBranch] | The Foundry branch to apply the action against. If not specified, the default branch is used. Branches are an experimental feature and not all workflows are supported.
137137
branch = None
138138
# Optional[BatchApplyActionRequestOptions]
139139
options = None

docs/v2/Ontologies/ActionType.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Name | Type | Description | Notes |
1616
------------- | ------------- | ------------- | ------------- |
1717
**ontology** | OntologyIdentifier | | |
1818
**action_type** | ActionTypeApiName | The name of the action type in the API. | |
19-
**branch** | Optional[FoundryBranch] | The Foundry branch to load the action type definition from. If not specified, the default branch will be used. | [optional] |
19+
**branch** | Optional[FoundryBranch] | The Foundry branch to load the action type definition from. If not specified, the default branch will be used. Branches are an experimental feature and not all workflows are supported. | [optional] |
2020

2121
### Return type
2222
**ActionTypeV2**
@@ -34,7 +34,7 @@ client = FoundryClient(auth=foundry_sdk.UserTokenAuth(...), hostname="example.pa
3434
ontology = "palantir"
3535
# ActionTypeApiName | The name of the action type in the API.
3636
action_type = "promote-employee"
37-
# Optional[FoundryBranch] | The Foundry branch to load the action type definition from. If not specified, the default branch will be used.
37+
# Optional[FoundryBranch] | The Foundry branch to load the action type definition from. If not specified, the default branch will be used. Branches are an experimental feature and not all workflows are supported.
3838
branch = None
3939

4040

@@ -70,7 +70,7 @@ Name | Type | Description | Notes |
7070
------------- | ------------- | ------------- | ------------- |
7171
**ontology** | OntologyIdentifier | | |
7272
**action_type_rid** | ActionTypeRid | The RID of the action type. | |
73-
**branch** | Optional[FoundryBranch] | The Foundry branch to load the action type definition from. If not specified, the default branch will be used. | [optional] |
73+
**branch** | Optional[FoundryBranch] | The Foundry branch to load the action type definition from. If not specified, the default branch will be used. Branches are an experimental feature and not all workflows are supported. | [optional] |
7474

7575
### Return type
7676
**ActionTypeV2**
@@ -88,7 +88,7 @@ client = FoundryClient(auth=foundry_sdk.UserTokenAuth(...), hostname="example.pa
8888
ontology = "palantir"
8989
# ActionTypeRid | The RID of the action type.
9090
action_type_rid = "ri.ontology.main.action-type.7ed72754-7491-428a-bb18-4d7296eb2167"
91-
# Optional[FoundryBranch] | The Foundry branch to load the action type definition from. If not specified, the default branch will be used.
91+
# Optional[FoundryBranch] | The Foundry branch to load the action type definition from. If not specified, the default branch will be used. Branches are an experimental feature and not all workflows are supported.
9292
branch = None
9393

9494

@@ -128,7 +128,7 @@ results available, at least one result will be present in the response.
128128
Name | Type | Description | Notes |
129129
------------- | ------------- | ------------- | ------------- |
130130
**ontology** | OntologyIdentifier | | |
131-
**branch** | Optional[FoundryBranch] | The Foundry branch to list the action types from. If not specified, the default branch will be used. | [optional] |
131+
**branch** | Optional[FoundryBranch] | The Foundry branch to list the action types from. If not specified, the default branch will be used. Branches are an experimental feature and not all workflows are supported. | [optional] |
132132
**page_size** | Optional[PageSize] | The desired size of the page to be returned. Defaults to 500. See [page sizes](https://palantir.com/docs/foundry/api/general/overview/paging/#page-sizes) for details. | [optional] |
133133
**page_token** | Optional[PageToken] | | [optional] |
134134

@@ -146,7 +146,7 @@ client = FoundryClient(auth=foundry_sdk.UserTokenAuth(...), hostname="example.pa
146146

147147
# OntologyIdentifier
148148
ontology = "palantir"
149-
# Optional[FoundryBranch] | The Foundry branch to list the action types from. If not specified, the default branch will be used.
149+
# Optional[FoundryBranch] | The Foundry branch to list the action types from. If not specified, the default branch will be used. Branches are an experimental feature and not all workflows are supported.
150150
branch = None
151151
# Optional[PageSize] | The desired size of the page to be returned. Defaults to 500. See [page sizes](https://palantir.com/docs/foundry/api/general/overview/paging/#page-sizes) for details.
152152
page_size = None

docs/v2/Ontologies/LinkedObject.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Name | Type | Description | Notes |
2020
**primary_key** | PropertyValueEscapedString | The primary key of the object from which the links originate. To look up the expected primary key for your object type, use the `Get object type` endpoint or the **Ontology Manager**. | |
2121
**link_type** | LinkTypeApiName | The API name of the link that exists between the object and the requested objects. To find the API name for your link type, check the **Ontology Manager**. | |
2222
**linked_object_primary_key** | PropertyValueEscapedString | The primary key of the requested linked object. To look up the expected primary key for your object type, use the `Get object type` endpoint (passing the linked object type) or the **Ontology Manager**. | |
23-
**branch** | Optional[FoundryBranch] | The Foundry branch to load the object set for multiple object types. If not specified, the default branch is used. | [optional] |
23+
**branch** | Optional[FoundryBranch] | The Foundry branch to load the object set for multiple object types. If not specified, the default branch is used. Branches are an experimental feature and not all workflows are supported. | [optional] |
2424
**exclude_rid** | Optional[bool] | A flag to exclude the retrieval of the `__rid` property. Setting this to true may improve performance of this endpoint for object types in OSV2. | [optional] |
2525
**sdk_package_rid** | Optional[SdkPackageRid] | The package rid of the generated SDK. | [optional] |
2626
**sdk_version** | Optional[SdkVersion] | The version of the generated SDK. | [optional] |
@@ -48,7 +48,7 @@ primary_key = 50030
4848
link_type = "directReport"
4949
# PropertyValueEscapedString | The primary key of the requested linked object. To look up the expected primary key for your object type, use the `Get object type` endpoint (passing the linked object type) or the **Ontology Manager**.
5050
linked_object_primary_key = 80060
51-
# Optional[FoundryBranch] | The Foundry branch to load the object set for multiple object types. If not specified, the default branch is used.
51+
# Optional[FoundryBranch] | The Foundry branch to load the object set for multiple object types. If not specified, the default branch is used. Branches are an experimental feature and not all workflows are supported.
5252
branch = None
5353
# Optional[bool] | A flag to exclude the retrieval of the `__rid` property. Setting this to true may improve performance of this endpoint for object types in OSV2.
5454
exclude_rid = None
@@ -117,7 +117,7 @@ Name | Type | Description | Notes |
117117
**object_type** | ObjectTypeApiName | The API name of the object type. To find the API name, use the **List object types** endpoint or check the **Ontology Manager**. | |
118118
**primary_key** | PropertyValueEscapedString | The primary key of the object from which the links originate. To look up the expected primary key for your object type, use the `Get object type` endpoint or the **Ontology Manager**. | |
119119
**link_type** | LinkTypeApiName | The API name of the link that exists between the object and the requested objects. To find the API name for your link type, check the **Ontology Manager**. | |
120-
**branch** | Optional[FoundryBranch] | The Foundry branch to list linked objects from. If not specified, the default branch will be used. | [optional] |
120+
**branch** | Optional[FoundryBranch] | The Foundry branch to list linked objects from. If not specified, the default branch will be used. Branches are an experimental feature and not all workflows are supported. | [optional] |
121121
**exclude_rid** | Optional[bool] | A flag to exclude the retrieval of the `__rid` property. Setting this to true may improve performance of this endpoint for object types in OSV2. | [optional] |
122122
**order_by** | Optional[OrderBy] | | [optional] |
123123
**page_size** | Optional[PageSize] | The desired size of the page to be returned. Defaults to 1,000. See [page sizes](https://palantir.com/docs/foundry/api/general/overview/paging/#page-sizes) for details. | [optional] |
@@ -147,7 +147,7 @@ object_type = "employee"
147147
primary_key = 50030
148148
# LinkTypeApiName | The API name of the link that exists between the object and the requested objects. To find the API name for your link type, check the **Ontology Manager**.
149149
link_type = "directReport"
150-
# Optional[FoundryBranch] | The Foundry branch to list linked objects from. If not specified, the default branch will be used.
150+
# Optional[FoundryBranch] | The Foundry branch to list linked objects from. If not specified, the default branch will be used. Branches are an experimental feature and not all workflows are supported.
151151
branch = None
152152
# Optional[bool] | A flag to exclude the retrieval of the `__rid` property. Setting this to true may improve performance of this endpoint for object types in OSV2.
153153
exclude_rid = None

0 commit comments

Comments
 (0)