-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from alexa/release-2024.1
Mar 2024 Release of APL Suggester 2024.1
- Loading branch information
Showing
37 changed files
with
979 additions
and
5,688 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
[ | ||
{ | ||
"type":"Log", | ||
"level":"info", | ||
"message":"printing info log", | ||
"arguments":[ "this is info log for you" | ||
] | ||
}, | ||
{ | ||
"type":"Log", | ||
"level":"warn", | ||
"message":"printing warning log", | ||
"arguments":["this is info warning for you" | ||
] | ||
}, | ||
{ | ||
"type":"Log", | ||
"level":"error", | ||
"message":"printing error log", | ||
"arguments":["this is error log for you" | ||
] | ||
}, | ||
{ | ||
"type":"Log", | ||
"level":"critical", | ||
"message":"printing critical log", | ||
"arguments":["this is critical log for you"] | ||
}, | ||
{ | ||
"type":"Log", | ||
"level":"debug", | ||
"message":"printing debug log", | ||
"arguments":["this is debug log for you" | ||
] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
[ | ||
{ | ||
"type":"Log", | ||
"level":"info", | ||
"message":"printing info log with argument value as NULL", | ||
"arguments":[] | ||
}, | ||
{ | ||
"type":"Log", | ||
"level":"warn", | ||
"message":"printing warning log with argument value as STRING", | ||
"arguments":[ | ||
"String 1", | ||
"String 2", | ||
"String 3" | ||
] | ||
}, | ||
{ | ||
"type":"Log", | ||
"level":"error", | ||
"message":"printing error log with argument value as NUMBERS", | ||
"arguments":[ | ||
1, | ||
2, | ||
3 | ||
] | ||
}, | ||
{ | ||
"type":"Log", | ||
"level":"critical", | ||
"message":"printing critical log with argument value as ARRAY", | ||
"arguments":[ | ||
[1, "array1", 2, "array2"] | ||
] | ||
}, | ||
{ | ||
"type":"Log", | ||
"level":"debug", | ||
"message":"printing debug log with argument value as NESTED OBJECT", | ||
"arguments":[ | ||
1, | ||
2, | ||
{ | ||
"nested1":"object1", | ||
"nested2":"object2" | ||
} | ||
] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
[ | ||
{ | ||
"type":"LOG", | ||
"level":"critical", | ||
"message":"type is a const: Log", | ||
"arguments":[] | ||
}, | ||
{ | ||
"type":"Log", | ||
"level":"warn", | ||
"message":"", | ||
"arguments":"cannot be string" | ||
}, | ||
{ | ||
"type":"Log", | ||
"level":1, | ||
"message":"NULL log level", | ||
"arguments":[ | ||
1, | ||
2, | ||
3 | ||
] | ||
}, | ||
{ | ||
"type":"Log", | ||
"level":"karthik", | ||
"message":"incorrect log level", | ||
"arguments":[ | ||
[1, "array1", 2, "array2"] | ||
] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"type": "Frame", | ||
"background": { | ||
"colorRange": ["black", "white"] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.