Skip to content

Commit 1ea4e7c

Browse files
Knerionicosammito
andauthored
Change string to text data type
Co-authored-by: Nico Sammito <nsammito@code0.tech> Signed-off-by: Dario Pranjic <96529060+Knerio@users.noreply.github.com>
1 parent 2e00856 commit 1ea4e7c

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

actions/gls-action/src/definitions/configDefinition/authUrl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export function register() {
44
return sdk.registerConfigDefinitions(
55
{
66
identifier: "auth_url",
7-
type: "STRING",
7+
type: "TEXT",
88
defaultValue: "https://api.gls-group.net/oauth2/v2/token",
99
name: [
1010
{

actions/gls-action/src/definitions/configDefinition/clientId.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export function register() {
44
return sdk.registerConfigDefinitions(
55
{
66
identifier: "client_id",
7-
type: "STRING",
7+
type: "TEXT",
88
name: [
99
{
1010
code: "en-US",
@@ -17,7 +17,7 @@ export function register() {
1717
content: "The client id to authenticate with the GLS API"
1818
}
1919
],
20-
linkedDataTypes: ["STRING"],
20+
linkedDataTypes: ["TEXT"],
2121
},
2222
)
2323
}

actions/gls-action/src/definitions/configDefinition/clientSecret.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export function register() {
44
return sdk.registerConfigDefinitions(
55
{
66
identifier: "client_secret",
7-
type: "STRING",
7+
type: "TEXT",
88
name: [
99
{
1010
code: "en-US",
@@ -17,7 +17,7 @@ export function register() {
1717
content: "The client secret to authenticate with the GLS API"
1818
}
1919
],
20-
linkedDataTypes: ["STRING"],
20+
linkedDataTypes: ["TEXT"],
2121
},
2222
)
2323
}

actions/gls-action/src/definitions/configDefinition/contactId.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export function register() {
44
return sdk.registerConfigDefinitions(
55
{
66
identifier: "contact_id",
7-
type: "STRING",
7+
type: "TEXT",
88
name: [
99
{
1010
code: "en-US",
@@ -18,7 +18,7 @@ export function register() {
1818
}
1919
],
2020
defaultValue: "",
21-
linkedDataTypes: ["STRING"],
21+
linkedDataTypes: ["TEXT"],
2222
},
2323
)
2424
}

actions/gls-action/src/definitions/configDefinition/shipItApiUrl.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export function register() {
44
return sdk.registerConfigDefinitions(
55
{
66
identifier: "ship_it_api_url",
7-
type: "STRING",
7+
type: "TEXT",
88
defaultValue: " https://api.gls-group.net/shipit-farm/v1/backend/rs",
99
name: [
1010
{
@@ -18,7 +18,7 @@ export function register() {
1818
content: "The url of the GLS ShipIt API."
1919
}
2020
],
21-
linkedDataTypes: ["STRING"],
21+
linkedDataTypes: ["TEXT"],
2222
},
2323
)
2424
}

0 commit comments

Comments
 (0)