Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generated SDK #8493 #70

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/create-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Create Pull Request

on:
push:
branches:
- 'fireblocks-api-spec/generated/*'

jobs:
create-pull-request:
runs-on: ubuntu-latest

steps:
- name: Check out repository code
uses: actions/checkout@v4

- name: Create pull request
run: |
gh pr create \
--title "${{ github.event.commits[0].message }}" \
--body "This PR was automatically generated." \
--base master \
--head ${{ github.ref }} \
--reviewer asafs932,zoharsf,YoavBZ
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
45 changes: 0 additions & 45 deletions CHANGELOG.md

This file was deleted.

8 changes: 4 additions & 4 deletions api/policy-editor-beta-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ import { PublishResult } from '../models';
export const PolicyEditorBetaApiAxiosParamCreator = function (configuration?: Configuration) {
return {
/**
* Returns the active policy and its validation. </br> **Note:** These endpoints are currently in beta and might be subject to changes. If you want to participate and learn more about the Fireblocks TAP, please contact your Fireblocks Customer Success Manager or send an email to CSM@fireblocks.com.
* Returns the active policy and its validation </br> **Note:** These endpoints are currently in beta and might be subject to changes. If you want to participate and learn more about the Fireblocks TAP, please contact your Fireblocks Customer Success Manager or send an email to CSM@fireblocks.com.
* @summary Get the active policy and its validation
* @param {*} [options] Override http request option.
* @throws {RequiredError}
Expand Down Expand Up @@ -237,7 +237,7 @@ export const PolicyEditorBetaApiFp = function(configuration?: Configuration) {
const localVarAxiosParamCreator = PolicyEditorBetaApiAxiosParamCreator(configuration)
return {
/**
* Returns the active policy and its validation. </br> **Note:** These endpoints are currently in beta and might be subject to changes. If you want to participate and learn more about the Fireblocks TAP, please contact your Fireblocks Customer Success Manager or send an email to CSM@fireblocks.com.
* Returns the active policy and its validation </br> **Note:** These endpoints are currently in beta and might be subject to changes. If you want to participate and learn more about the Fireblocks TAP, please contact your Fireblocks Customer Success Manager or send an email to CSM@fireblocks.com.
* @summary Get the active policy and its validation
* @param {*} [options] Override http request option.
* @throws {RequiredError}
Expand Down Expand Up @@ -313,7 +313,7 @@ export const PolicyEditorBetaApiFactory = function (configuration?: Configuratio
const localVarFp = PolicyEditorBetaApiFp(configuration)
return {
/**
* Returns the active policy and its validation. </br> **Note:** These endpoints are currently in beta and might be subject to changes. If you want to participate and learn more about the Fireblocks TAP, please contact your Fireblocks Customer Success Manager or send an email to CSM@fireblocks.com.
* Returns the active policy and its validation </br> **Note:** These endpoints are currently in beta and might be subject to changes. If you want to participate and learn more about the Fireblocks TAP, please contact your Fireblocks Customer Success Manager or send an email to CSM@fireblocks.com.
* @summary Get the active policy and its validation
* @param {*} [options] Override http request option.
* @throws {RequiredError}
Expand Down Expand Up @@ -434,7 +434,7 @@ export interface PolicyEditorBetaApiUpdateDraftRequest {
*/
export class PolicyEditorBetaApi extends BaseAPI {
/**
* Returns the active policy and its validation. </br> **Note:** These endpoints are currently in beta and might be subject to changes. If you want to participate and learn more about the Fireblocks TAP, please contact your Fireblocks Customer Success Manager or send an email to CSM@fireblocks.com.
* Returns the active policy and its validation </br> **Note:** These endpoints are currently in beta and might be subject to changes. If you want to participate and learn more about the Fireblocks TAP, please contact your Fireblocks Customer Success Manager or send an email to CSM@fireblocks.com.
* @summary Get the active policy and its validation
* @param {*} [options] Override http request option.
* @throws {RequiredError}
Expand Down
2 changes: 1 addition & 1 deletion docs/apis/PolicyEditorBetaApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Method | HTTP request | Description
# **getActivePolicy**
> PolicyAndValidationResponse getActivePolicy()

Returns the active policy and its validation. </br> **Note:** These endpoints are currently in beta and might be subject to changes. If you want to participate and learn more about the Fireblocks TAP, please contact your Fireblocks Customer Success Manager or send an email to CSM@fireblocks.com.
Returns the active policy and its validation </br> **Note:** These endpoints are currently in beta and might be subject to changes. If you want to participate and learn more about the Fireblocks TAP, please contact your Fireblocks Customer Success Manager or send an email to CSM@fireblocks.com.

### Example

Expand Down
Loading