@fern-api/dynamic-ir-sdk 61.1.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.
Files changed (33) hide show
  1. package/api/resources/dynamic/resources/ir/types/CratesPublishInfo.d.ts +8 -0
  2. package/api/resources/dynamic/resources/ir/types/CratesPublishInfo.js +5 -0
  3. package/api/resources/dynamic/resources/ir/types/PublishInfo.d.ts +4 -1
  4. package/api/resources/dynamic/resources/ir/types/index.d.ts +1 -0
  5. package/api/resources/dynamic/resources/ir/types/index.js +1 -0
  6. package/api/resources/generatorExec/resources/config/types/CratesGithubPublishInfo.d.ts +10 -0
  7. package/api/resources/generatorExec/resources/config/types/CratesGithubPublishInfo.js +5 -0
  8. package/api/resources/generatorExec/resources/config/types/CratesRegistryConfig.d.ts +8 -0
  9. package/api/resources/generatorExec/resources/config/types/CratesRegistryConfig.js +5 -0
  10. package/api/resources/generatorExec/resources/config/types/GeneratorPublishTarget.d.ts +4 -1
  11. package/api/resources/generatorExec/resources/config/types/GeneratorRegistriesConfigV2.d.ts +1 -0
  12. package/api/resources/generatorExec/resources/config/types/GithubPublishInfo.d.ts +4 -1
  13. package/api/resources/generatorExec/resources/config/types/index.d.ts +2 -0
  14. package/api/resources/generatorExec/resources/config/types/index.js +2 -0
  15. package/dist/api/resources/dynamic/resources/ir/types/CratesPublishInfo.d.ts +8 -0
  16. package/dist/api/resources/dynamic/resources/ir/types/CratesPublishInfo.js +5 -0
  17. package/dist/api/resources/dynamic/resources/ir/types/PublishInfo.d.ts +4 -1
  18. package/dist/api/resources/dynamic/resources/ir/types/index.d.ts +1 -0
  19. package/dist/api/resources/dynamic/resources/ir/types/index.js +1 -0
  20. package/dist/api/resources/generatorExec/resources/config/types/CratesGithubPublishInfo.d.ts +10 -0
  21. package/dist/api/resources/generatorExec/resources/config/types/CratesGithubPublishInfo.js +5 -0
  22. package/dist/api/resources/generatorExec/resources/config/types/CratesRegistryConfig.d.ts +8 -0
  23. package/dist/api/resources/generatorExec/resources/config/types/CratesRegistryConfig.js +5 -0
  24. package/dist/api/resources/generatorExec/resources/config/types/GeneratorPublishTarget.d.ts +4 -1
  25. package/dist/api/resources/generatorExec/resources/config/types/GeneratorRegistriesConfigV2.d.ts +1 -0
  26. package/dist/api/resources/generatorExec/resources/config/types/GithubPublishInfo.d.ts +4 -1
  27. package/dist/api/resources/generatorExec/resources/config/types/index.d.ts +2 -0
  28. package/dist/api/resources/generatorExec/resources/config/types/index.js +2 -0
  29. package/dist/version.d.ts +1 -1
  30. package/dist/version.js +1 -1
  31. package/package.json +1 -1
  32. package/version.d.ts +1 -1
  33. package/version.js +1 -1
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export interface CratesPublishInfo {
5
+ version: string;
6
+ packageName: string;
7
+ repoUrl?: string;
8
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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
  }
@@ -8,3 +8,4 @@ export * from "./NpmPublishInfo";
8
8
  export * from "./NugetPublishInfo";
9
9
  export * from "./PypiPublishInfo";
10
10
  export * from "./RubyGemsPublishInfo";
11
+ export * from "./CratesPublishInfo";
@@ -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
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export interface CratesRegistryConfig {
5
+ registryUrl: string;
6
+ token: string;
7
+ packageName: string;
8
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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
  }
@@ -8,4 +8,5 @@ export interface GeneratorRegistriesConfigV2 {
8
8
  pypi: FernIr.generatorExec.PypiRegistryConfig;
9
9
  rubygems: FernIr.generatorExec.RubyGemsRegistryConfig;
10
10
  nuget: FernIr.generatorExec.NugetRegistryConfig;
11
+ crates: FernIr.generatorExec.CratesRegistryConfig;
11
12
  }
@@ -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);
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export interface CratesPublishInfo {
5
+ version: string;
6
+ packageName: string;
7
+ repoUrl?: string;
8
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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
  }
@@ -8,3 +8,4 @@ export * from "./NpmPublishInfo";
8
8
  export * from "./NugetPublishInfo";
9
9
  export * from "./PypiPublishInfo";
10
10
  export * from "./RubyGemsPublishInfo";
11
+ export * from "./CratesPublishInfo";
@@ -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
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export interface CratesRegistryConfig {
5
+ registryUrl: string;
6
+ token: string;
7
+ packageName: string;
8
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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
  }
@@ -8,4 +8,5 @@ export interface GeneratorRegistriesConfigV2 {
8
8
  pypi: FernIr.generatorExec.PypiRegistryConfig;
9
9
  rubygems: FernIr.generatorExec.RubyGemsRegistryConfig;
10
10
  nuget: FernIr.generatorExec.NugetRegistryConfig;
11
+ crates: FernIr.generatorExec.CratesRegistryConfig;
11
12
  }
@@ -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.0";
1
+ export declare const SDK_VERSION = "61.3.0";
package/dist/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = "61.1.0";
4
+ exports.SDK_VERSION = "61.3.0";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fern-api/dynamic-ir-sdk",
3
- "version": "61.1.0",
3
+ "version": "61.3.0",
4
4
  "private": false,
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",
package/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "61.1.0";
1
+ export declare const SDK_VERSION = "61.3.0";
package/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = "61.1.0";
4
+ exports.SDK_VERSION = "61.3.0";