├── .gitignore ├── FAQ.md ├── LICENSE ├── README.md ├── client_example └── javascript │ ├── .babelrc │ ├── .eslintrc │ ├── README.md │ ├── config.js │ ├── gql.js │ ├── index.js │ ├── package-lock.json │ ├── package.json │ └── request.js └── gqlschema └── public_story_api.graphql /.gitignore: -------------------------------------------------------------------------------- 1 | # Javascript 2 | 3 | node_modules 4 | 5 | # IntelliJ 6 | 7 | .idea 8 | -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/storykit/HEAD/FAQ.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/storykit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/storykit/HEAD/README.md -------------------------------------------------------------------------------- /client_example/javascript/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/storykit/HEAD/client_example/javascript/.babelrc -------------------------------------------------------------------------------- /client_example/javascript/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/storykit/HEAD/client_example/javascript/.eslintrc -------------------------------------------------------------------------------- /client_example/javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/storykit/HEAD/client_example/javascript/README.md -------------------------------------------------------------------------------- /client_example/javascript/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/storykit/HEAD/client_example/javascript/config.js -------------------------------------------------------------------------------- /client_example/javascript/gql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/storykit/HEAD/client_example/javascript/gql.js -------------------------------------------------------------------------------- /client_example/javascript/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/storykit/HEAD/client_example/javascript/index.js -------------------------------------------------------------------------------- /client_example/javascript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/storykit/HEAD/client_example/javascript/package-lock.json -------------------------------------------------------------------------------- /client_example/javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/storykit/HEAD/client_example/javascript/package.json -------------------------------------------------------------------------------- /client_example/javascript/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/storykit/HEAD/client_example/javascript/request.js -------------------------------------------------------------------------------- /gqlschema/public_story_api.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snapchat/storykit/HEAD/gqlschema/public_story_api.graphql --------------------------------------------------------------------------------