Skip to content
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

Add embedded views to the SDK & integrate into sample app #243

Merged
merged 34 commits into from
Nov 27, 2023
Merged
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
b38f49d
card view implemented
iamavishkar Jul 7, 2023
dfa1f5b
code changes as per recent review
iamavishkar Aug 14, 2023
b9cc44d
Embedded Manager Module - WIP
vishal753 Aug 21, 2023
c5eaf14
Embedded Manager Module - added uuid library
vishal753 Aug 21, 2023
bdeedbc
usage of card view
iamavishkar Aug 21, 2023
dc9d61c
Code modified for embedded msg
vishal753 Aug 22, 2023
f800979
Documentation added
vishal753 Aug 23, 2023
c93c06c
Events example added
vishal753 Aug 23, 2023
1a5e233
Embedded msg example with card view
vishal753 Sep 1, 2023
8650c46
Embedded msg example updated
vishal753 Sep 11, 2023
10a3913
build config changed and few updates done on card component
vishal753 Sep 12, 2023
a63ad9d
react-example improved
vishal753 Sep 12, 2023
9b5245d
Create manual.yml
devcsomnicg Sep 13, 2023
d98a02d
Node webpack config changed
vishal753 Sep 13, 2023
e4e0267
Webpack config changed
vishal753 Sep 13, 2023
00b5a87
Merge branch 'embedded' into embedded-msg
devcsomnicg Sep 18, 2023
74dbcf8
Merge branch 'DEV-104-CardView' into embedded-msgs-example
devcsomnicg Sep 18, 2023
14ea958
Merge branch 'embedded' into embedded-msgs-example
devcsomnicg Sep 18, 2023
f2983de
Merge branch 'embedded-msg' into embedded-msgs-example
devcsomnicg Sep 18, 2023
6e8587a
Yarn file issue fixed
vishal753 Sep 18, 2023
8f01a76
[MOB-7175]: add new filter method that leaves in JSON only messages (…
mprew97 Oct 19, 2023
f11af55
Merge branch 'Iterable:main' into main
devcsomnicg Oct 20, 2023
7ab20a0
ver bump (#240)
mprew97 Oct 25, 2023
1f9cbf6
Merge branch 'embedded' into embedded-msgs-example
hani329 Oct 27, 2023
07731cd
embedded msg view integration
hani329 Oct 31, 2023
a93b1aa
integrate demo in sample app
hani329 Nov 1, 2023
bafd2fc
Resolve node build issue
hani329 Nov 3, 2023
941312c
Merge branch 'Iterable:main' into main
devcsomnicg Nov 15, 2023
fc8cc5b
Merge branch 'main' of https://github.com/devcsomnicg/iterable-web-sd…
hani329 Nov 15, 2023
3710a86
Merge branch 'embedded' of https://github.com/devcsomnicg/iterable-we…
hani329 Nov 15, 2023
602ce8c
Merge branch 'embedded' into DEV-249
hani329 Nov 22, 2023
34e0806
commit remaining code
hani329 Nov 22, 2023
e1e5975
Merge branch 'embedded' of into DEV-249
hani329 Nov 23, 2023
60eb521
commit remaining files
hani329 Nov 23, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/manual.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# This is a basic workflow that is manually triggered

name: Manual workflow

# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
workflow_dispatch:
# Inputs the workflow accepts.
inputs:
name:
# Friendly description to be shown in the UI instead of 'name'
description: 'Person to greet'
# Default value if no value is explicitly provided
default: 'World'
# Input has to be provided for the workflow to run
required: true
# The data type of the input
type: string

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "greet"
greet:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Runs a single command using the runners shell
- name: Send greeting
run: echo "Hello ${{ inputs.name }}"
Loading