@rlvt/workflows-openapi-client 1.0.751 → 1.0.752
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 +1 -1
- package/build/definitions.d.ts +1 -1
- package/package.json +1 -1
package/build/api.d.ts
CHANGED
|
@@ -2952,7 +2952,7 @@ export default class {
|
|
|
2952
2952
|
index: number;
|
|
2953
2953
|
description?: string | undefined;
|
|
2954
2954
|
})[] | undefined;
|
|
2955
|
-
redirectVariable?: string | undefined;
|
|
2955
|
+
redirectVariable?: string | null | undefined;
|
|
2956
2956
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
2957
2957
|
status: "success";
|
|
2958
2958
|
} & {
|
package/build/definitions.d.ts
CHANGED
|
@@ -438,7 +438,7 @@ export declare type JsonTemplateUpdateBody = {
|
|
|
438
438
|
index: number;
|
|
439
439
|
description?: string;
|
|
440
440
|
})[];
|
|
441
|
-
redirectVariable?: string;
|
|
441
|
+
redirectVariable?: string | null;
|
|
442
442
|
};
|
|
443
443
|
export declare type InternalResponse_token_string_expiresAt_number = {
|
|
444
444
|
program: string;
|
package/package.json
CHANGED