-
Notifications
You must be signed in to change notification settings - Fork 130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds Company and Company Contact reference type to flow action/trigger fields serialization #3062
Conversation
Thanks for your contribution! Depending on what you are working on, you may want to request a review from a Shopify team:
|
Coverage report
Show files with reduced coverage 🔻
Test suite run success1460 tests passing in 677 suites. Report generated by 🧪jest coverage report action from aaaaa71 |
This comment has been minimized.
This comment has been minimized.
Differences in type declarationsWe detected differences in the type declarations generated by Typescript for this branch compared to the baseline ('main' branch). Please, review them to ensure they are backward-compatible. Here are some important things to keep in mind:
New type declarationsWe found no new type declarations in this PR Existing type declarationspackages/cli-kit/dist/public/common/string.d.ts@@ -96,4 +96,12 @@ export declare function formatDate(date: Date): string;
* @param items - List of items.
* @returns The joined string.
*/
-export declare function joinWithAnd(items: string[]): string;
\ No newline at end of file
+export declare function joinWithAnd(items: string[]): string;
+/**
+ * Given a string, it returns the PascalCase form of it.
+ * Eg: "pascal_case" returns "PascalCase".
+ *
+ * @param str - String to PascalCase.
+ * @returns String with all the first letter capitalized with no spaces.
+ */
+export declare function pascalize(str: string): string;
\ No newline at end of file
|
/shipit |
WHY are these changes introduced?
WHAT is this pull request doing?
How to test your changes?
Post-release steps
Measuring impact
How do we know this change was effective? Please choose one:
Checklist
dev
ordeploy
have been reflected in the internal flowchart.