usps-imis-api 0.12.0 → 0.12.2

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: 5f986785bbba830f42a6aaa6a64f339cebeee7d860468817a7c7c49cf012eed9
4
- data.tar.gz: 32a73e123d38e7785f0f26b8515f5f370af3b6c0788d3665f1d69c54244dfac3
3
+ metadata.gz: 375574419d46a515bf9dd87889e0e984be4798dcd3fb81358251f84b7bb7a90d
4
+ data.tar.gz: cfced8571f737773afdff121a320ccc382ff4be58647cc5ed161e525887e9779
5
5
  SHA512:
6
- metadata.gz: a559de92104378e97072b90d01c68c9723c5635b95a409dca45b4f144c46b337d8a084a46495c616494d568ae1b7719225b4e93a79dbd385657f6255154b300a
7
- data.tar.gz: 3fc29fa1f0a916103647eb2d1220bcf07ac03b5476b1aa6423593c7eca13ffee880bc9eda123eb5677ce15785d9e838428dabd1d0da69963bf98586e004a1cf4
6
+ metadata.gz: '0895a53ea168749ddce15818251e11ca8694372d1e4578b6f6defa02296c1875b05b0f679cfde96907b1751f911bfad4a56e91136421291d1145589322f30d2a'
7
+ data.tar.gz: ae481308dd22126386d24334eb3ca4a60ba2e83780aacf350b223ab475b35224dcb976ca119ccde2e5b74ca8892c48853d007cc07e2b082ddaadeb7d3a7f0884
@@ -0,0 +1,133 @@
1
+ # IDs
2
+ certificate:
3
+ - Member certificate number
4
+ - type: string
5
+ short: c
6
+ id:
7
+ - Member iMIS ID
8
+ - type: integer
9
+ short: i
10
+ record_id:
11
+ - Specific Record ID
12
+ - type: integer
13
+ short: I
14
+ uuid:
15
+ - Record UUID
16
+ - type: string
17
+ short: u
18
+
19
+ # Primary interactions
20
+ 'on':
21
+ - Business Object name
22
+ - type: string
23
+ short: O
24
+ panel:
25
+ - Panel name
26
+ - type: string
27
+ short: P
28
+ query:
29
+ - IQA Query or Business Object name to query
30
+ - type: string
31
+ short: Q
32
+ mapper:
33
+ - Interact with mapped fields
34
+ - short: M
35
+ map:
36
+ - "Shorthand for <%= '-Mf'.green %> to access a single mapped field"
37
+ - type: string
38
+ short: m
39
+ business_objects:
40
+ - List available Business Objects
41
+ - short: B
42
+
43
+ # Alternate verbs
44
+ create:
45
+ - "Send a <%= 'POST'.cyan %> request"
46
+ - short: C
47
+ delete:
48
+ - "Send a <%= 'DELETE'.cyan %> request"
49
+ - short: D
50
+
51
+ # Data
52
+ ordinal:
53
+ - Ordinal ID within a Panel
54
+ - type: integer
55
+ short: r
56
+ field:
57
+ - Specific field to return or update
58
+ - type: string
59
+ short: f
60
+ fields:
61
+ - Specific field(s) to return
62
+ - type: strings
63
+ short: F
64
+ data:
65
+ - "JSON string input -- <%= 'STDIN'.red %> takes priority"
66
+ - type: string
67
+ short: d
68
+
69
+ # Query params
70
+ page:
71
+ - Specific page number from a query to return
72
+ - type: integer
73
+ short: p
74
+ page_size:
75
+ - Maximum number of records to include on a single page (max 500)
76
+ - type: integer
77
+ default: 100
78
+ short: -s
79
+ offset:
80
+ - Number of records to skip from the beginning of a query
81
+ - type: integer
82
+ short: -o
83
+
84
+ # Output formats
85
+ raw:
86
+ - Return raw JSON output, rather than simplified data
87
+ - short: R
88
+ jsonl:
89
+ - Format array output as JSONL
90
+ - short: j
91
+ csv:
92
+ - Format output as CSV (if possible)
93
+ - short: S
94
+
95
+ # General config
96
+ config:
97
+ - "Path to the JSON/YAML config file to use, or one of the following preset options: \
98
+ `<%= 'local'.yellow %>`, \
99
+ `<%= 'local_dot_config'.yellow %>`, \
100
+ `<%= 'local_config'.yellow %>`, \
101
+ `<%= 'user'.yellow %>`, \
102
+ `<%= 'system'.yellow %>`. \
103
+ If no option is provided, the first matching preset option will be automatically used."
104
+ - type: string
105
+ short: Y
106
+ show_config:
107
+ - Return the active config file path
108
+ - short: X
109
+ include_ids:
110
+ - "Include any <%= 'iMIS ID'.yellow %> and <%= 'Ordinal'.yellow %> properties in returned data"
111
+ - short: N
112
+
113
+ # Iteractions for supporting other language wrappers
114
+ auth_token:
115
+ - Return an auth token for other language wrappers
116
+ - short: T
117
+ token:
118
+ - Provide an existing auth token
119
+ - type: string
120
+ short: t
121
+
122
+ # Logging
123
+ quiet:
124
+ - "Suppress logging to <%= 'STDERR'.red %>"
125
+ - short: q
126
+ log:
127
+ - "Redirect logging to <%= 'STDOUT'.red %>"
128
+ - short: l
129
+ log_level:
130
+ - Set the logging level
131
+ - type: string
132
+ default: info
133
+ short: L
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Usps
4
4
  module Imis
5
- VERSION = '0.12.0'
5
+ VERSION = '0.12.2'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: usps-imis-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.12.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Julian Fiander
@@ -96,6 +96,7 @@ files:
96
96
  - lib/usps/imis/command_line.rb
97
97
  - lib/usps/imis/command_line/formatters.rb
98
98
  - lib/usps/imis/command_line/interface.rb
99
+ - lib/usps/imis/command_line/options.yml.erb
99
100
  - lib/usps/imis/command_line/options_parser.rb
100
101
  - lib/usps/imis/command_line/performers.rb
101
102
  - lib/usps/imis/config.rb