@automate.ax/catalog 0.83.1 → 0.83.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/dist/catalog.d.ts +2 -4
- package/dist/catalog.js +1 -2
- package/package.json +1 -1
- package/src/catalog.ts +1 -2
package/dist/catalog.d.ts
CHANGED
|
@@ -152,7 +152,6 @@ export declare const codexService: {
|
|
|
152
152
|
readonly type: "form";
|
|
153
153
|
}];
|
|
154
154
|
readonly description: "Connect a Codex workspace access token.";
|
|
155
|
-
readonly icon: "openai";
|
|
156
155
|
readonly id: "codex";
|
|
157
156
|
readonly name: "Codex";
|
|
158
157
|
};
|
|
@@ -200,7 +199,7 @@ export declare const convexService: {
|
|
|
200
199
|
readonly label: "Webhook signing secret";
|
|
201
200
|
readonly name: "webhookSecret";
|
|
202
201
|
readonly placeholder: "At least 32 characters";
|
|
203
|
-
readonly required:
|
|
202
|
+
readonly required: false;
|
|
204
203
|
}];
|
|
205
204
|
readonly id: "deployment-key";
|
|
206
205
|
readonly name: "Deployment key";
|
|
@@ -808,7 +807,6 @@ export declare const integrationCatalog: readonly [{
|
|
|
808
807
|
readonly type: "form";
|
|
809
808
|
}];
|
|
810
809
|
readonly description: "Connect a Codex workspace access token.";
|
|
811
|
-
readonly icon: "openai";
|
|
812
810
|
readonly id: "codex";
|
|
813
811
|
readonly name: "Codex";
|
|
814
812
|
}, {
|
|
@@ -854,7 +852,7 @@ export declare const integrationCatalog: readonly [{
|
|
|
854
852
|
readonly label: "Webhook signing secret";
|
|
855
853
|
readonly name: "webhookSecret";
|
|
856
854
|
readonly placeholder: "At least 32 characters";
|
|
857
|
-
readonly required:
|
|
855
|
+
readonly required: false;
|
|
858
856
|
}];
|
|
859
857
|
readonly id: "deployment-key";
|
|
860
858
|
readonly name: "Deployment key";
|
package/dist/catalog.js
CHANGED
|
@@ -112,7 +112,6 @@ export const codexService = defineIntegrationService({
|
|
|
112
112
|
},
|
|
113
113
|
],
|
|
114
114
|
description: "Connect a Codex workspace access token.",
|
|
115
|
-
icon: "openai",
|
|
116
115
|
id: "codex",
|
|
117
116
|
name: "Codex",
|
|
118
117
|
});
|
|
@@ -147,7 +146,7 @@ export const convexService = defineIntegrationService({
|
|
|
147
146
|
label: "Webhook signing secret",
|
|
148
147
|
name: "webhookSecret",
|
|
149
148
|
placeholder: "At least 32 characters",
|
|
150
|
-
required:
|
|
149
|
+
required: false,
|
|
151
150
|
},
|
|
152
151
|
],
|
|
153
152
|
id: "deployment-key",
|
package/package.json
CHANGED
package/src/catalog.ts
CHANGED
|
@@ -123,7 +123,6 @@ export const codexService = defineIntegrationService({
|
|
|
123
123
|
},
|
|
124
124
|
],
|
|
125
125
|
description: "Connect a Codex workspace access token.",
|
|
126
|
-
icon: "openai",
|
|
127
126
|
id: "codex",
|
|
128
127
|
name: "Codex",
|
|
129
128
|
})
|
|
@@ -161,7 +160,7 @@ export const convexService = defineIntegrationService({
|
|
|
161
160
|
label: "Webhook signing secret",
|
|
162
161
|
name: "webhookSecret",
|
|
163
162
|
placeholder: "At least 32 characters",
|
|
164
|
-
required:
|
|
163
|
+
required: false,
|
|
165
164
|
},
|
|
166
165
|
],
|
|
167
166
|
id: "deployment-key",
|