Skip to content

Commit 2bba3e5

Browse files
committed
Use codelessly_json_annotation and codelessly_json_serialization
1 parent b297036 commit 2bba3e5

File tree

85 files changed

+89
-85
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+89
-85
lines changed

README.md

Lines changed: 1 addition & 1 deletion

build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
targets:
22
$default:
33
builders:
4-
json_serializable:
4+
codelessly_json_serializable:
55
options:
66
# The other properties are the same as default (https://pub.dev/packages/json_serializable#build-configuration).
77
# explicit_to_json must be true for nested properties to work (like a Paint inside a Frame, toJson must be called in both)

example/example.md

Lines changed: 1 addition & 1 deletion

lib/src/api/converters.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import 'package:json_annotation/json_annotation.dart';
1+
import 'package:codelessly_json_annotation/codelessly_json_annotation.dart';
22

33
import 'node_json_converter.dart';
44
import 'nodes/base_node.dart';

lib/src/api/custom_component.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// license that can be found in the LICENSE.md file.
44

55
import 'package:equatable/equatable.dart';
6-
import 'package:json_annotation/json_annotation.dart';
6+
import 'package:codelessly_json_annotation/codelessly_json_annotation.dart';
77

88
import 'converters.dart';
99
import 'mixins.dart';

lib/src/api/mixins.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// All rights reserved. Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE.md file.
44

5-
import 'package:json_annotation/json_annotation.dart';
5+
import 'package:codelessly_json_annotation/codelessly_json_annotation.dart';
66
import 'package:meta/meta.dart';
77

88
import 'models/models.dart';

lib/src/api/models/action/api_call_action.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import 'package:equatable/equatable.dart';
2-
import 'package:json_annotation/json_annotation.dart';
2+
import 'package:codelessly_json_annotation/codelessly_json_annotation.dart';
33

44
import '../../mixins.dart';
55
import '../condition.dart';

lib/src/api/models/action/call_function_action.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// license that can be found in the LICENSE.md file.
44

55
import 'package:equatable/equatable.dart';
6-
import 'package:json_annotation/json_annotation.dart';
6+
import 'package:codelessly_json_annotation/codelessly_json_annotation.dart';
77

88
import '../../../../codelessly_api.dart';
99

lib/src/api/models/action/link_action.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// license that can be found in the LICENSE.md file.
44

55
import 'package:equatable/equatable.dart';
6-
import 'package:json_annotation/json_annotation.dart';
6+
import 'package:codelessly_json_annotation/codelessly_json_annotation.dart';
77

88
import '../../mixins.dart';
99
import '../condition.dart';

lib/src/api/models/action/navigation_action.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// license that can be found in the LICENSE.md file.
44

55
import 'package:equatable/equatable.dart';
6-
import 'package:json_annotation/json_annotation.dart';
6+
import 'package:codelessly_json_annotation/codelessly_json_annotation.dart';
77

88
import '../../mixins.dart';
99
import '../condition.dart';

0 commit comments

Comments
 (0)