merchi_sdk_js 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (173) hide show
  1. package/dist/address.js +109 -0
  2. package/dist/assignment.js +175 -0
  3. package/dist/automatic_payment_relationship.js +72 -0
  4. package/dist/backup.js +32 -0
  5. package/dist/bank.js +25 -0
  6. package/dist/cart.js +133 -0
  7. package/dist/cart_item.js +71 -0
  8. package/dist/cart_shipment_group.js +23 -0
  9. package/dist/cart_shipment_quote.js +26 -0
  10. package/dist/category.js +68 -0
  11. package/dist/company.js +248 -0
  12. package/dist/company_invitation.js +70 -0
  13. package/dist/component.js +107 -0
  14. package/dist/component_tag.js +60 -0
  15. package/dist/component_version.js +21 -0
  16. package/dist/country_tax.js +93 -0
  17. package/dist/dictionary.js +130 -0
  18. package/dist/discount.js +22 -0
  19. package/dist/discount_group.js +18 -0
  20. package/dist/domain.js +245 -0
  21. package/dist/domain_invitation.js +17 -0
  22. package/dist/domain_tag.js +87 -0
  23. package/dist/domain_types.js +22 -0
  24. package/dist/draft.js +97 -0
  25. package/dist/draft_comment.js +45 -0
  26. package/dist/draft_template.js +39 -0
  27. package/dist/email_address.js +34 -0
  28. package/dist/email_counter.js +47 -0
  29. package/dist/enrolled_domain.js +88 -0
  30. package/dist/exchange_rate.js +66 -0
  31. package/dist/field_types.js +19 -0
  32. package/dist/helpers.js +86 -0
  33. package/dist/internal_tag.js +98 -0
  34. package/dist/inventory.js +100 -0
  35. package/dist/inventory_unit_variation.js +19 -0
  36. package/dist/invoice.js +225 -0
  37. package/dist/invoice_types.js +11 -0
  38. package/dist/item.js +25 -0
  39. package/dist/job.js +536 -0
  40. package/dist/job_comment.js +45 -0
  41. package/dist/job_status.js +47 -0
  42. package/dist/matching_inventory.js +21 -0
  43. package/dist/md5.js +149 -0
  44. package/dist/menu.js +37 -0
  45. package/dist/menu_item.js +24 -0
  46. package/dist/merchi.js +1004 -0
  47. package/dist/merchi_file.js +165 -0
  48. package/dist/model.js +753 -0
  49. package/dist/notification.js +151 -0
  50. package/dist/notification_types.js +199 -0
  51. package/dist/output.cjs.js +31317 -0
  52. package/dist/output.esm.js +31312 -0
  53. package/dist/page.js +41 -0
  54. package/dist/payment.js +32 -0
  55. package/dist/payment_device.js +21 -0
  56. package/dist/payment_types.js +20 -0
  57. package/dist/phone_number.js +37 -0
  58. package/dist/product.js +288 -0
  59. package/dist/product_types.js +32 -0
  60. package/dist/production_comment.js +44 -0
  61. package/dist/quote.js +91 -0
  62. package/dist/quote_item.js +59 -0
  63. package/dist/roles.js +29 -0
  64. package/dist/seo_domain_page.js +42 -0
  65. package/dist/session.js +103 -0
  66. package/dist/set.js +29 -0
  67. package/dist/shipment.js +181 -0
  68. package/dist/shipment_item.js +17 -0
  69. package/dist/shipment_item_fulfillment.js +17 -0
  70. package/dist/shipment_method.js +81 -0
  71. package/dist/shipment_method_variation.js +38 -0
  72. package/dist/subscription_plan.js +75 -0
  73. package/dist/supply_domain.js +65 -0
  74. package/dist/system_role.js +12 -0
  75. package/dist/theme.js +180 -0
  76. package/dist/theme_css_setting.js +61 -0
  77. package/dist/theme_status.js +11 -0
  78. package/dist/user.js +409 -0
  79. package/dist/user_company.js +19 -0
  80. package/dist/user_types.js +23 -0
  81. package/dist/uuid.js +12 -0
  82. package/dist/variation.js +233 -0
  83. package/dist/variation_field.js +233 -0
  84. package/dist/variation_fields_option.js +41 -0
  85. package/dist/variation_option.js +62 -0
  86. package/dist/variations_group.js +43 -0
  87. package/dist/white_label_accessibilities.js +11 -0
  88. package/package.json +30 -0
  89. package/src/address.js +107 -0
  90. package/src/assignment.js +165 -0
  91. package/src/automatic_payment_relationship.js +65 -0
  92. package/src/backup.js +29 -0
  93. package/src/bank.js +21 -0
  94. package/src/cart.js +131 -0
  95. package/src/cart_item.js +71 -0
  96. package/src/cart_shipment_group.js +20 -0
  97. package/src/cart_shipment_quote.js +23 -0
  98. package/src/category.js +62 -0
  99. package/src/company.js +267 -0
  100. package/src/company_invitation.js +63 -0
  101. package/src/component.js +100 -0
  102. package/src/component_tag.js +53 -0
  103. package/src/component_version.js +17 -0
  104. package/src/country_tax.js +89 -0
  105. package/src/dictionary.js +135 -0
  106. package/src/discount.js +19 -0
  107. package/src/discount_group.js +15 -0
  108. package/src/domain.js +254 -0
  109. package/src/domain_invitation.js +13 -0
  110. package/src/domain_tag.js +79 -0
  111. package/src/domain_types.js +18 -0
  112. package/src/draft.js +92 -0
  113. package/src/draft_comment.js +41 -0
  114. package/src/draft_template.js +35 -0
  115. package/src/email_address.js +27 -0
  116. package/src/email_counter.js +42 -0
  117. package/src/enrolled_domain.js +79 -0
  118. package/src/exchange_rate.js +61 -0
  119. package/src/field_types.js +15 -0
  120. package/src/helpers.js +81 -0
  121. package/src/internal_tag.js +90 -0
  122. package/src/inventory.js +99 -0
  123. package/src/inventory_unit_variation.js +18 -0
  124. package/src/invoice.js +224 -0
  125. package/src/invoice_types.js +7 -0
  126. package/src/item.js +22 -0
  127. package/src/job.js +616 -0
  128. package/src/job_comment.js +41 -0
  129. package/src/job_status.js +51 -0
  130. package/src/matching_inventory.js +17 -0
  131. package/src/md5.js +162 -0
  132. package/src/menu.js +32 -0
  133. package/src/menu_item.js +22 -0
  134. package/src/merchi.js +1074 -0
  135. package/src/merchi_file.js +163 -0
  136. package/src/model.js +820 -0
  137. package/src/notification.js +153 -0
  138. package/src/notification_types.js +246 -0
  139. package/src/page.js +38 -0
  140. package/src/payment.js +32 -0
  141. package/src/payment_device.js +17 -0
  142. package/src/payment_types.js +18 -0
  143. package/src/phone_number.js +30 -0
  144. package/src/product.js +309 -0
  145. package/src/product_types.js +28 -0
  146. package/src/production_comment.js +40 -0
  147. package/src/quote.js +89 -0
  148. package/src/quote_item.js +51 -0
  149. package/src/roles.js +27 -0
  150. package/src/seo_domain_page.js +35 -0
  151. package/src/session.js +102 -0
  152. package/src/set.js +28 -0
  153. package/src/shipment.js +191 -0
  154. package/src/shipment_item.js +13 -0
  155. package/src/shipment_item_fulfillment.js +13 -0
  156. package/src/shipment_method.js +73 -0
  157. package/src/shipment_method_variation.js +34 -0
  158. package/src/subscription_plan.js +68 -0
  159. package/src/supply_domain.js +60 -0
  160. package/src/system_role.js +8 -0
  161. package/src/theme.js +188 -0
  162. package/src/theme_css_setting.js +54 -0
  163. package/src/theme_status.js +6 -0
  164. package/src/user.js +442 -0
  165. package/src/user_company.js +15 -0
  166. package/src/user_types.js +19 -0
  167. package/src/uuid.js +3 -0
  168. package/src/variation.js +257 -0
  169. package/src/variation_field.js +261 -0
  170. package/src/variation_fields_option.js +41 -0
  171. package/src/variation_option.js +59 -0
  172. package/src/variations_group.js +43 -0
  173. package/src/white_label_accessibilities.js +6 -0
@@ -0,0 +1,165 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.MerchiFile = MerchiFile;
7
+ exports.MerchiFiles = MerchiFiles;
8
+ var _uuid = require("./uuid.js");
9
+ var _dictionary = require("./dictionary.js");
10
+ var _model = require("./model.js");
11
+ function MerchiFile() {
12
+ this.resource = '/files';
13
+ this.json = 'file';
14
+ this.temporaryId = (0, _uuid.generateUUID)();
15
+ (0, _model.addPropertyTo)(this, 'id');
16
+ (0, _model.addPropertyTo)(this, 'name');
17
+ (0, _model.addPropertyTo)(this, 'size');
18
+ (0, _model.addPropertyTo)(this, 'mimetype');
19
+ (0, _model.addPropertyTo)(this, 'viewUrl');
20
+ (0, _model.addPropertyTo)(this, 'downloadUrl');
21
+ (0, _model.addPropertyTo)(this, 'creationDate');
22
+ this.get = function (success, error, embed) {
23
+ var self = this;
24
+ function handleResponse(result) {
25
+ success((0, _model.fromJson)(self, result[self.json], {
26
+ makesDirty: false
27
+ }));
28
+ }
29
+ (0, _model.getOne)({
30
+ resource: this.resource,
31
+ id: this.id(),
32
+ success: handleResponse,
33
+ error: error,
34
+ embed: embed
35
+ });
36
+ };
37
+ this.create = function (success, error, embed, as_domain) {
38
+ var data = (0, _model.serialise)(this),
39
+ self = this;
40
+ function handleResponse(result) {
41
+ success((0, _model.fromJson)(self, result[self.json]));
42
+ }
43
+ (0, _model.create)({
44
+ resource: this.resource,
45
+ parameters: data[0],
46
+ files: (0, _model.enumerateFiles)(data[1]),
47
+ success: handleResponse,
48
+ as_domain: as_domain,
49
+ error: error,
50
+ embed: embed
51
+ });
52
+ };
53
+ this.destroy = function (success, error) {
54
+ (0, _model.deleteOne)(this.resource + "/" + this.id(), success, error);
55
+ };
56
+ this.publicCreate = function (success, error) {
57
+ var self = this,
58
+ filesObject = (0, _model.serialise)(this),
59
+ request = new _model.Request();
60
+ request.resource('/public-upload-job-files/');
61
+ request.method('POST');
62
+ request.files((0, _model.enumerateFiles)(filesObject[1]));
63
+ function handleResponse(status, data) {
64
+ if (status === 201) {
65
+ success((0, _model.fromJson)(self, data[self.json]));
66
+ } else {
67
+ error(data);
68
+ }
69
+ }
70
+ function handleError(status, data) {
71
+ error({
72
+ message: 'could not connect to server'
73
+ });
74
+ }
75
+ request.responseHandler(handleResponse).errorHandler(handleError);
76
+ request.send();
77
+ };
78
+ this.fromString = function (name, mimetype, data) {
79
+ this.name(name);
80
+ this.mimetype(mimetype);
81
+ this.size(data.length);
82
+ this.fileData = new File([data], name, {
83
+ type: mimetype
84
+ });
85
+ return this;
86
+ };
87
+ this.fromFormFile = function (file) {
88
+ this.name(file.name);
89
+ this.mimetype(file.type);
90
+ this.size(file.size);
91
+ this.fileData = file;
92
+ return this;
93
+ };
94
+ this.isPdf = function () {
95
+ return this.mimetype() === 'application/pdf' || this.mimetype() === 'application/x-pdf';
96
+ };
97
+ this.isImage = function () {
98
+ var imageTypeString = this.mimetype() ? this.mimetype().split('/')[0] : null;
99
+ return imageTypeString === 'image';
100
+ };
101
+ this.fetchFileContents = function () {
102
+ var downloadUrl = this.downloadUrl();
103
+ return fetch(downloadUrl).then(function (response) {
104
+ return response.text();
105
+ });
106
+ };
107
+ }
108
+ function MerchiFiles() {
109
+ this.resource = '/files';
110
+ this.json = 'files';
111
+ this.single = MerchiFile;
112
+ this.get = function (success, error, parameters) {
113
+ var self = this;
114
+ function handleResponse(result) {
115
+ success((0, _model.fromJsonList)(self, result, {
116
+ makesDirty: false
117
+ }));
118
+ }
119
+ (0, _model.getList)(this.resource, handleResponse, error, parameters);
120
+ };
121
+ this.getUserFiles = function (success, error, parameters) {
122
+ var self = this,
123
+ query = new _dictionary.Dictionary(),
124
+ request = new _model.Request();
125
+ if (parameters.limit) {
126
+ query.add('limit', parameters.limit);
127
+ }
128
+ if (parameters.offset) {
129
+ query.add('offset', parameters.offset);
130
+ }
131
+ if (parameters.order) {
132
+ query.add('order', parameters.order);
133
+ }
134
+ if (parameters.q) {
135
+ query.add('q', parameters.q);
136
+ }
137
+ if (parameters.sort) {
138
+ query.add('sort', parameters.sort);
139
+ }
140
+ if (parameters.relatedUser) {
141
+ query.add('related_user', parameters.relatedUser);
142
+ }
143
+ query.add('skip_rights', true);
144
+ request.resource('/files/user/');
145
+ request.method('GET');
146
+ request.query().merge(query);
147
+ function handleResponse(status, data) {
148
+ if (status === 200) {
149
+ success((0, _model.fromJsonList)(self, data));
150
+ } else {
151
+ error(data);
152
+ }
153
+ }
154
+ function handleError(status, data) {
155
+ var statusCode = status ? status : 400,
156
+ errorObject = data ? data : {
157
+ message: 'could not connect to server',
158
+ errorCode: 0
159
+ };
160
+ error(statusCode, errorObject);
161
+ }
162
+ request.responseHandler(handleResponse).errorHandler(handleError);
163
+ request.send();
164
+ };
165
+ }