@rlvt/workflows-openapi-client 1.0.710 → 1.0.712

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/api.d.ts CHANGED
@@ -1940,11 +1940,20 @@ export default class {
1940
1940
  definition: {
1941
1941
  [x: string]: unknown;
1942
1942
  };
1943
- variables: {
1943
+ variables: ({
1944
1944
  name: string;
1945
+ type: "array";
1945
1946
  description?: string | undefined;
1946
- isArray: boolean;
1947
- }[];
1947
+ } | {
1948
+ name: string;
1949
+ type: "scalar";
1950
+ description?: string | undefined;
1951
+ } | {
1952
+ name: string;
1953
+ type: "fixed";
1954
+ index: number;
1955
+ description?: string | undefined;
1956
+ })[];
1948
1957
  }[];
1949
1958
  program: string;
1950
1959
  version: string;
@@ -1959,11 +1968,20 @@ export default class {
1959
1968
  definition: {
1960
1969
  [x: string]: unknown;
1961
1970
  };
1962
- variables: {
1971
+ variables: ({
1963
1972
  name: string;
1973
+ type: "array";
1964
1974
  description?: string | undefined;
1965
- isArray: boolean;
1966
- }[];
1975
+ } | {
1976
+ name: string;
1977
+ type: "scalar";
1978
+ description?: string | undefined;
1979
+ } | {
1980
+ name: string;
1981
+ type: "fixed";
1982
+ index: number;
1983
+ description?: string | undefined;
1984
+ })[];
1967
1985
  }, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
1968
1986
  status: "success";
1969
1987
  } & {
@@ -1979,11 +1997,20 @@ export default class {
1979
1997
  definition: {
1980
1998
  [x: string]: unknown;
1981
1999
  };
1982
- variables: {
2000
+ variables: ({
1983
2001
  name: string;
2002
+ type: "array";
1984
2003
  description?: string | undefined;
1985
- isArray: boolean;
1986
- }[];
2004
+ } | {
2005
+ name: string;
2006
+ type: "scalar";
2007
+ description?: string | undefined;
2008
+ } | {
2009
+ name: string;
2010
+ type: "fixed";
2011
+ index: number;
2012
+ description?: string | undefined;
2013
+ })[];
1987
2014
  };
1988
2015
  program: string;
1989
2016
  version: string;
@@ -2009,11 +2036,20 @@ export default class {
2009
2036
  definition: {
2010
2037
  [x: string]: unknown;
2011
2038
  };
2012
- variables: {
2039
+ variables: ({
2013
2040
  name: string;
2041
+ type: "array";
2014
2042
  description?: string | undefined;
2015
- isArray: boolean;
2016
- }[];
2043
+ } | {
2044
+ name: string;
2045
+ type: "scalar";
2046
+ description?: string | undefined;
2047
+ } | {
2048
+ name: string;
2049
+ type: "fixed";
2050
+ index: number;
2051
+ description?: string | undefined;
2052
+ })[];
2017
2053
  };
2018
2054
  program: string;
2019
2055
  version: string;
@@ -2029,11 +2065,20 @@ export default class {
2029
2065
  definition?: {
2030
2066
  [x: string]: unknown;
2031
2067
  } | undefined;
2032
- variables?: {
2068
+ variables?: ({
2069
+ name: string;
2070
+ type: "array";
2071
+ description?: string | undefined;
2072
+ } | {
2033
2073
  name: string;
2074
+ type: "scalar";
2034
2075
  description?: string | undefined;
2035
- isArray: boolean;
2036
- }[] | undefined;
2076
+ } | {
2077
+ name: string;
2078
+ type: "fixed";
2079
+ index: number;
2080
+ description?: string | undefined;
2081
+ })[] | undefined;
2037
2082
  }, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
2038
2083
  status: "success";
2039
2084
  } & {
@@ -2049,11 +2094,20 @@ export default class {
2049
2094
  definition: {
2050
2095
  [x: string]: unknown;
2051
2096
  };
2052
- variables: {
2097
+ variables: ({
2053
2098
  name: string;
2099
+ type: "array";
2054
2100
  description?: string | undefined;
2055
- isArray: boolean;
2056
- }[];
2101
+ } | {
2102
+ name: string;
2103
+ type: "scalar";
2104
+ description?: string | undefined;
2105
+ } | {
2106
+ name: string;
2107
+ type: "fixed";
2108
+ index: number;
2109
+ description?: string | undefined;
2110
+ })[];
2057
2111
  };
2058
2112
  program: string;
2059
2113
  version: string;
@@ -312,17 +312,25 @@ export declare type InternalResponse_Array_id_string_fields_Array_string = {
312
312
  fields: string[];
313
313
  }[];
314
314
  };
315
- export declare type JsonTemplateVariable = {
316
- name: string;
317
- isArray: boolean;
318
- description?: string;
319
- };
320
315
  export declare type SerializedWorkflowOutputJsonTemplate = SerializedWorkflowSettings & {
321
316
  name: string;
322
317
  definition: {
323
318
  [key: string]: AnyValue;
324
319
  };
325
- variables: JsonTemplateVariable[];
320
+ variables: ({
321
+ name: string;
322
+ type: "array";
323
+ description?: string;
324
+ } | {
325
+ name: string;
326
+ type: "scalar";
327
+ description?: string;
328
+ } | {
329
+ name: string;
330
+ type: "fixed";
331
+ index: number;
332
+ description?: string;
333
+ })[];
326
334
  };
327
335
  export declare type InternalResponse_Array_SerializedWorkflowOutputJsonTemplate = {
328
336
  program: string;
@@ -347,7 +355,20 @@ export declare type JsonTemplateCreateBody = {
347
355
  definition: {
348
356
  [key: string]: AnyValue;
349
357
  };
350
- variables: JsonTemplateVariable[];
358
+ variables: ({
359
+ name: string;
360
+ type: "array";
361
+ description?: string;
362
+ } | {
363
+ name: string;
364
+ type: "scalar";
365
+ description?: string;
366
+ } | {
367
+ name: string;
368
+ type: "fixed";
369
+ index: number;
370
+ description?: string;
371
+ })[];
351
372
  resourceGroupIds: string[];
352
373
  };
353
374
  export declare type JsonTemplateUpdateBody = {
@@ -355,7 +376,20 @@ export declare type JsonTemplateUpdateBody = {
355
376
  definition?: {
356
377
  [key: string]: AnyValue;
357
378
  };
358
- variables?: JsonTemplateVariable[];
379
+ variables?: ({
380
+ name: string;
381
+ type: "array";
382
+ description?: string;
383
+ } | {
384
+ name: string;
385
+ type: "scalar";
386
+ description?: string;
387
+ } | {
388
+ name: string;
389
+ type: "fixed";
390
+ index: number;
391
+ description?: string;
392
+ })[];
359
393
  };
360
394
  export declare enum WorkflowStatus {
361
395
  DRAFT = "draft",
@@ -23,4 +23,4 @@ var WorkflowVersionState;
23
23
  WorkflowVersionState["LIVE"] = "live";
24
24
  WorkflowVersionState["INACTIVE"] = "inactive";
25
25
  })(WorkflowVersionState = exports.WorkflowVersionState || (exports.WorkflowVersionState = {}));
26
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmaW5pdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9kZWZpbml0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsb0JBQW9CO0FBQ3BCLG9CQUFvQjs7O0FBb0twQixJQUFZLG9CQUlYO0FBSkQsV0FBWSxvQkFBb0I7SUFDNUIsNkVBQXFELENBQUE7SUFDckQsNkVBQXFELENBQUE7SUFDckQsdUVBQStDLENBQUE7QUFDbkQsQ0FBQyxFQUpXLG9CQUFvQixHQUFwQiw0QkFBb0IsS0FBcEIsNEJBQW9CLFFBSS9CO0FBZ05ELElBQVksY0FNWDtBQU5ELFdBQVksY0FBYztJQUN0QixpQ0FBZSxDQUFBO0lBQ2YsMkNBQXlCLENBQUE7SUFDekIseUNBQXVCLENBQUE7SUFDdkIsaUNBQWUsQ0FBQTtJQUNmLHVDQUFxQixDQUFBO0FBQ3pCLENBQUMsRUFOVyxjQUFjLEdBQWQsc0JBQWMsS0FBZCxzQkFBYyxRQU16QjtBQWdCRCxJQUFZLG9CQUlYO0FBSkQsV0FBWSxvQkFBb0I7SUFDNUIsdUNBQWUsQ0FBQTtJQUNmLHFDQUFhLENBQUE7SUFDYiw2Q0FBcUIsQ0FBQTtBQUN6QixDQUFDLEVBSlcsb0JBQW9CLEdBQXBCLDRCQUFvQixLQUFwQiw0QkFBb0IsUUFJL0IifQ==
26
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmaW5pdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9kZWZpbml0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsb0JBQW9CO0FBQ3BCLG9CQUFvQjs7O0FBb0twQixJQUFZLG9CQUlYO0FBSkQsV0FBWSxvQkFBb0I7SUFDNUIsNkVBQXFELENBQUE7SUFDckQsNkVBQXFELENBQUE7SUFDckQsdUVBQStDLENBQUE7QUFDbkQsQ0FBQyxFQUpXLG9CQUFvQixHQUFwQiw0QkFBb0IsS0FBcEIsNEJBQW9CLFFBSS9CO0FBa1BELElBQVksY0FNWDtBQU5ELFdBQVksY0FBYztJQUN0QixpQ0FBZSxDQUFBO0lBQ2YsMkNBQXlCLENBQUE7SUFDekIseUNBQXVCLENBQUE7SUFDdkIsaUNBQWUsQ0FBQTtJQUNmLHVDQUFxQixDQUFBO0FBQ3pCLENBQUMsRUFOVyxjQUFjLEdBQWQsc0JBQWMsS0FBZCxzQkFBYyxRQU16QjtBQWdCRCxJQUFZLG9CQUlYO0FBSkQsV0FBWSxvQkFBb0I7SUFDNUIsdUNBQWUsQ0FBQTtJQUNmLHFDQUFhLENBQUE7SUFDYiw2Q0FBcUIsQ0FBQTtBQUN6QixDQUFDLEVBSlcsb0JBQW9CLEdBQXBCLDRCQUFvQixLQUFwQiw0QkFBb0IsUUFJL0IifQ==
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rlvt/workflows-openapi-client",
3
- "version": "1.0.710+12f8b82",
3
+ "version": "1.0.712+a76146c",
4
4
  "description": "Openapi client for reelevant service",
5
5
  "main": "build/index.js",
6
6
  "repository": "https://github.com/reelevant-tech/openapi-clients",