-
-
Notifications
You must be signed in to change notification settings - Fork 198
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cf98591
commit ddc25c6
Showing
31 changed files
with
398 additions
and
395 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
## 0.0.4 | ||
|
||
Added description | ||
|
||
## 0.0.3 | ||
|
||
Added more cloud functions |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
2 changes: 2 additions & 0 deletions
2
lib/base/parse_constants.dart → lib/src/base/parse_constants.dart
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
part of flutter_parse_sdk; | ||
|
||
class ParseConstants { | ||
|
||
static const String PARSE_DATE_FORMAT = "yyyy-MM-dd'T'HH:mm"; | ||
|
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
part of flutter_parse_sdk; | ||
|
||
class ParseData { | ||
static ParseData _instance; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
lib/data/parse_data_objects.dart → lib/src/data/parse_data_objects.dart
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
2 changes: 2 additions & 0 deletions
2
lib/data/parse_data_server.dart → lib/src/data/parse_data_server.dart
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
4 changes: 1 addition & 3 deletions
4
lib/data/parse_data_user.dart → lib/src/data/parse_data_user.dart
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,14 @@ | ||
part of flutter_parse_sdk; | ||
|
||
enum ParseApiFunctionCallType { execute } | ||
|
||
class ParseApiFunctionCallTypeUtil { | ||
static getEnumValue(ParseApiFunctionCallType type) { | ||
switch (type) { | ||
case ParseApiFunctionCallType.execute: | ||
{ | ||
return 'execure'; | ||
} | ||
} | ||
} | ||
} |
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,34 @@ | ||
part of flutter_parse_sdk; | ||
|
||
enum ParseApiObjectCallType { get, getAll, create, save, query, delete } | ||
|
||
class ParseApiObjectCallTypeUtil { | ||
static getEnumValue(ParseApiObjectCallType type) { | ||
switch (type) { | ||
case ParseApiObjectCallType.get: | ||
{ | ||
return 'get'; | ||
} | ||
case ParseApiObjectCallType.getAll: | ||
{ | ||
return 'getAll'; | ||
} | ||
case ParseApiObjectCallType.create: | ||
{ | ||
return 'create'; | ||
} | ||
case ParseApiObjectCallType.save: | ||
{ | ||
return 'save'; | ||
} | ||
case ParseApiObjectCallType.query: | ||
{ | ||
return 'query'; | ||
} | ||
case ParseApiObjectCallType.delete: | ||
{ | ||
return 'delete'; | ||
} | ||
} | ||
} | ||
} |
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,51 @@ | ||
part of flutter_parse_sdk; | ||
|
||
enum ParseApiUserCallType { | ||
currentUser, | ||
signUp, | ||
login, | ||
verificationEmailRequest, | ||
requestPasswordReset, | ||
save, | ||
destroy, | ||
all | ||
} | ||
|
||
class ParseApiUserCallTypeUtils { | ||
static getEnumValue(ParseApiUserCallType type) { | ||
switch (type) { | ||
case ParseApiUserCallType.currentUser: | ||
{ | ||
return 'currentUser'; | ||
} | ||
case ParseApiUserCallType.signUp: | ||
{ | ||
return 'signUp'; | ||
} | ||
case ParseApiUserCallType.login: | ||
{ | ||
return 'login'; | ||
} | ||
case ParseApiUserCallType.verificationEmailRequest: | ||
{ | ||
return 'verificationEmailRequest'; | ||
} | ||
case ParseApiUserCallType.requestPasswordReset: | ||
{ | ||
return 'requestPasswordReset'; | ||
} | ||
case ParseApiUserCallType.save: | ||
{ | ||
return 'save'; | ||
} | ||
case ParseApiUserCallType.destroy: | ||
{ | ||
return 'destroy'; | ||
} | ||
case ParseApiUserCallType.all: | ||
{ | ||
return 'all'; | ||
} | ||
} | ||
} | ||
} |
10 changes: 3 additions & 7 deletions
10
lib/network/parse_http_client.dart → lib/src/network/parse_http_client.dart
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
5 changes: 1 addition & 4 deletions
5
lib/network/parse_livequery.dart → lib/src/network/parse_livequery.dart
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
2 changes: 1 addition & 1 deletion
2
lib/objects/parse_exception.dart → lib/src/objects/parse_exception.dart
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import 'package:http/http.dart'; | ||
part of flutter_parse_sdk; | ||
|
||
class ParseException { | ||
|
||
|
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.