shred-api-client 2.5.2 → 2.5.4
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/index.d.ts +3 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2203,6 +2203,7 @@ declare namespace index$6 {
|
|
|
2203
2203
|
|
|
2204
2204
|
declare const EditorSchema: z.ZodObject<{
|
|
2205
2205
|
id: z.ZodString;
|
|
2206
|
+
name: z.ZodString;
|
|
2206
2207
|
email: z.ZodString;
|
|
2207
2208
|
isEnabled: z.ZodBoolean;
|
|
2208
2209
|
type: z.ZodEnum<["FT", "PT"]>;
|
|
@@ -2213,6 +2214,7 @@ declare const EditorSchema: z.ZodObject<{
|
|
|
2213
2214
|
email: string;
|
|
2214
2215
|
id: string;
|
|
2215
2216
|
type: "FT" | "PT";
|
|
2217
|
+
name: string;
|
|
2216
2218
|
isEnabled: boolean;
|
|
2217
2219
|
goal: number;
|
|
2218
2220
|
maxHold: number;
|
|
@@ -2221,6 +2223,7 @@ declare const EditorSchema: z.ZodObject<{
|
|
|
2221
2223
|
email: string;
|
|
2222
2224
|
id: string;
|
|
2223
2225
|
type: "FT" | "PT";
|
|
2226
|
+
name: string;
|
|
2224
2227
|
isEnabled: boolean;
|
|
2225
2228
|
goal: number;
|
|
2226
2229
|
maxHold: number;
|
package/dist/index.js
CHANGED
|
@@ -5671,6 +5671,7 @@ __export(editor_exports, {
|
|
|
5671
5671
|
// src/model/editor/Editor.schema.ts
|
|
5672
5672
|
var EditorSchema = external_exports.object({
|
|
5673
5673
|
id: external_exports.string(),
|
|
5674
|
+
name: external_exports.string(),
|
|
5674
5675
|
email: external_exports.string(),
|
|
5675
5676
|
isEnabled: external_exports.boolean(),
|
|
5676
5677
|
type: external_exports.enum(["FT", "PT"]),
|
|
@@ -5681,7 +5682,7 @@ var EditorSchema = external_exports.object({
|
|
|
5681
5682
|
|
|
5682
5683
|
// src/model/editor/Editor.api.ts
|
|
5683
5684
|
var Endpoints5 = {
|
|
5684
|
-
GetAll: { uri: "/editors", method: "GET" },
|
|
5685
|
+
GetAll: { uri: "/editors/list", method: "GET" },
|
|
5685
5686
|
GetById: { uri: "/editors/:editorId", method: "GET" }
|
|
5686
5687
|
};
|
|
5687
5688
|
|