@natch-the-storage/heathershaw-platform-types 1.7.6 → 1.7.7
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/build/validators.d.ts +12 -0
- package/build/validators.js +12 -0
- package/package.json +1 -1
package/build/validators.d.ts
CHANGED
|
@@ -536,6 +536,18 @@ export interface ContactFormInternalCreate {
|
|
|
536
536
|
orderNumber?: string;
|
|
537
537
|
message: string;
|
|
538
538
|
}
|
|
539
|
+
export declare const BucketObjects: {
|
|
540
|
+
dev: {
|
|
541
|
+
emailLogo: {
|
|
542
|
+
url: string;
|
|
543
|
+
};
|
|
544
|
+
};
|
|
545
|
+
prod: {
|
|
546
|
+
emailLogo: {
|
|
547
|
+
url: undefined;
|
|
548
|
+
};
|
|
549
|
+
};
|
|
550
|
+
};
|
|
539
551
|
export declare const ApiRoutes: {
|
|
540
552
|
orders: {
|
|
541
553
|
list: string;
|
package/build/validators.js
CHANGED
|
@@ -67,6 +67,18 @@ export const parseCategory = (category) => {
|
|
|
67
67
|
return 'General';
|
|
68
68
|
}
|
|
69
69
|
};
|
|
70
|
+
export const BucketObjects = {
|
|
71
|
+
dev: {
|
|
72
|
+
emailLogo: {
|
|
73
|
+
url: 'https://pub-8a1a0de58ef143239a849bfea14018bf.r2.dev/core/logo-no-tagline-white-green.svg',
|
|
74
|
+
},
|
|
75
|
+
},
|
|
76
|
+
prod: {
|
|
77
|
+
emailLogo: {
|
|
78
|
+
url: undefined,
|
|
79
|
+
},
|
|
80
|
+
},
|
|
81
|
+
};
|
|
70
82
|
export const ApiRoutes = {
|
|
71
83
|
orders: {
|
|
72
84
|
list: '/api/orders',
|