We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9ec55a commit c476749Copy full SHA for c476749
lib/http.ts
@@ -36,6 +36,12 @@ export function mapConfig(
36
confirm: options.confirm,
37
};
38
}
39
+ if ('publish' in options) {
40
+ config.params = {
41
+ ...config.params,
42
+ publish: options.publish,
43
+ };
44
+ }
45
46
return config;
47
lib/interfaces.ts
@@ -34,6 +34,7 @@ export interface FireFlyDeleteOptions extends FireFlyBaseHttpOptions {}
34
35
export interface FireFlyCreateOptions extends FireFlyBaseHttpOptions {
confirm?: boolean;
+ publish?: boolean;
export interface FireFlyOptionsInput {
0 commit comments