api_sabeq_ps_v1 0.1.8 → 0.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a5218f54b67971db4b62536d3df77dc1448df5bd75c0ecd22cb02608bf4d3625
4
- data.tar.gz: 13cb51dc48d6b40bd10a61d12429a983582403494b4244edac105e373147d217
3
+ metadata.gz: c9106819e7c5742b348213a03626ce362d9ee633ae5203f148f247b1ec4cf172
4
+ data.tar.gz: 15af1dba18a989563914772d3a73543291948ee60ea86046b97b4dee36bf5909
5
5
  SHA512:
6
- metadata.gz: eca2174e512f9a8101ceaeca152e0884501daf082a0a6ad833de81420f1c09381031e5d0d4a0a83f675f1b313065e003576f6d53c3134f646dae9c1ef710f8cb
7
- data.tar.gz: d8c84df5c32e6136b0386cd78d75a138d1bbc334e7500c47c5a674873ab1d00ec2916a80caa762268818b494de119aa0d331f02499a727f73e24911a78b86bde
6
+ metadata.gz: 3d431effbd380d085f9560075e070bd6039a3f94cb7425af7db45b8223756c60817f9ced492e81fcf80a202936f237f73929df4734dfc6e8b3c1d67d2b8e0c1d
7
+ data.tar.gz: 9fbe5abadb55895c59f43d42e0b8a0078444efe4483d72686b69e7ac2f50559731f2e69c3d8bf02577ea1b31f19262ba54f1a282e11946c24c1e23e785fb7c8d
@@ -52,14 +52,12 @@ module ApiSabeqPsV1
52
52
  end
53
53
 
54
54
  def sabeq_api_v1_create_parcel(verification_token, name, phone1, phone2, content,
55
- payment_amount, area_id, address, location_url,
56
- delivery_notes, special_notes)
55
+ payment_amount, area_id, address, delivery_notes, special_notes)
57
56
  auth_link = SABEQ_URL + "/api/v1/parcels"
58
57
  auth_json = { verification_token: verification_token,
59
58
  name: name, phone1: phone1, phone2: phone2,
60
59
  content: content, payment_amount: payment_amount,
61
- area_id: area_id,
62
- address: address, location_url: location_url,
60
+ area_id: area_id, address: address,
63
61
  delivery_notes: delivery_notes,
64
62
  special_notes: special_notes }
65
63
  json_response = make_post_request(auth_link, auth_json)
@@ -68,6 +66,22 @@ module ApiSabeqPsV1
68
66
  end
69
67
 
70
68
  def sabeq_api_v1_1_create_parcel(verification_token, name, phone1, phone2, content,
69
+ payment_amount, area_id, street_id, address, service_type,
70
+ delivery_notes, special_notes)
71
+ auth_link = SABEQ_URL + "/api/v1/parcels"
72
+ auth_json = { verification_token: verification_token,
73
+ name: name, phone1: phone1, phone2: phone2,
74
+ content: content, payment_amount: payment_amount,
75
+ area_id: area_id, street_id: street_id, address: address,
76
+ service_type: service_type,
77
+ delivery_notes: delivery_notes,
78
+ special_notes: special_notes }
79
+ json_response = make_post_request(auth_link, auth_json)
80
+
81
+ return json_response
82
+ end
83
+
84
+ def sabeq_api_v1_2_create_parcel(verification_token, name, phone1, phone2, content,
71
85
  payment_amount, area_id, street_id, address, location_url,
72
86
  service_type, delivery_notes, special_notes)
73
87
  auth_link = SABEQ_URL + "/api/v1/parcels"
@@ -1,3 +1,3 @@
1
1
  module ApiSabeqPsV1
2
- VERSION = "0.1.8"
2
+ VERSION = "0.1.9"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: api_sabeq_ps_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - ShaimaKaraki
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-10-08 00:00:00.000000000 Z
11
+ date: 2024-10-09 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Its a gem for sabeq.ps API helper functionalities
14
14
  email: