@fern-api/dynamic-ir-sdk 61.2.0 → 61.3.0
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/api/resources/dynamic/resources/ir/types/CratesPublishInfo.d.ts +8 -0
- package/api/resources/dynamic/resources/ir/types/CratesPublishInfo.js +5 -0
- package/api/resources/dynamic/resources/ir/types/PublishInfo.d.ts +4 -1
- package/api/resources/dynamic/resources/ir/types/index.d.ts +1 -0
- package/api/resources/dynamic/resources/ir/types/index.js +1 -0
- package/api/resources/generatorExec/resources/config/types/CratesGithubPublishInfo.d.ts +10 -0
- package/api/resources/generatorExec/resources/config/types/CratesGithubPublishInfo.js +5 -0
- package/api/resources/generatorExec/resources/config/types/CratesRegistryConfig.d.ts +8 -0
- package/api/resources/generatorExec/resources/config/types/CratesRegistryConfig.js +5 -0
- package/api/resources/generatorExec/resources/config/types/GeneratorPublishTarget.d.ts +4 -1
- package/api/resources/generatorExec/resources/config/types/GeneratorRegistriesConfigV2.d.ts +1 -0
- package/api/resources/generatorExec/resources/config/types/GithubPublishInfo.d.ts +4 -1
- package/api/resources/generatorExec/resources/config/types/index.d.ts +2 -0
- package/api/resources/generatorExec/resources/config/types/index.js +2 -0
- package/dist/api/resources/dynamic/resources/ir/types/CratesPublishInfo.d.ts +8 -0
- package/dist/api/resources/dynamic/resources/ir/types/CratesPublishInfo.js +5 -0
- package/dist/api/resources/dynamic/resources/ir/types/PublishInfo.d.ts +4 -1
- package/dist/api/resources/dynamic/resources/ir/types/index.d.ts +1 -0
- package/dist/api/resources/dynamic/resources/ir/types/index.js +1 -0
- package/dist/api/resources/generatorExec/resources/config/types/CratesGithubPublishInfo.d.ts +10 -0
- package/dist/api/resources/generatorExec/resources/config/types/CratesGithubPublishInfo.js +5 -0
- package/dist/api/resources/generatorExec/resources/config/types/CratesRegistryConfig.d.ts +8 -0
- package/dist/api/resources/generatorExec/resources/config/types/CratesRegistryConfig.js +5 -0
- package/dist/api/resources/generatorExec/resources/config/types/GeneratorPublishTarget.d.ts +4 -1
- package/dist/api/resources/generatorExec/resources/config/types/GeneratorRegistriesConfigV2.d.ts +1 -0
- package/dist/api/resources/generatorExec/resources/config/types/GithubPublishInfo.d.ts +4 -1
- package/dist/api/resources/generatorExec/resources/config/types/index.d.ts +2 -0
- package/dist/api/resources/generatorExec/resources/config/types/index.js +2 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* This file was auto-generated by Fern from our API Definition.
|
|
3
3
|
*/
|
|
4
4
|
import * as FernIr from "../../../../../index";
|
|
5
|
-
export type PublishInfo = FernIr.dynamic.PublishInfo.Go | FernIr.dynamic.PublishInfo.Maven | FernIr.dynamic.PublishInfo.Npm | FernIr.dynamic.PublishInfo.Nuget | FernIr.dynamic.PublishInfo.Pypi | FernIr.dynamic.PublishInfo.Rubygems;
|
|
5
|
+
export type PublishInfo = FernIr.dynamic.PublishInfo.Go | FernIr.dynamic.PublishInfo.Maven | FernIr.dynamic.PublishInfo.Npm | FernIr.dynamic.PublishInfo.Nuget | FernIr.dynamic.PublishInfo.Pypi | FernIr.dynamic.PublishInfo.Rubygems | FernIr.dynamic.PublishInfo.Crates;
|
|
6
6
|
export declare namespace PublishInfo {
|
|
7
7
|
interface Go extends FernIr.dynamic.GoPublishInfo {
|
|
8
8
|
type: "go";
|
|
@@ -22,4 +22,7 @@ export declare namespace PublishInfo {
|
|
|
22
22
|
interface Rubygems extends FernIr.dynamic.RubyGemsPublishInfo {
|
|
23
23
|
type: "rubygems";
|
|
24
24
|
}
|
|
25
|
+
interface Crates extends FernIr.dynamic.CratesPublishInfo {
|
|
26
|
+
type: "crates";
|
|
27
|
+
}
|
|
25
28
|
}
|
|
@@ -24,3 +24,4 @@ __exportStar(require("./NpmPublishInfo"), exports);
|
|
|
24
24
|
__exportStar(require("./NugetPublishInfo"), exports);
|
|
25
25
|
__exportStar(require("./PypiPublishInfo"), exports);
|
|
26
26
|
__exportStar(require("./RubyGemsPublishInfo"), exports);
|
|
27
|
+
__exportStar(require("./CratesPublishInfo"), exports);
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as FernIr from "../../../../../index";
|
|
5
|
+
export interface CratesGithubPublishInfo {
|
|
6
|
+
registryUrl: string;
|
|
7
|
+
packageName: string;
|
|
8
|
+
tokenEnvironmentVariable: FernIr.generatorExec.EnvironmentVariable;
|
|
9
|
+
shouldGeneratePublishWorkflow?: boolean;
|
|
10
|
+
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* This file was auto-generated by Fern from our API Definition.
|
|
3
3
|
*/
|
|
4
4
|
import * as FernIr from "../../../../../index";
|
|
5
|
-
export type GeneratorPublishTarget = FernIr.generatorExec.GeneratorPublishTarget.Maven | FernIr.generatorExec.GeneratorPublishTarget.Npm | FernIr.generatorExec.GeneratorPublishTarget.Pypi | FernIr.generatorExec.GeneratorPublishTarget.Postman | FernIr.generatorExec.GeneratorPublishTarget.Rubygems | FernIr.generatorExec.GeneratorPublishTarget.Nuget;
|
|
5
|
+
export type GeneratorPublishTarget = FernIr.generatorExec.GeneratorPublishTarget.Maven | FernIr.generatorExec.GeneratorPublishTarget.Npm | FernIr.generatorExec.GeneratorPublishTarget.Pypi | FernIr.generatorExec.GeneratorPublishTarget.Postman | FernIr.generatorExec.GeneratorPublishTarget.Rubygems | FernIr.generatorExec.GeneratorPublishTarget.Nuget | FernIr.generatorExec.GeneratorPublishTarget.Crates;
|
|
6
6
|
export declare namespace GeneratorPublishTarget {
|
|
7
7
|
interface Maven extends FernIr.generatorExec.MavenRegistryConfigV2 {
|
|
8
8
|
type: "maven";
|
|
@@ -22,4 +22,7 @@ export declare namespace GeneratorPublishTarget {
|
|
|
22
22
|
interface Nuget extends FernIr.generatorExec.NugetRegistryConfig {
|
|
23
23
|
type: "nuget";
|
|
24
24
|
}
|
|
25
|
+
interface Crates extends FernIr.generatorExec.CratesRegistryConfig {
|
|
26
|
+
type: "crates";
|
|
27
|
+
}
|
|
25
28
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* This file was auto-generated by Fern from our API Definition.
|
|
3
3
|
*/
|
|
4
4
|
import * as FernIr from "../../../../../index";
|
|
5
|
-
export type GithubPublishInfo = FernIr.generatorExec.GithubPublishInfo.Npm | FernIr.generatorExec.GithubPublishInfo.Maven | FernIr.generatorExec.GithubPublishInfo.Postman | FernIr.generatorExec.GithubPublishInfo.Pypi | FernIr.generatorExec.GithubPublishInfo.Rubygems | FernIr.generatorExec.GithubPublishInfo.Nuget;
|
|
5
|
+
export type GithubPublishInfo = FernIr.generatorExec.GithubPublishInfo.Npm | FernIr.generatorExec.GithubPublishInfo.Maven | FernIr.generatorExec.GithubPublishInfo.Postman | FernIr.generatorExec.GithubPublishInfo.Pypi | FernIr.generatorExec.GithubPublishInfo.Rubygems | FernIr.generatorExec.GithubPublishInfo.Nuget | FernIr.generatorExec.GithubPublishInfo.Crates;
|
|
6
6
|
export declare namespace GithubPublishInfo {
|
|
7
7
|
interface Npm extends FernIr.generatorExec.NpmGithubPublishInfo {
|
|
8
8
|
type: "npm";
|
|
@@ -22,4 +22,7 @@ export declare namespace GithubPublishInfo {
|
|
|
22
22
|
interface Nuget extends FernIr.generatorExec.NugetGithubPublishInfo {
|
|
23
23
|
type: "nuget";
|
|
24
24
|
}
|
|
25
|
+
interface Crates extends FernIr.generatorExec.CratesGithubPublishInfo {
|
|
26
|
+
type: "crates";
|
|
27
|
+
}
|
|
25
28
|
}
|
|
@@ -20,6 +20,7 @@ export * from "./PypiMetadata";
|
|
|
20
20
|
export * from "./PypiGithubPublishInfo";
|
|
21
21
|
export * from "./RubyGemsGithubPublishInfo";
|
|
22
22
|
export * from "./NugetGithubPublishInfo";
|
|
23
|
+
export * from "./CratesGithubPublishInfo";
|
|
23
24
|
export * from "./GeneratorRegistriesConfig";
|
|
24
25
|
export * from "./MavenCentralSignature";
|
|
25
26
|
export * from "./MavenRegistryConfig";
|
|
@@ -31,6 +32,7 @@ export * from "./NpmRegistryConfigV2";
|
|
|
31
32
|
export * from "./PypiRegistryConfig";
|
|
32
33
|
export * from "./RubyGemsRegistryConfig";
|
|
33
34
|
export * from "./NugetRegistryConfig";
|
|
35
|
+
export * from "./CratesRegistryConfig";
|
|
34
36
|
export * from "./PostmanConfig";
|
|
35
37
|
export * from "./GeneratorEnvironment";
|
|
36
38
|
export * from "./RemoteGeneratorEnvironment";
|
|
@@ -36,6 +36,7 @@ __exportStar(require("./PypiMetadata"), exports);
|
|
|
36
36
|
__exportStar(require("./PypiGithubPublishInfo"), exports);
|
|
37
37
|
__exportStar(require("./RubyGemsGithubPublishInfo"), exports);
|
|
38
38
|
__exportStar(require("./NugetGithubPublishInfo"), exports);
|
|
39
|
+
__exportStar(require("./CratesGithubPublishInfo"), exports);
|
|
39
40
|
__exportStar(require("./GeneratorRegistriesConfig"), exports);
|
|
40
41
|
__exportStar(require("./MavenCentralSignature"), exports);
|
|
41
42
|
__exportStar(require("./MavenRegistryConfig"), exports);
|
|
@@ -47,6 +48,7 @@ __exportStar(require("./NpmRegistryConfigV2"), exports);
|
|
|
47
48
|
__exportStar(require("./PypiRegistryConfig"), exports);
|
|
48
49
|
__exportStar(require("./RubyGemsRegistryConfig"), exports);
|
|
49
50
|
__exportStar(require("./NugetRegistryConfig"), exports);
|
|
51
|
+
__exportStar(require("./CratesRegistryConfig"), exports);
|
|
50
52
|
__exportStar(require("./PostmanConfig"), exports);
|
|
51
53
|
__exportStar(require("./GeneratorEnvironment"), exports);
|
|
52
54
|
__exportStar(require("./RemoteGeneratorEnvironment"), exports);
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* This file was auto-generated by Fern from our API Definition.
|
|
3
3
|
*/
|
|
4
4
|
import * as FernIr from "../../../../../index";
|
|
5
|
-
export type PublishInfo = FernIr.dynamic.PublishInfo.Go | FernIr.dynamic.PublishInfo.Maven | FernIr.dynamic.PublishInfo.Npm | FernIr.dynamic.PublishInfo.Nuget | FernIr.dynamic.PublishInfo.Pypi | FernIr.dynamic.PublishInfo.Rubygems;
|
|
5
|
+
export type PublishInfo = FernIr.dynamic.PublishInfo.Go | FernIr.dynamic.PublishInfo.Maven | FernIr.dynamic.PublishInfo.Npm | FernIr.dynamic.PublishInfo.Nuget | FernIr.dynamic.PublishInfo.Pypi | FernIr.dynamic.PublishInfo.Rubygems | FernIr.dynamic.PublishInfo.Crates;
|
|
6
6
|
export declare namespace PublishInfo {
|
|
7
7
|
interface Go extends FernIr.dynamic.GoPublishInfo {
|
|
8
8
|
type: "go";
|
|
@@ -22,4 +22,7 @@ export declare namespace PublishInfo {
|
|
|
22
22
|
interface Rubygems extends FernIr.dynamic.RubyGemsPublishInfo {
|
|
23
23
|
type: "rubygems";
|
|
24
24
|
}
|
|
25
|
+
interface Crates extends FernIr.dynamic.CratesPublishInfo {
|
|
26
|
+
type: "crates";
|
|
27
|
+
}
|
|
25
28
|
}
|
|
@@ -24,3 +24,4 @@ __exportStar(require("./NpmPublishInfo"), exports);
|
|
|
24
24
|
__exportStar(require("./NugetPublishInfo"), exports);
|
|
25
25
|
__exportStar(require("./PypiPublishInfo"), exports);
|
|
26
26
|
__exportStar(require("./RubyGemsPublishInfo"), exports);
|
|
27
|
+
__exportStar(require("./CratesPublishInfo"), exports);
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as FernIr from "../../../../../index";
|
|
5
|
+
export interface CratesGithubPublishInfo {
|
|
6
|
+
registryUrl: string;
|
|
7
|
+
packageName: string;
|
|
8
|
+
tokenEnvironmentVariable: FernIr.generatorExec.EnvironmentVariable;
|
|
9
|
+
shouldGeneratePublishWorkflow?: boolean;
|
|
10
|
+
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* This file was auto-generated by Fern from our API Definition.
|
|
3
3
|
*/
|
|
4
4
|
import * as FernIr from "../../../../../index";
|
|
5
|
-
export type GeneratorPublishTarget = FernIr.generatorExec.GeneratorPublishTarget.Maven | FernIr.generatorExec.GeneratorPublishTarget.Npm | FernIr.generatorExec.GeneratorPublishTarget.Pypi | FernIr.generatorExec.GeneratorPublishTarget.Postman | FernIr.generatorExec.GeneratorPublishTarget.Rubygems | FernIr.generatorExec.GeneratorPublishTarget.Nuget;
|
|
5
|
+
export type GeneratorPublishTarget = FernIr.generatorExec.GeneratorPublishTarget.Maven | FernIr.generatorExec.GeneratorPublishTarget.Npm | FernIr.generatorExec.GeneratorPublishTarget.Pypi | FernIr.generatorExec.GeneratorPublishTarget.Postman | FernIr.generatorExec.GeneratorPublishTarget.Rubygems | FernIr.generatorExec.GeneratorPublishTarget.Nuget | FernIr.generatorExec.GeneratorPublishTarget.Crates;
|
|
6
6
|
export declare namespace GeneratorPublishTarget {
|
|
7
7
|
interface Maven extends FernIr.generatorExec.MavenRegistryConfigV2 {
|
|
8
8
|
type: "maven";
|
|
@@ -22,4 +22,7 @@ export declare namespace GeneratorPublishTarget {
|
|
|
22
22
|
interface Nuget extends FernIr.generatorExec.NugetRegistryConfig {
|
|
23
23
|
type: "nuget";
|
|
24
24
|
}
|
|
25
|
+
interface Crates extends FernIr.generatorExec.CratesRegistryConfig {
|
|
26
|
+
type: "crates";
|
|
27
|
+
}
|
|
25
28
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* This file was auto-generated by Fern from our API Definition.
|
|
3
3
|
*/
|
|
4
4
|
import * as FernIr from "../../../../../index";
|
|
5
|
-
export type GithubPublishInfo = FernIr.generatorExec.GithubPublishInfo.Npm | FernIr.generatorExec.GithubPublishInfo.Maven | FernIr.generatorExec.GithubPublishInfo.Postman | FernIr.generatorExec.GithubPublishInfo.Pypi | FernIr.generatorExec.GithubPublishInfo.Rubygems | FernIr.generatorExec.GithubPublishInfo.Nuget;
|
|
5
|
+
export type GithubPublishInfo = FernIr.generatorExec.GithubPublishInfo.Npm | FernIr.generatorExec.GithubPublishInfo.Maven | FernIr.generatorExec.GithubPublishInfo.Postman | FernIr.generatorExec.GithubPublishInfo.Pypi | FernIr.generatorExec.GithubPublishInfo.Rubygems | FernIr.generatorExec.GithubPublishInfo.Nuget | FernIr.generatorExec.GithubPublishInfo.Crates;
|
|
6
6
|
export declare namespace GithubPublishInfo {
|
|
7
7
|
interface Npm extends FernIr.generatorExec.NpmGithubPublishInfo {
|
|
8
8
|
type: "npm";
|
|
@@ -22,4 +22,7 @@ export declare namespace GithubPublishInfo {
|
|
|
22
22
|
interface Nuget extends FernIr.generatorExec.NugetGithubPublishInfo {
|
|
23
23
|
type: "nuget";
|
|
24
24
|
}
|
|
25
|
+
interface Crates extends FernIr.generatorExec.CratesGithubPublishInfo {
|
|
26
|
+
type: "crates";
|
|
27
|
+
}
|
|
25
28
|
}
|
|
@@ -20,6 +20,7 @@ export * from "./PypiMetadata";
|
|
|
20
20
|
export * from "./PypiGithubPublishInfo";
|
|
21
21
|
export * from "./RubyGemsGithubPublishInfo";
|
|
22
22
|
export * from "./NugetGithubPublishInfo";
|
|
23
|
+
export * from "./CratesGithubPublishInfo";
|
|
23
24
|
export * from "./GeneratorRegistriesConfig";
|
|
24
25
|
export * from "./MavenCentralSignature";
|
|
25
26
|
export * from "./MavenRegistryConfig";
|
|
@@ -31,6 +32,7 @@ export * from "./NpmRegistryConfigV2";
|
|
|
31
32
|
export * from "./PypiRegistryConfig";
|
|
32
33
|
export * from "./RubyGemsRegistryConfig";
|
|
33
34
|
export * from "./NugetRegistryConfig";
|
|
35
|
+
export * from "./CratesRegistryConfig";
|
|
34
36
|
export * from "./PostmanConfig";
|
|
35
37
|
export * from "./GeneratorEnvironment";
|
|
36
38
|
export * from "./RemoteGeneratorEnvironment";
|
|
@@ -36,6 +36,7 @@ __exportStar(require("./PypiMetadata"), exports);
|
|
|
36
36
|
__exportStar(require("./PypiGithubPublishInfo"), exports);
|
|
37
37
|
__exportStar(require("./RubyGemsGithubPublishInfo"), exports);
|
|
38
38
|
__exportStar(require("./NugetGithubPublishInfo"), exports);
|
|
39
|
+
__exportStar(require("./CratesGithubPublishInfo"), exports);
|
|
39
40
|
__exportStar(require("./GeneratorRegistriesConfig"), exports);
|
|
40
41
|
__exportStar(require("./MavenCentralSignature"), exports);
|
|
41
42
|
__exportStar(require("./MavenRegistryConfig"), exports);
|
|
@@ -47,6 +48,7 @@ __exportStar(require("./NpmRegistryConfigV2"), exports);
|
|
|
47
48
|
__exportStar(require("./PypiRegistryConfig"), exports);
|
|
48
49
|
__exportStar(require("./RubyGemsRegistryConfig"), exports);
|
|
49
50
|
__exportStar(require("./NugetRegistryConfig"), exports);
|
|
51
|
+
__exportStar(require("./CratesRegistryConfig"), exports);
|
|
50
52
|
__exportStar(require("./PostmanConfig"), exports);
|
|
51
53
|
__exportStar(require("./GeneratorEnvironment"), exports);
|
|
52
54
|
__exportStar(require("./RemoteGeneratorEnvironment"), exports);
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "61.
|
|
1
|
+
export declare const SDK_VERSION = "61.3.0";
|
package/dist/version.js
CHANGED
package/package.json
CHANGED
package/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "61.
|
|
1
|
+
export declare const SDK_VERSION = "61.3.0";
|
package/version.js
CHANGED