Skip to content

Commit 3ddf8e7

Browse files
chore: update SDK to API version 1.77.1
1 parent 5e9c482 commit 3ddf8e7

383 files changed

Lines changed: 1022 additions & 382 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.openapi-generator/FILES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ src/main/java/com/linkbreakers/model/Action.java
6565
src/main/java/com/linkbreakers/model/AddWorkflowStepRelationshipResponse.java
6666
src/main/java/com/linkbreakers/model/AnalyticsDashboard.java
6767
src/main/java/com/linkbreakers/model/ApiTag.java
68+
src/main/java/com/linkbreakers/model/ApplyQrcodeTemplateRequest.java
69+
src/main/java/com/linkbreakers/model/ApplyQrcodeTemplateResponse.java
6870
src/main/java/com/linkbreakers/model/AutoLayoutWorkflowResponse.java
6971
src/main/java/com/linkbreakers/model/BackgroundOptions.java
7072
src/main/java/com/linkbreakers/model/BreakdownDataPoint.java

OPENAPI_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.76.1
1+
1.77.1

api/openapi.yaml

Lines changed: 62 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ info:
55
url: https://app.linkbreakers.com
66
description: This is a documentation of all the APIs of Linkbreakers
77
title: Linkbreakers API
8-
version: 1.76.1
8+
version: 1.77.1
99
servers:
1010
- url: https://api.linkbreakers.com
1111
security:
@@ -3206,6 +3206,39 @@ paths:
32063206
- Workspaces
32073207
x-accepts:
32083208
- application/json
3209+
/v1/qrcode-designs/apply-template:
3210+
post:
3211+
description: Copy all design settings from a community QR code template to an
3212+
existing link's QR code design. This replaces the current design with the
3213+
template's styling.
3214+
operationId: QrcodeDesignService_ApplyTemplate
3215+
requestBody:
3216+
content:
3217+
application/json:
3218+
schema:
3219+
$ref: "#/components/schemas/ApplyQrcodeTemplateRequest"
3220+
required: true
3221+
responses:
3222+
"200":
3223+
content:
3224+
application/json:
3225+
schema:
3226+
$ref: "#/components/schemas/ApplyQrcodeTemplateResponse"
3227+
description: Everything worked as expected.
3228+
default:
3229+
content:
3230+
application/json:
3231+
schema:
3232+
$ref: "#/components/schemas/ErrorResponse"
3233+
description: Unexpected error
3234+
security:
3235+
- bearerAuth: []
3236+
summary: Apply a QR code template to a link
3237+
tags:
3238+
- QR Code Designs
3239+
x-content-type: application/json
3240+
x-accepts:
3241+
- application/json
32093242
/v1/qrcode-designs/{id}:
32103243
delete:
32113244
description: Remove a QR code design that is no longer in use by any assets.
@@ -5064,6 +5097,34 @@ components:
50645097
format: date-time
50655098
type: string
50665099
title: AnalyticsDashboard represents a workspace's analytics dashboard
5100+
ApplyQrcodeTemplateRequest:
5101+
description: ApplyQrcodeTemplateRequest applies a community template's design
5102+
to an existing link's QR code.
5103+
example:
5104+
linkId: 550e8400-e29b-41d4-a716-446655440000
5105+
templateSlug: google-dinosaur
5106+
properties:
5107+
linkId:
5108+
example: 550e8400-e29b-41d4-a716-446655440000
5109+
title: The ID of the link to apply the template to (UUID)
5110+
type: string
5111+
templateSlug:
5112+
example: google-dinosaur
5113+
title: The slug of the QR code template to apply
5114+
type: string
5115+
required:
5116+
- linkId
5117+
- templateSlug
5118+
ApplyQrcodeTemplateResponse:
5119+
description: ApplyQrcodeTemplateResponse returns the updated QR code design
5120+
after applying the template.
5121+
example:
5122+
qrcodeDesign: ""
5123+
properties:
5124+
qrcodeDesign:
5125+
allOf:
5126+
- $ref: "#/components/schemas/QrcodeDesign"
5127+
title: The updated QR code design with the template's styling applied
50675128
AutoLayoutWorkflowResponse:
50685129
example:
50695130
stepsRepositioned: 0

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'java'
44
apply plugin: 'com.diffplug.spotless'
55

66
group = 'com.linkbreakers'
7-
version = '1.76.1'
7+
version = '1.77.1'
88

99
buildscript {
1010
repositories {

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "com.linkbreakers",
44
name := "linkbreakers-sdk",
5-
version := "1.76.1",
5+
version := "1.77.1",
66
scalaVersion := "2.11.12",
77
scalacOptions ++= Seq("-feature"),
88
compile / javacOptions ++= Seq("-Xlint:deprecation"),

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.linkbreakers</groupId>
88
<artifactId>linkbreakers-sdk</artifactId>
9-
<version>1.76.1</version>
9+
<version>1.77.1</version>
1010
<packaging>jar</packaging>
1111

1212
<name>Linkbreakers SDK</name>

src/main/java/com/linkbreakers/ApiCallback.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Linkbreakers API
33
* This is a documentation of all the APIs of Linkbreakers
44
*
5-
* The version of the OpenAPI document: 1.76.1
5+
* The version of the OpenAPI document: 1.77.1
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/main/java/com/linkbreakers/ApiClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Linkbreakers API
33
* This is a documentation of all the APIs of Linkbreakers
44
*
5-
* The version of the OpenAPI document: 1.76.1
5+
* The version of the OpenAPI document: 1.77.1
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -142,7 +142,7 @@ protected void init() {
142142
json = new JSON();
143143

144144
// Set default User-Agent.
145-
setUserAgent("OpenAPI-Generator/1.76.1/java");
145+
setUserAgent("OpenAPI-Generator/1.77.1/java");
146146

147147
authentications = new HashMap<String, Authentication>();
148148
}

src/main/java/com/linkbreakers/ApiException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Linkbreakers API
33
* This is a documentation of all the APIs of Linkbreakers
44
*
5-
* The version of the OpenAPI document: 1.76.1
5+
* The version of the OpenAPI document: 1.77.1
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/main/java/com/linkbreakers/ApiResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Linkbreakers API
33
* This is a documentation of all the APIs of Linkbreakers
44
*
5-
* The version of the OpenAPI document: 1.76.1
5+
* The version of the OpenAPI document: 1.77.1
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

0 commit comments

Comments
 (0)