File tree Expand file tree Collapse file tree 7 files changed +0
-105
lines changed
key-value-stores/get-key-value-store-record Expand file tree Collapse file tree 7 files changed +0
-105
lines changed Original file line number Diff line number Diff line change 1
1
import { INodeProperties } from 'n8n-workflow' ;
2
2
3
3
export const properties : INodeProperties [ ] = [
4
- {
5
- displayName : 'GET /v2/actor-runs/{runId}' ,
6
- name : 'operation' ,
7
- type : 'notice' ,
8
- typeOptions : {
9
- theme : 'info' ,
10
- } ,
11
- default : '' ,
12
- displayOptions : {
13
- show : {
14
- resource : [ 'Actor runs' ] ,
15
- operation : [ 'Get run' ] ,
16
- } ,
17
- } ,
18
- } ,
19
4
{
20
5
displayName : 'Run ID' ,
21
6
name : 'runId' ,
Original file line number Diff line number Diff line change 1
1
import { INodeProperties } from 'n8n-workflow' ;
2
2
3
3
export const properties : INodeProperties [ ] = [
4
- {
5
- displayName : 'GET /v2/actor-runs' ,
6
- name : 'operation' ,
7
- type : 'notice' ,
8
- typeOptions : {
9
- theme : 'info' ,
10
- } ,
11
- default : '' ,
12
- displayOptions : {
13
- show : {
14
- resource : [ 'Actor runs' ] ,
15
- operation : [ 'Get user runs list' ] ,
16
- } ,
17
- } ,
18
- } ,
19
4
{
20
5
displayName : 'Offset' ,
21
6
name : 'offset' ,
Original file line number Diff line number Diff line change 1
1
import { INodeProperties } from 'n8n-workflow' ;
2
2
3
3
export const properties : INodeProperties [ ] = [
4
- {
5
- displayName : 'POST /v2/actor-tasks/{actorTaskId}/runs' ,
6
- name : 'operation' ,
7
- type : 'notice' ,
8
- typeOptions : {
9
- theme : 'info' ,
10
- } ,
11
- default : '' ,
12
- displayOptions : {
13
- show : {
14
- resource : [ 'Actor tasks' ] ,
15
- operation : [ 'Run task' ] ,
16
- } ,
17
- } ,
18
- } ,
19
4
{
20
5
displayName : 'Actor Task' ,
21
6
name : 'actorTaskId' ,
Original file line number Diff line number Diff line change 1
1
import { INodeProperties } from 'n8n-workflow' ;
2
2
3
3
export const properties : INodeProperties [ ] = [
4
- {
5
- displayName : 'GET /v2/acts/{actorId}/runs/last' ,
6
- name : 'operation' ,
7
- type : 'notice' ,
8
- typeOptions : {
9
- theme : 'info' ,
10
- } ,
11
- default : '' ,
12
- displayOptions : {
13
- show : {
14
- resource : [ 'Actors' ] ,
15
- operation : [ 'Get last run' ] ,
16
- } ,
17
- } ,
18
- } ,
19
4
{
20
5
displayName : 'Actor Source' ,
21
6
name : 'actorSource' ,
Original file line number Diff line number Diff line change 1
1
import { INodeProperties } from 'n8n-workflow' ;
2
2
3
3
export const properties : INodeProperties [ ] = [
4
- {
5
- displayName : 'POST /v2/acts/{actorId}/runs' ,
6
- name : 'operation' ,
7
- type : 'notice' ,
8
- typeOptions : {
9
- theme : 'info' ,
10
- } ,
11
- default : '' ,
12
- displayOptions : {
13
- show : {
14
- resource : [ 'Actors' ] ,
15
- operation : [ 'Run actor' ] ,
16
- } ,
17
- } ,
18
- } ,
19
4
{
20
5
displayName : 'Actor Source' ,
21
6
name : 'actorSource' ,
Original file line number Diff line number Diff line change 1
1
import { INodeProperties } from 'n8n-workflow' ;
2
2
3
3
export const properties : INodeProperties [ ] = [
4
- {
5
- displayName : 'GET /v2/datasets/{datasetId}/items' ,
6
- name : 'operation' ,
7
- type : 'notice' ,
8
- typeOptions : {
9
- theme : 'info' ,
10
- } ,
11
- default : '' ,
12
- displayOptions : {
13
- show : {
14
- resource : [ 'Datasets' ] ,
15
- operation : [ 'Get items' ] ,
16
- } ,
17
- } ,
18
- } ,
19
4
{
20
5
displayName : 'Dataset ID' ,
21
6
name : 'datasetId' ,
Original file line number Diff line number Diff line change 1
1
import { INodeProperties } from 'n8n-workflow' ;
2
2
3
3
export const properties : INodeProperties [ ] = [
4
- {
5
- displayName : 'GET /v2/key-value-stores/{storeId}/records/{recordKey}' ,
6
- name : 'operation' ,
7
- type : 'notice' ,
8
- typeOptions : {
9
- theme : 'info' ,
10
- } ,
11
- default : '' ,
12
- displayOptions : {
13
- show : {
14
- resource : [ 'Key-Value Stores' ] ,
15
- operation : [ 'Get Key-Value Store Record' ] ,
16
- } ,
17
- } ,
18
- } ,
19
4
{
20
5
displayName : 'Key-Value Store ID' ,
21
6
name : 'storeId' ,
You can’t perform that action at this time.
0 commit comments