@zapier/zapier-sdk-core 0.2.0 → 0.3.0

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @zapier/zapier-sdk-core
2
2
 
3
+ ## 0.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 044e801: Switch numeric IDs to strings.
8
+
3
9
  ## 0.2.0
4
10
 
5
11
  ### Minor Changes
package/openapi.yaml CHANGED
@@ -151,7 +151,7 @@ components:
151
151
  type: object
152
152
  properties:
153
153
  id:
154
- type: number
154
+ type: string
155
155
  description: Unique identifier for the authentication
156
156
  date:
157
157
  type: string
@@ -160,7 +160,7 @@ components:
160
160
  type: string
161
161
  description: Date last changed
162
162
  account_id:
163
- type: number
163
+ type: string
164
164
  description: Account ID associated with this authentication
165
165
  destination_selected_api:
166
166
  type:
@@ -224,7 +224,7 @@ components:
224
224
  type: string
225
225
  description: Implementation ID (was selected_api)
226
226
  profile_id:
227
- type: number
227
+ type: string
228
228
  description: Profile ID (was customuser_id)
229
229
  is_expired:
230
230
  type: string
@@ -249,10 +249,10 @@ components:
249
249
  - shared_with_all
250
250
  description: Normalized authentication item returned by getAuthentication handler
251
251
  example:
252
- id: 12345
252
+ id: "12345"
253
253
  date: 2023-01-15T10:30:00Z
254
254
  lastchanged: 2023-06-20T14:45:00Z
255
- account_id: 98765
255
+ account_id: "98765"
256
256
  destination_selected_api: null
257
257
  is_invite_only: false
258
258
  is_private: true
@@ -270,7 +270,7 @@ components:
270
270
  can_view: true
271
271
  can_delete: true
272
272
  implementation_id: SlackCLIAPI@1.0.0
273
- profile_id: 54321
273
+ profile_id: "54321"
274
274
  is_expired: "false"
275
275
  expired_at: null
276
276
  app_key: SlackCLIAPI
@@ -291,7 +291,7 @@ components:
291
291
  type: object
292
292
  properties:
293
293
  id:
294
- type: number
294
+ type: string
295
295
  description: Unique identifier for the authentication
296
296
  date:
297
297
  type: string
@@ -300,7 +300,7 @@ components:
300
300
  type: string
301
301
  description: Date last changed
302
302
  account_id:
303
- type: number
303
+ type: string
304
304
  description: Account ID associated with this authentication
305
305
  destination_selected_api:
306
306
  type:
@@ -364,7 +364,7 @@ components:
364
364
  type: string
365
365
  description: Implementation ID (was selected_api)
366
366
  profile_id:
367
- type: number
367
+ type: string
368
368
  description: Profile ID (was customuser_id)
369
369
  is_expired:
370
370
  type: string
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zapier/zapier-sdk-core",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "Core schemas and TypeScript types for the Zapier SDK API",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "author": "Zapier, Inc.",