瀏覽代碼

chore: Fix missing custom fields

Michael Bromley 3 年之前
父節點
當前提交
feb4a7ebf3

文件差異過大導致無法顯示
+ 0 - 0
packages/admin-ui/src/lib/core/src/common/generated-types.ts


+ 3 - 0
packages/admin-ui/src/lib/core/src/data/definitions/settings-definitions.ts

@@ -785,6 +785,9 @@ export const GET_SERVER_CONFIG = gql`
                     ShippingMethod {
                         ...CustomFields
                     }
+                    StockLocation {
+                        ...CustomFields
+                    }
                     TaxCategory {
                         ...CustomFields
                     }

+ 2 - 1
packages/core/e2e/graphql/generated-e2e-admin-types.ts

@@ -8415,7 +8415,8 @@ export type AttemptLoginMutation = {
               identifier: string;
               channels: Array<{ code: string; token: string; permissions: Array<Permission> }>;
           }
-        | {};
+        | { errorCode: ErrorCode; message: string }
+        | { errorCode: ErrorCode; message: string };
 };
 
 export type GetCountryListQueryVariables = Exact<{

部分文件因文件數量過多而無法顯示