Remove unnecessary files
|
@ -1 +0,0 @@
|
|||
ignore_*
|
|
@ -4,8 +4,6 @@ Here are good examples and working code snippets to start from.
|
|||
|
||||
A lot of these files are used for development and are subject to change.
|
||||
|
||||
For more complete sample code, see the integration testing suite in `/test`.
|
||||
|
||||
### Running the examples
|
||||
|
||||
Run the examples. Make sure to pass both the file you wish to run, as well as `common.go` to include the convenience functions.
|
||||
|
|
|
@ -1,17 +0,0 @@
|
|||
# Sample App
|
||||
|
||||
This is bad code.
|
||||
|
||||
We shell exec the start/stop/create/destroy docker commands (poorly)
|
||||
and this is how the unit testing suite attempts to start/stop/create/destroy
|
||||
the local persistent store.
|
||||
|
||||
### Running The Sample App
|
||||
|
||||
```bash
|
||||
./pcreate # Will create the sample app running locally
|
||||
./pdestroy # Will destroy the sample app, but the data will persist regardles of running this command
|
||||
./pstop # Will stop the photoprism app from running/serving
|
||||
./plogs # Will tail the photoprism logs
|
||||
./pstart # Will start an already created, and then stopped Photoprism application
|
||||
```
|
|
@ -1,91 +0,0 @@
|
|||
package sampleapp
|
||||
|
||||
import (
|
||||
"path/filepath"
|
||||
"runtime"
|
||||
|
||||
"github.com/astravexton/logger"
|
||||
|
||||
"github.com/astravexton/photoprism-client-go"
|
||||
)
|
||||
|
||||
type SampleApplication struct {
|
||||
}
|
||||
|
||||
func New() *SampleApplication {
|
||||
app := &SampleApplication{}
|
||||
return app
|
||||
}
|
||||
|
||||
// These are the bash scripts that can be used
|
||||
// to start/stop the Photoprism test application
|
||||
var (
|
||||
CreateCommand = `pcreate`
|
||||
DestroyCommand = `pdestroy`
|
||||
LogsCommand = `plogs`
|
||||
StartCommand = `pstart`
|
||||
StopCommand = `pstop"`
|
||||
)
|
||||
|
||||
func (a *SampleApplication) Start() error {
|
||||
logger.Info("Starting Application...")
|
||||
script, err := NewScriptFromPath(filepath.Join(PrintWorkingDirectory(), StartCommand))
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return script.Interpret()
|
||||
}
|
||||
|
||||
func (a *SampleApplication) Stop() error {
|
||||
logger.Info("Stopping Application...")
|
||||
script, err := NewScriptFromPath(filepath.Join(PrintWorkingDirectory(), StopCommand))
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return script.Interpret()
|
||||
}
|
||||
|
||||
func (a *SampleApplication) Create() error {
|
||||
logger.Info("Create Application...")
|
||||
script, err := NewScriptFromPath(filepath.Join(PrintWorkingDirectory(), CreateCommand))
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return script.Interpret()
|
||||
}
|
||||
|
||||
func (a *SampleApplication) Destroy() error {
|
||||
logger.Info("Destroying Application...")
|
||||
script, err := NewScriptFromPath(filepath.Join(PrintWorkingDirectory(), DestroyCommand))
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return script.Interpret()
|
||||
}
|
||||
|
||||
func (a *SampleApplication) Logs() error {
|
||||
logger.Info("Logging Application...")
|
||||
script, err := NewScriptFromPath(filepath.Join(PrintWorkingDirectory(), LogsCommand))
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return script.Interpret()
|
||||
}
|
||||
|
||||
func (a *SampleApplication) GetAuth() photoprism.ClientAuthenticator {
|
||||
return nil
|
||||
}
|
||||
|
||||
func PrintWorkingDirectory() string {
|
||||
_, filename, _, ok := runtime.Caller(1)
|
||||
if !ok {
|
||||
logger.Info("Unable to PWD")
|
||||
return ""
|
||||
}
|
||||
dir, err := filepath.Abs(filepath.Dir(filename))
|
||||
if err != nil {
|
||||
logger.Info("Unable to PWD: %v", err)
|
||||
return ""
|
||||
}
|
||||
return dir
|
||||
}
|
|
@ -1,169 +0,0 @@
|
|||
package sampleapp
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"os/exec"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
|
||||
"github.com/astravexton/logger"
|
||||
)
|
||||
|
||||
// Script is a set of commands delimited by newlines
|
||||
// Comments # and // are ignored.
|
||||
type Script struct {
|
||||
commands []string
|
||||
}
|
||||
|
||||
// NewScriptFromPath is used to build an executable script from a path of disk.
|
||||
func NewScriptFromPath(path string) (*Script, error) {
|
||||
path, err := filepath.Abs(path)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("unable to calculate fully qualified path for path: %s: %v", path, err)
|
||||
}
|
||||
|
||||
bytes, err := ioutil.ReadFile(path)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("unable to read from path %s: %v", path, err)
|
||||
}
|
||||
content := string(bytes)
|
||||
return NewScriptFromString(content), nil
|
||||
}
|
||||
|
||||
const (
|
||||
// IgnoreSpacesBash is the amount of (spaces - 1) that we see in common \\n delimited commands
|
||||
IgnoreSpacesBash string = " "
|
||||
|
||||
// IgnoreTabs is the tab character
|
||||
IgnoreTabs string = "\t"
|
||||
)
|
||||
|
||||
// NewScriptFromString is used to build an executable script from the content in string form.
|
||||
func NewScriptFromString(str string) *Script {
|
||||
script := &Script{}
|
||||
removeRuleF := func(str string, rs []string) string {
|
||||
for _, r := range rs {
|
||||
str = strings.Replace(str, r, "", -1)
|
||||
}
|
||||
return str
|
||||
}
|
||||
str = strings.Replace(str, "\\\n", "", -1)
|
||||
str = removeRuleF(str, []string{IgnoreSpacesBash, IgnoreTabs})
|
||||
spl := strings.Split(str, "\n")
|
||||
//logger.Info("Script lines: %d", len(spl))
|
||||
for _, line := range spl {
|
||||
script.commands = append(script.commands, line)
|
||||
}
|
||||
return script
|
||||
}
|
||||
|
||||
// Interpret is used to procedurally execute a script. The script will execute each line independently
|
||||
// and can error at any point in the executation path.
|
||||
func (s *Script) Interpret() error {
|
||||
//logger.Info("Running script...")
|
||||
for i, cmdStr := range s.commands {
|
||||
// Exec will hang for output
|
||||
// Ignore newlines
|
||||
// Ignore comments starting with #
|
||||
// Ignore comments starting with //
|
||||
if cmdStr == "\n" || cmdStr == "" || strings.HasPrefix(cmdStr, "#") || strings.HasPrefix(cmdStr, "//") {
|
||||
continue
|
||||
}
|
||||
logger.Info("Executing: [%s]", cmdStr)
|
||||
result, err := Exec(cmdStr)
|
||||
if err != nil {
|
||||
return fmt.Errorf("error executing running command [%s] on line [%d]\n%v\n", cmdStr, i+1, err)
|
||||
} else if result.exitCode != 0 {
|
||||
return fmt.Errorf("non zero exit code running command [%s] on line [%d]\n%s\n%s\n", cmdStr, i+1, result.Stdout(), result.Stderr())
|
||||
}
|
||||
// Here is where we log STDOUT from a "script"
|
||||
// Right now it is set to DEBUG which can be enabled by
|
||||
// setting logger.Level = 4
|
||||
logger.Debug(result.Stdout())
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type ExecResult struct {
|
||||
stderr string
|
||||
stdout string
|
||||
exitCode int
|
||||
execErr exec.ExitError
|
||||
}
|
||||
|
||||
func (e *ExecResult) Stdout() string {
|
||||
return e.stdout
|
||||
}
|
||||
|
||||
func (e *ExecResult) Stderr() string {
|
||||
return e.stderr
|
||||
}
|
||||
|
||||
func (e *ExecResult) ExitCode() int {
|
||||
if e == nil {
|
||||
return 0
|
||||
}
|
||||
return e.exitCode
|
||||
}
|
||||
|
||||
func (e *ExecResult) ExecError() exec.ExitError {
|
||||
return e.execErr
|
||||
}
|
||||
|
||||
// Exec will take an arbitrary executable string
|
||||
// and hang until the command exits
|
||||
func Exec(str string) (*ExecResult, error) {
|
||||
//logger.Info("Exec [%s]", str)
|
||||
var cmdstr string
|
||||
var args []string
|
||||
var l int
|
||||
spl := strings.Split(str, " ")
|
||||
l = len(spl)
|
||||
if l == 1 {
|
||||
// <cmd>
|
||||
cmdstr = spl[0]
|
||||
} else if l > 1 {
|
||||
// <cmd> <arg>...
|
||||
cmdstr = spl[0]
|
||||
for i := 1; i < l; i++ {
|
||||
args = append(args, spl[i])
|
||||
}
|
||||
} else if l < 1 {
|
||||
return nil, fmt.Errorf("invalid Exec() string %s", str)
|
||||
}
|
||||
fqpcmd, err := exec.LookPath(cmdstr)
|
||||
if err != nil {
|
||||
logger.Debug("unable to find fully qualified path for executable %s: %v", cmdstr, err)
|
||||
}
|
||||
|
||||
//logger.Info("Command: %s", fqpcmd)
|
||||
//logger.Info("Args: %v", args)
|
||||
|
||||
stdoutBuffer := bytes.Buffer{}
|
||||
stderrBuffer := bytes.Buffer{}
|
||||
e := []string{fqpcmd}
|
||||
for _, arg := range args {
|
||||
e = append(e, arg)
|
||||
}
|
||||
cmd := exec.Command(e[0], e[1:]...)
|
||||
cmd.Stdout = &stdoutBuffer
|
||||
cmd.Stderr = &stderrBuffer
|
||||
result := &ExecResult{}
|
||||
err = cmd.Run()
|
||||
if err != nil {
|
||||
if eerr, ok := err.(*exec.ExitError); ok {
|
||||
result.stderr = stderrBuffer.String()
|
||||
result.stdout = stdoutBuffer.String()
|
||||
result.exitCode = eerr.ExitCode()
|
||||
result.execErr = *eerr
|
||||
return result, nil
|
||||
}
|
||||
return nil, fmt.Errorf("major error running command [%s]: %v", str, err)
|
||||
}
|
||||
result.stderr = stderrBuffer.String()
|
||||
result.stdout = stdoutBuffer.String()
|
||||
result.exitCode = 0
|
||||
return result, nil
|
||||
}
|
|
@ -1,25 +0,0 @@
|
|||
|
||||
#!/bin/bash
|
||||
####################################
|
||||
#####
|
||||
###
|
||||
##
|
||||
#
|
||||
#
|
||||
# Startup Script for the Application
|
||||
####################################
|
||||
echo "Creating [SampleApp]"
|
||||
|
||||
# TODO Nova
|
||||
# TODO Per edude03ontwitch we want to actually mount /photoprism/whatever
|
||||
docker run -d \
|
||||
--name photoprism \
|
||||
-p 8080:2342 \
|
||||
-e PHOTOPRISM_UPLOAD_NSFW="true" \
|
||||
-e PHOTOPRISM_ADMIN_PASSWORD="missy" \
|
||||
-v ${GOPATH}/src/github.com/astravexton/photoprism-client-go/sample-app/photoprism/import:/photoprism/import \
|
||||
-v ${GOPATH}/src/github.com/astravexton/photoprism-client-go/sample-app/photoprism/originals:/photoprism/originals \
|
||||
-v ${GOPATH}/src/github.com/astravexton/photoprism-client-go/sample-app/photoprism/storage:/photoprism/storage \
|
||||
photoprism/photoprism:latest
|
||||
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
#!/bin/bash
|
||||
####################################
|
||||
#####
|
||||
###
|
||||
##
|
||||
#
|
||||
#
|
||||
# Startup Script for the Application
|
||||
####################################
|
||||
echo "Destroying [SampleApp]"
|
||||
docker stop photoprism
|
||||
docker rm photoprism
|
||||
|
Before Width: | Height: | Size: 592 KiB |
Before Width: | Height: | Size: 114 KiB |
Before Width: | Height: | Size: 380 KiB |
Before Width: | Height: | Size: 134 KiB |
Before Width: | Height: | Size: 380 KiB |
Before Width: | Height: | Size: 592 KiB |
Before Width: | Height: | Size: 114 KiB |
Before Width: | Height: | Size: 134 KiB |
|
@ -1,17 +0,0 @@
|
|||
UID: aqnzih81icziiyae
|
||||
Slug: february-2021
|
||||
Type: album
|
||||
Title: February 2021
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-04T03:17:32Z
|
||||
UpdatedAt: 2021-02-04T03:17:32Z
|
||||
Photos:
|
||||
- UID: pqnzigq156lndozm
|
||||
CreatedAt: 2021-02-04T03:17:40.83892969Z
|
||||
- UID: pqnzigq1jb1bibrz
|
||||
CreatedAt: 2021-02-04T03:17:40.846632301Z
|
||||
- UID: pqnzigq351j2fqgn
|
||||
CreatedAt: 2021-02-04T03:17:40.851856107Z
|
||||
- UID: pqnzigq3sidxb0j0
|
||||
CreatedAt: 2021-02-04T03:17:40.857083572Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe01hgxpo1hjih
|
||||
Slug: novaalbum
|
||||
Type: album
|
||||
Title: NovaAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-11T23:03:18Z
|
||||
UpdatedAt: 2021-02-11T23:03:18Z
|
||||
DeletedAt: 2021-02-11T23:14:45.771988424Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe0941aw0wz0rj
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-11T23:07:53Z
|
||||
UpdatedAt: 2021-02-11T23:07:53Z
|
||||
DeletedAt: 2021-02-11T23:14:36.400063828Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe0j0nog2wtd98
|
||||
Slug: february-2021
|
||||
Type: album
|
||||
Title: February 2021
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-11T23:13:49Z
|
||||
UpdatedAt: 2021-02-11T23:13:49Z
|
||||
DeletedAt: 2021-02-11T23:14:30.637709439Z
|
|
@ -1,10 +0,0 @@
|
|||
UID: aqoe0o1v8rjprqy6
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Description: An updated album description
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-11T23:16:49Z
|
||||
UpdatedAt: 2021-02-11T23:16:49.091245891Z
|
||||
DeletedAt: 2021-02-11T23:18:32.10184988Z
|
|
@ -1,10 +0,0 @@
|
|||
UID: aqoe0xu1149t43i3
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Description: An updated album description
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-11T23:22:42Z
|
||||
UpdatedAt: 2021-02-11T23:22:42.31692892Z
|
||||
DeletedAt: 2021-02-12T00:14:52.285222547Z
|
|
@ -1,10 +0,0 @@
|
|||
UID: aqoe0zl3h1wak08f
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Description: An updated album description
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-11T23:23:46Z
|
||||
UpdatedAt: 2021-02-11T23:23:45.864716162Z
|
||||
DeletedAt: 2021-02-11T23:24:31.729202695Z
|
|
@ -1,10 +0,0 @@
|
|||
UID: aqoe1231tb94a48k
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Description: An updated album description
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-11T23:25:16Z
|
||||
UpdatedAt: 2021-02-11T23:25:15.61908592Z
|
||||
DeletedAt: 2021-02-12T00:14:52.285222547Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe1981fbhzaou2
|
||||
Slug: novaalbum
|
||||
Type: album
|
||||
Title: NovaAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-11T23:29:33Z
|
||||
UpdatedAt: 2021-02-11T23:29:33Z
|
||||
DeletedAt: 2021-02-12T00:14:52.285222547Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe1bw1ywyawhlb
|
||||
Slug: novaalbum
|
||||
Type: album
|
||||
Title: NovaAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-11T23:31:08Z
|
||||
UpdatedAt: 2021-02-11T23:31:08Z
|
||||
DeletedAt: 2021-02-11T23:31:08.058407849Z
|
|
@ -1,10 +0,0 @@
|
|||
UID: aqoe1cs1rrfaer9d
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Description: An updated album description
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-11T23:31:41Z
|
||||
UpdatedAt: 2021-02-11T23:31:40.791556222Z
|
||||
DeletedAt: 2021-02-11T23:31:40.798855984Z
|
|
@ -1,10 +0,0 @@
|
|||
UID: aqoe1mn3669ed8vc
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Description: An updated album description
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-11T23:37:36Z
|
||||
UpdatedAt: 2021-02-11T23:37:35.931076271Z
|
||||
DeletedAt: 2021-02-11T23:37:35.938663557Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe1mnib00h33mh
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-11T23:37:36Z
|
||||
UpdatedAt: 2021-02-11T23:37:36Z
|
||||
DeletedAt: 2021-02-11T23:37:35.984813813Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe1su2yz12rn7r
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-11T23:41:19Z
|
||||
UpdatedAt: 2021-02-11T23:41:19Z
|
||||
DeletedAt: 2021-02-11T23:41:18.568153261Z
|
|
@ -1,10 +0,0 @@
|
|||
UID: aqoe1su312pday8a
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Description: An updated album description
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-11T23:41:18Z
|
||||
UpdatedAt: 2021-02-11T23:41:18.505274668Z
|
||||
DeletedAt: 2021-02-11T23:41:18.517183797Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe1su3gj3q7mrk
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-11T23:41:19Z
|
||||
UpdatedAt: 2021-02-11T23:41:19Z
|
||||
DeletedAt: 2021-02-11T23:41:18.592298473Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe2nw1mc3m0c95
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-11T23:59:57Z
|
||||
UpdatedAt: 2021-02-11T23:59:57Z
|
||||
DeletedAt: 2021-02-11T23:59:56.834221161Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe2nw2mtjrlyuq
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-11T23:59:57Z
|
||||
UpdatedAt: 2021-02-11T23:59:57Z
|
||||
DeletedAt: 2021-02-11T23:59:56.78263971Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe2nw310xqz9f1
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-11T23:59:57Z
|
||||
UpdatedAt: 2021-02-11T23:59:57Z
|
||||
DeletedAt: 2021-02-11T23:59:56.805849627Z
|
|
@ -1,10 +0,0 @@
|
|||
UID: aqoe2nws4nefmwtt
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Description: An updated album description
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-11T23:59:57Z
|
||||
UpdatedAt: 2021-02-11T23:59:56.727315788Z
|
||||
DeletedAt: 2021-02-11T23:59:56.734742155Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe2u021a4zjufp
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:03:37Z
|
||||
UpdatedAt: 2021-02-12T00:03:37Z
|
||||
DeletedAt: 2021-02-12T00:03:36.899233684Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe2u0299hfp9uf
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:03:37Z
|
||||
UpdatedAt: 2021-02-12T00:03:37Z
|
||||
DeletedAt: 2021-02-12T00:03:36.927067016Z
|
|
@ -1,10 +0,0 @@
|
|||
UID: aqoe2u03t1k09mbq
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Description: An updated album description
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:03:37Z
|
||||
UpdatedAt: 2021-02-12T00:03:36.846932177Z
|
||||
DeletedAt: 2021-02-12T00:03:36.854999187Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe2u0zakwm0kh4
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:03:37Z
|
||||
UpdatedAt: 2021-02-12T00:03:37Z
|
||||
DeletedAt: 2021-02-12T00:03:36.955701902Z
|
|
@ -1,10 +0,0 @@
|
|||
UID: aqoe2y1x2v9ulekw
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Description: An updated album description
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:06:02Z
|
||||
UpdatedAt: 2021-02-12T00:06:01.997666242Z
|
||||
DeletedAt: 2021-02-12T00:06:02.008962725Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe2y233f9xc3me
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:06:02Z
|
||||
UpdatedAt: 2021-02-12T00:06:02Z
|
||||
DeletedAt: 2021-02-12T00:06:02.061930815Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe2y23iah7q8dd
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:06:02Z
|
||||
UpdatedAt: 2021-02-12T00:06:02Z
|
||||
DeletedAt: 2021-02-12T00:06:02.107878556Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe2y23n8shfo26
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:06:02Z
|
||||
UpdatedAt: 2021-02-12T00:06:02Z
|
||||
DeletedAt: 2021-02-12T00:06:02.083118581Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe310mqejp7sjx
|
||||
Slug: novaalbum
|
||||
Type: album
|
||||
Title: NovaAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:07:48Z
|
||||
UpdatedAt: 2021-02-12T00:07:48Z
|
||||
DeletedAt: 2021-02-12T00:07:48.087397413Z
|
|
@ -1,10 +0,0 @@
|
|||
UID: aqoe3di2oe0gj7eb
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Description: An updated album description
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:15:18Z
|
||||
UpdatedAt: 2021-02-12T00:15:18.326635885Z
|
||||
DeletedAt: 2021-02-12T00:15:18.337623732Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe3di3f013g098
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:15:18Z
|
||||
UpdatedAt: 2021-02-12T00:15:18Z
|
||||
DeletedAt: 2021-02-12T00:15:18.387748516Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe3di3rfrp4osq
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:15:18Z
|
||||
UpdatedAt: 2021-02-12T00:15:18Z
|
||||
DeletedAt: 2021-02-12T00:15:18.417353099Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe3di9wl91qjy1
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:15:18Z
|
||||
UpdatedAt: 2021-02-12T00:15:18Z
|
||||
DeletedAt: 2021-02-12T00:15:18.441462643Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe3go3alpu9g42
|
||||
Slug: february-2021-2
|
||||
Type: album
|
||||
Title: February 2021 (2)
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:17:12Z
|
||||
UpdatedAt: 2021-02-12T00:17:12Z
|
||||
DeletedAt: 2021-02-12T00:25:55.610343844Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe3sj140onsu3u
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:24:20Z
|
||||
UpdatedAt: 2021-02-12T00:24:20Z
|
||||
DeletedAt: 2021-02-12T00:24:19.584898324Z
|
|
@ -1,10 +0,0 @@
|
|||
UID: aqoe3sj2oim76rfl
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Description: An updated album description
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:24:19Z
|
||||
UpdatedAt: 2021-02-12T00:24:19.452079212Z
|
||||
DeletedAt: 2021-02-12T00:24:19.46454459Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe3sj3d9vpwfs6
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:24:19Z
|
||||
UpdatedAt: 2021-02-12T00:24:19Z
|
||||
DeletedAt: 2021-02-12T00:24:19.513541437Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe3sj5v7uxy0xi
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:24:20Z
|
||||
UpdatedAt: 2021-02-12T00:24:20Z
|
||||
DeletedAt: 2021-02-12T00:24:19.539899181Z
|
|
@ -1,10 +0,0 @@
|
|||
UID: aqoe3uk1ztdf4ly1
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Description: An updated album description
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:25:32Z
|
||||
UpdatedAt: 2021-02-12T00:25:32.382246374Z
|
||||
DeletedAt: 2021-02-12T00:25:32.39451528Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe3uk2ssh3wlmu
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:25:32Z
|
||||
UpdatedAt: 2021-02-12T00:25:32Z
|
||||
DeletedAt: 2021-02-12T00:25:32.501491328Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe3uk3quu1oau5
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:25:32Z
|
||||
UpdatedAt: 2021-02-12T00:25:32Z
|
||||
DeletedAt: 2021-02-12T00:25:32.438255604Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe3ukef6k7pr1n
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:25:32Z
|
||||
UpdatedAt: 2021-02-12T00:25:32Z
|
||||
DeletedAt: 2021-02-12T00:25:32.457679012Z
|
|
@ -1,10 +0,0 @@
|
|||
UID: aqoe43017x1x557a
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Description: An updated album description
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:30:36Z
|
||||
UpdatedAt: 2021-02-12T00:30:36.452565204Z
|
||||
DeletedAt: 2021-02-12T00:30:36.466024116Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe43038gpo8o62
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:30:37Z
|
||||
UpdatedAt: 2021-02-12T00:30:37Z
|
||||
DeletedAt: 2021-02-12T00:30:36.541728272Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe4303e2k7fowx
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:30:36Z
|
||||
UpdatedAt: 2021-02-12T00:30:36Z
|
||||
DeletedAt: 2021-02-12T00:30:36.515616836Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe430hjepljox7
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:30:37Z
|
||||
UpdatedAt: 2021-02-12T00:30:37Z
|
||||
DeletedAt: 2021-02-12T00:30:36.590399562Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe46u1y7nllowc
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:32:55Z
|
||||
UpdatedAt: 2021-02-12T00:32:55Z
|
||||
DeletedAt: 2021-02-12T00:32:54.670452125Z
|
|
@ -1,10 +0,0 @@
|
|||
UID: aqoe46u2eytps9ks
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Description: An updated album description
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:32:55Z
|
||||
UpdatedAt: 2021-02-12T00:32:54.621067369Z
|
||||
DeletedAt: 2021-02-12T00:32:54.629069306Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe46ugvoopsx2c
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:32:55Z
|
||||
UpdatedAt: 2021-02-12T00:32:55Z
|
||||
DeletedAt: 2021-02-12T00:32:54.738939626Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe46uh3251f3o5
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:32:55Z
|
||||
UpdatedAt: 2021-02-12T00:32:55Z
|
||||
DeletedAt: 2021-02-12T00:32:54.694577526Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe4k41ws8kl303
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:40:52Z
|
||||
UpdatedAt: 2021-02-12T00:40:52Z
|
||||
DeletedAt: 2021-02-12T00:40:52.236143624Z
|
|
@ -1,10 +0,0 @@
|
|||
UID: aqoe4k420c8937zq
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Description: An updated album description
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:40:52Z
|
||||
UpdatedAt: 2021-02-12T00:40:52.149620745Z
|
||||
DeletedAt: 2021-02-12T00:40:52.157633931Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe4k423kseyeok
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:40:52Z
|
||||
UpdatedAt: 2021-02-12T00:40:52Z
|
||||
DeletedAt: 2021-02-12T00:40:52.205835621Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe4k42wb7vdpy4
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:40:52Z
|
||||
UpdatedAt: 2021-02-12T00:40:52Z
|
||||
DeletedAt: 2021-02-12T00:40:52.346059642Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe4m917yd0x5d8
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:42:10Z
|
||||
UpdatedAt: 2021-02-12T00:42:10Z
|
||||
DeletedAt: 2021-02-12T00:42:09.739048804Z
|
|
@ -1,10 +0,0 @@
|
|||
UID: aqoe4m91dd475mc2
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Description: An updated album description
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:42:10Z
|
||||
UpdatedAt: 2021-02-12T00:42:09.68534495Z
|
||||
DeletedAt: 2021-02-12T00:42:09.697602792Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe4m9204aigugh
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:42:10Z
|
||||
UpdatedAt: 2021-02-12T00:42:10Z
|
||||
DeletedAt: 2021-02-12T01:19:49.19521169Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe4m93kl5118yf
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T00:42:10Z
|
||||
UpdatedAt: 2021-02-12T00:42:10Z
|
||||
DeletedAt: 2021-02-12T00:42:09.764632667Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe5s018umhsg2z
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T01:07:12Z
|
||||
UpdatedAt: 2021-02-12T01:07:12Z
|
||||
DeletedAt: 2021-02-12T01:07:12.278795475Z
|
|
@ -1,10 +0,0 @@
|
|||
UID: aqoe5s02eypzy49n
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Description: An updated album description
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T01:07:12Z
|
||||
UpdatedAt: 2021-02-12T01:07:12.18606883Z
|
||||
DeletedAt: 2021-02-12T01:07:12.20368425Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe5s02htbyx02a
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T01:07:12Z
|
||||
UpdatedAt: 2021-02-12T01:07:12Z
|
||||
DeletedAt: 2021-02-12T01:07:12.25672608Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe5s0kcesnf038
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T01:07:12Z
|
||||
UpdatedAt: 2021-02-12T01:07:12Z
|
||||
DeletedAt: 2021-02-12T01:07:12.311501625Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe5um2nxaam1jf
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T01:08:46Z
|
||||
UpdatedAt: 2021-02-12T01:08:46Z
|
||||
DeletedAt: 2021-02-12T01:08:46.441203314Z
|
|
@ -1,10 +0,0 @@
|
|||
UID: aqoe5um3k2bjzdz3
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Description: An updated album description
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T01:08:46Z
|
||||
UpdatedAt: 2021-02-12T01:08:46.349964437Z
|
||||
DeletedAt: 2021-02-12T01:08:46.364581421Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe5umo46cx9up1
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T01:08:46Z
|
||||
UpdatedAt: 2021-02-12T01:08:46Z
|
||||
DeletedAt: 2021-02-12T01:08:46.414981534Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe5zd1dhchzyrt
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T01:11:37Z
|
||||
UpdatedAt: 2021-02-12T01:11:37Z
|
||||
DeletedAt: 2021-02-12T01:11:37.410053582Z
|
|
@ -1,10 +0,0 @@
|
|||
UID: aqoe5zd1n8nyjezg
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Description: An updated album description
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T01:11:37Z
|
||||
UpdatedAt: 2021-02-12T01:11:37.317189151Z
|
||||
DeletedAt: 2021-02-12T01:11:37.337078186Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe5zdgv8bbtzbn
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T01:11:37Z
|
||||
UpdatedAt: 2021-02-12T01:11:37Z
|
||||
DeletedAt: 2021-02-12T01:11:37.38408389Z
|
|
@ -1,10 +0,0 @@
|
|||
UID: aqoe63g15cp92acg
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Description: An updated album description
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T01:14:05Z
|
||||
UpdatedAt: 2021-02-12T01:14:04.617839652Z
|
||||
DeletedAt: 2021-02-12T01:14:04.630483844Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe63g1hvf4c37t
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T01:14:05Z
|
||||
UpdatedAt: 2021-02-12T01:14:05Z
|
||||
DeletedAt: 2021-02-12T01:14:04.683342935Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe63g1wp37dwns
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T01:14:05Z
|
||||
UpdatedAt: 2021-02-12T01:14:05Z
|
||||
DeletedAt: 2021-02-12T01:14:04.720807005Z
|
|
@ -1,10 +0,0 @@
|
|||
UID: aqoe66r266y7x2ct
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Description: An updated album description
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T01:16:03Z
|
||||
UpdatedAt: 2021-02-12T01:16:03.089952155Z
|
||||
DeletedAt: 2021-02-12T01:16:03.103617951Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe66r304v81itt
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T01:16:03Z
|
||||
UpdatedAt: 2021-02-12T01:16:03Z
|
||||
DeletedAt: 2021-02-12T01:16:03.147574525Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe66r3bjgymp2o
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T01:16:03Z
|
||||
UpdatedAt: 2021-02-12T01:16:03Z
|
||||
DeletedAt: 2021-02-12T01:16:03.168746489Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe68w1gxzard2c
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T01:17:21Z
|
||||
UpdatedAt: 2021-02-12T01:17:21Z
|
||||
DeletedAt: 2021-02-12T01:17:20.582731838Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe68w1lzpyk5zg
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T01:17:21Z
|
||||
UpdatedAt: 2021-02-12T01:17:21Z
|
||||
DeletedAt: 2021-02-12T01:17:20.549276966Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe68w245je8zni
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T01:17:21Z
|
||||
UpdatedAt: 2021-02-12T01:17:21Z
|
||||
DeletedAt: 2021-02-12T01:17:20.626364883Z
|
|
@ -1,10 +0,0 @@
|
|||
UID: aqoe68wxhb91hvje
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Description: An updated album description
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T01:17:20Z
|
||||
UpdatedAt: 2021-02-12T01:17:20.480072684Z
|
||||
DeletedAt: 2021-02-12T01:17:20.493622671Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe6k91z2qayg4w
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T01:24:10Z
|
||||
UpdatedAt: 2021-02-12T01:24:10Z
|
||||
DeletedAt: 2021-02-12T01:24:09.719043974Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe6k922s2v6yp1
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T01:24:10Z
|
||||
UpdatedAt: 2021-02-12T01:24:10Z
|
||||
DeletedAt: 2021-02-12T01:24:09.794949796Z
|
|
@ -1,10 +0,0 @@
|
|||
UID: aqoe6k93d879bjgg
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Description: An updated album description
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T01:24:10Z
|
||||
UpdatedAt: 2021-02-12T01:24:09.652930019Z
|
||||
DeletedAt: 2021-02-12T01:24:09.664933038Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe6k9k0kkmx79g
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T01:24:10Z
|
||||
UpdatedAt: 2021-02-12T01:24:10Z
|
||||
DeletedAt: 2021-02-12T01:24:09.744169818Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe8ez1jjge2mq2
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T02:04:11Z
|
||||
UpdatedAt: 2021-02-12T02:04:11Z
|
||||
DeletedAt: 2021-02-12T02:04:11.32572869Z
|
|
@ -1,9 +0,0 @@
|
|||
UID: aqoe8ez2htvawjx6
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T02:04:11Z
|
||||
UpdatedAt: 2021-02-12T02:04:11Z
|
||||
DeletedAt: 2021-02-12T02:04:11.277362825Z
|
|
@ -1,10 +0,0 @@
|
|||
UID: aqoe8ez3kaiy71vi
|
||||
Slug: testalbum
|
||||
Type: album
|
||||
Title: TestAlbum
|
||||
Description: An updated album description
|
||||
Order: oldest
|
||||
Country: zz
|
||||
CreatedAt: 2021-02-12T02:04:11Z
|
||||
UpdatedAt: 2021-02-12T02:04:11.178898158Z
|
||||
DeletedAt: 2021-02-12T02:04:11.190112861Z
|