inngest 3.27.2 → 3.27.3
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/CHANGELOG.md +6 -0
- package/components/ai/models/openai.d.ts +1 -1
- package/components/ai/models/openai.d.ts.map +1 -1
- package/package.json +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# inngest
|
|
2
2
|
|
|
3
|
+
## 3.27.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#768](https://github.com/inngest/inngest-js/pull/768) [`af66ad5`](https://github.com/inngest/inngest-js/commit/af66ad5552dc93d41756ab3b913ceafb72739f77) Thanks [@charlypoly](https://github.com/charlypoly)! - Add `o1-preview` and `o1-mini` to possible OpenAI models
|
|
8
|
+
|
|
3
9
|
## 3.27.2
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -14,7 +14,7 @@ export declare namespace OpenAi {
|
|
|
14
14
|
* compatibility](https://platform.openai.com/docs/models#model-endpoint-compatibility)
|
|
15
15
|
* table for details on which models work with the Chat API.
|
|
16
16
|
*/
|
|
17
|
-
type Model = "gpt-4o" | "chatgpt-4o-latest" | "gpt-4o-mini" | "gpt-4" | "gpt-3.5-turbo";
|
|
17
|
+
type Model = "gpt-4o" | "chatgpt-4o-latest" | "gpt-4o-mini" | "gpt-4" | "o1-preview" | "o1-mini" | "gpt-3.5-turbo";
|
|
18
18
|
/**
|
|
19
19
|
* Options for creating an OpenAI model.
|
|
20
20
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"openai.d.ts","sourceRoot":"","sources":["../../../../src/components/ai/models/openai.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,eAAe,CAAC;AAC/C,OAAO,EAAE,KAAK,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAE7D;;;;GAIG;AACH,eAAO,MAAM,MAAM,EAAE,SAAS,CAAC,YAAY,CACzC;IAAC,OAAO,EAAE,MAAM,CAAC,cAAc;CAAC,EAChC,MAAM,CAAC,OAAO,CAsBf,CAAC;AAEF,yBAAiB,MAAM,CAAC;IACtB;;;;OAIG;IACH,KAAY,KAAK,GACb,QAAQ,GACR,mBAAmB,GACnB,aAAa,GACb,OAAO,GACP,eAAe,CAAC;IAEpB;;OAEG;IACH,UAAiB,cAAc;QAC7B;;;;WAIG;QACH,KAAK,EAAE,KAAK,CAAC;QAEb;;;WAGG;QACH,MAAM,CAAC,EAAE,MAAM,CAAC;QAEhB;;;;WAIG;QACH,OAAO,CAAC,EAAE,MAAM,CAAC;KAClB;IAED;;OAEG;IACH,KAAY,OAAO,GAAG,eAAe,GAAG;QAAE,OAAO,EAAE,cAAc,CAAA;KAAE,CAAC;CACrE"}
|
|
1
|
+
{"version":3,"file":"openai.d.ts","sourceRoot":"","sources":["../../../../src/components/ai/models/openai.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,eAAe,CAAC;AAC/C,OAAO,EAAE,KAAK,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAE7D;;;;GAIG;AACH,eAAO,MAAM,MAAM,EAAE,SAAS,CAAC,YAAY,CACzC;IAAC,OAAO,EAAE,MAAM,CAAC,cAAc;CAAC,EAChC,MAAM,CAAC,OAAO,CAsBf,CAAC;AAEF,yBAAiB,MAAM,CAAC;IACtB;;;;OAIG;IACH,KAAY,KAAK,GACb,QAAQ,GACR,mBAAmB,GACnB,aAAa,GACb,OAAO,GACP,YAAY,GACZ,SAAS,GACT,eAAe,CAAC;IAEpB;;OAEG;IACH,UAAiB,cAAc;QAC7B;;;;WAIG;QACH,KAAK,EAAE,KAAK,CAAC;QAEb;;;WAGG;QACH,MAAM,CAAC,EAAE,MAAM,CAAC;QAEhB;;;;WAIG;QACH,OAAO,CAAC,EAAE,MAAM,CAAC;KAClB;IAED;;OAEG;IACH,KAAY,OAAO,GAAG,eAAe,GAAG;QAAE,OAAO,EAAE,cAAc,CAAA;KAAE,CAAC;CACrE"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "inngest",
|
|
3
|
-
"version": "3.27.
|
|
3
|
+
"version": "3.27.3",
|
|
4
4
|
"description": "Official SDK for Inngest.com. Inngest is the reliability layer for modern applications. Inngest combines durable execution, events, and queues into a zero-infra platform with built-in observability.",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"types": "./index.d.ts",
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "3.27.
|
|
1
|
+
export declare const version = "3.27.3";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED