@@ -12,7 +12,7 @@ export type ConfigurableProp =
1212 | Pipedream . ConfigurableProp . Boolean
1313 | Pipedream . ConfigurableProp . InterfaceTimer
1414 | Pipedream . ConfigurableProp . InterfaceApphook
15- | Pipedream . ConfigurableProp . Integer
15+ | Pipedream . ConfigurableProp . IntegerArray
1616 | Pipedream . ConfigurableProp . InterfaceHttp
1717 | Pipedream . ConfigurableProp . ServiceDb
1818 | Pipedream . ConfigurableProp . Sql
@@ -21,11 +21,11 @@ export type ConfigurableProp =
2121 | Pipedream . ConfigurableProp . AirtableViewId
2222 | Pipedream . ConfigurableProp . AirtableFieldId
2323 | Pipedream . ConfigurableProp . DiscordChannel
24- | Pipedream . ConfigurableProp . DiscordChannel
24+ | Pipedream . ConfigurableProp . DiscordChannelArray
2525 | Pipedream . ConfigurableProp . Integer
26- | Pipedream . ConfigurableProp . Object_
26+ | Pipedream . ConfigurableProp . Object
2727 | Pipedream . ConfigurableProp . String
28- | Pipedream . ConfigurableProp . String ;
28+ | Pipedream . ConfigurableProp . StringArray ;
2929
3030export namespace ConfigurableProp {
3131 export interface Alert extends Pipedream . ConfigurablePropAlert {
@@ -52,7 +52,7 @@ export namespace ConfigurableProp {
5252 type : "$.interface.apphook" ;
5353 }
5454
55- export interface Integer extends Pipedream . ConfigurablePropIntegerArray {
55+ export interface IntegerArray extends Pipedream . ConfigurablePropIntegerArray {
5656 type : "integer[]" ;
5757 }
5858
@@ -88,23 +88,23 @@ export namespace ConfigurableProp {
8888 type : "$.discord.channel" ;
8989 }
9090
91- export interface DiscordChannel extends Pipedream . ConfigurablePropDiscordChannelArray {
91+ export interface DiscordChannelArray extends Pipedream . ConfigurablePropDiscordChannelArray {
9292 type : "$.discord.channel[]" ;
9393 }
9494
9595 export interface Integer extends Pipedream . ConfigurablePropInteger {
9696 type : "integer" ;
9797 }
9898
99- export interface Object_ extends Pipedream . ConfigurablePropObject {
99+ export interface Object extends Pipedream . ConfigurablePropObject {
100100 type : "object" ;
101101 }
102102
103103 export interface String extends Pipedream . ConfigurablePropString {
104104 type : "string" ;
105105 }
106106
107- export interface String extends Pipedream . ConfigurablePropStringArray {
107+ export interface StringArray extends Pipedream . ConfigurablePropStringArray {
108108 type : "string[]" ;
109109 }
110110}
0 commit comments