shred-api-client 2.5.3 → 2.5.5
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 +3 -2
- 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"]),
|
|
@@ -5846,7 +5847,7 @@ var Note_api_default = NoteAPI;
|
|
|
5846
5847
|
// src/model/special-offer/SpecialOffer.api.ts
|
|
5847
5848
|
var Endpoints8 = {
|
|
5848
5849
|
List: {
|
|
5849
|
-
uri: "/special-offers/",
|
|
5850
|
+
uri: "/special-offers/list",
|
|
5850
5851
|
method: "GET"
|
|
5851
5852
|
},
|
|
5852
5853
|
GetActive: {
|
|
@@ -5854,7 +5855,7 @@ var Endpoints8 = {
|
|
|
5854
5855
|
method: "GET"
|
|
5855
5856
|
},
|
|
5856
5857
|
Create: {
|
|
5857
|
-
uri: "/special-offers/",
|
|
5858
|
+
uri: "/special-offers/create",
|
|
5858
5859
|
method: "POST"
|
|
5859
5860
|
},
|
|
5860
5861
|
Update: {
|