@rippling/rippling-sdk 0.2.0-alpha.53 → 0.2.0-alpha.55

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.
Files changed (105) hide show
  1. package/client.d.mts +24 -0
  2. package/client.d.mts.map +1 -1
  3. package/client.d.ts +24 -0
  4. package/client.d.ts.map +1 -1
  5. package/client.js +24 -0
  6. package/client.js.map +1 -1
  7. package/client.mjs +24 -0
  8. package/client.mjs.map +1 -1
  9. package/examples/functions/durable.ts +6 -6
  10. package/examples/manifest/custom-object-creation-workflow/custom-object-creation-workflow.ts +85 -0
  11. package/lib/manifest/index.d.mts +1 -0
  12. package/lib/manifest/index.d.mts.map +1 -1
  13. package/lib/manifest/index.d.ts +1 -0
  14. package/lib/manifest/index.d.ts.map +1 -1
  15. package/lib/manifest/index.js +3 -1
  16. package/lib/manifest/index.js.map +1 -1
  17. package/lib/manifest/index.mjs +1 -0
  18. package/lib/manifest/index.mjs.map +1 -1
  19. package/lib/manifest/manifest-builder.d.mts +1 -1
  20. package/lib/manifest/manifest-builder.d.mts.map +1 -1
  21. package/lib/manifest/manifest-builder.d.ts +1 -1
  22. package/lib/manifest/manifest-builder.d.ts.map +1 -1
  23. package/lib/manifest/manifest-builder.js.map +1 -1
  24. package/lib/manifest/manifest-builder.mjs.map +1 -1
  25. package/lib/manifest/workflow.d.mts +155 -0
  26. package/lib/manifest/workflow.d.mts.map +1 -0
  27. package/lib/manifest/workflow.d.ts +155 -0
  28. package/lib/manifest/workflow.d.ts.map +1 -0
  29. package/lib/manifest/workflow.js +51 -0
  30. package/lib/manifest/workflow.js.map +1 -0
  31. package/lib/manifest/workflow.mjs +47 -0
  32. package/lib/manifest/workflow.mjs.map +1 -0
  33. package/package.json +1 -1
  34. package/resources/break-types.d.mts +85 -0
  35. package/resources/break-types.d.mts.map +1 -0
  36. package/resources/break-types.d.ts +85 -0
  37. package/resources/break-types.d.ts.map +1 -0
  38. package/resources/break-types.js +32 -0
  39. package/resources/break-types.js.map +1 -0
  40. package/resources/break-types.mjs +28 -0
  41. package/resources/break-types.mjs.map +1 -0
  42. package/resources/earnings-inputs.d.mts +33 -0
  43. package/resources/earnings-inputs.d.mts.map +1 -1
  44. package/resources/earnings-inputs.d.ts +33 -0
  45. package/resources/earnings-inputs.d.ts.map +1 -1
  46. package/resources/index.d.mts +4 -0
  47. package/resources/index.d.mts.map +1 -1
  48. package/resources/index.d.ts +4 -0
  49. package/resources/index.d.ts.map +1 -1
  50. package/resources/index.js +10 -2
  51. package/resources/index.js.map +1 -1
  52. package/resources/index.mjs +4 -0
  53. package/resources/index.mjs.map +1 -1
  54. package/resources/scheduled-job-assignments.d.mts +156 -0
  55. package/resources/scheduled-job-assignments.d.mts.map +1 -0
  56. package/resources/scheduled-job-assignments.d.ts +156 -0
  57. package/resources/scheduled-job-assignments.d.ts.map +1 -0
  58. package/resources/scheduled-job-assignments.js +39 -0
  59. package/resources/scheduled-job-assignments.js.map +1 -0
  60. package/resources/scheduled-job-assignments.mjs +35 -0
  61. package/resources/scheduled-job-assignments.mjs.map +1 -0
  62. package/resources/software-deployments.d.mts +468 -0
  63. package/resources/software-deployments.d.mts.map +1 -0
  64. package/resources/software-deployments.d.ts +468 -0
  65. package/resources/software-deployments.d.ts.map +1 -0
  66. package/resources/software-deployments.js +56 -0
  67. package/resources/software-deployments.js.map +1 -0
  68. package/resources/software-deployments.mjs +52 -0
  69. package/resources/software-deployments.mjs.map +1 -0
  70. package/resources/worker-time-splits.d.mts +371 -0
  71. package/resources/worker-time-splits.d.mts.map +1 -0
  72. package/resources/worker-time-splits.d.ts +371 -0
  73. package/resources/worker-time-splits.d.ts.map +1 -0
  74. package/resources/worker-time-splits.js +56 -0
  75. package/resources/worker-time-splits.js.map +1 -0
  76. package/resources/worker-time-splits.mjs +52 -0
  77. package/resources/worker-time-splits.mjs.map +1 -0
  78. package/resources/workers.d.mts +1 -1
  79. package/resources/workers.d.ts +1 -1
  80. package/resources/workers.js +1 -1
  81. package/resources/workers.mjs +1 -1
  82. package/resources/workflow-action-executions.d.mts +1483 -1263
  83. package/resources/workflow-action-executions.d.mts.map +1 -1
  84. package/resources/workflow-action-executions.d.ts +1483 -1263
  85. package/resources/workflow-action-executions.d.ts.map +1 -1
  86. package/src/client.ts +100 -0
  87. package/src/lib/manifest/index.ts +26 -0
  88. package/src/lib/manifest/manifest-builder.ts +2 -1
  89. package/src/lib/manifest/workflow.ts +244 -0
  90. package/src/resources/break-types.ts +120 -0
  91. package/src/resources/earnings-inputs.ts +39 -0
  92. package/src/resources/index.ts +38 -0
  93. package/src/resources/scheduled-job-assignments.ts +216 -0
  94. package/src/resources/software-deployments.ts +607 -0
  95. package/src/resources/worker-time-splits.ts +480 -0
  96. package/src/resources/workers.ts +1 -1
  97. package/src/resources/workflow-action-executions.ts +1730 -1445
  98. package/src/version.ts +1 -1
  99. package/version.d.mts +1 -1
  100. package/version.d.ts +1 -1
  101. package/version.js +1 -1
  102. package/version.mjs +1 -1
  103. package/examples/manifest/dental-practice-management/manifest.json +0 -1912
  104. package/examples/manifest/gym-membership-management/manifest.json +0 -1991
  105. package/examples/manifest/simple-todo-app/manifest.json +0 -429
@@ -0,0 +1,468 @@
1
+ import { APIResource } from "../core/resource.mjs";
2
+ import * as BusinessPartnersAPI from "./business-partners.mjs";
3
+ import { APIPromise } from "../core/api-promise.mjs";
4
+ import { PageCursorURL, PagePromise } from "../core/pagination.mjs";
5
+ import { RequestOptions } from "../internal/request-options.mjs";
6
+ /**
7
+ * Software deployed to company devices
8
+ */
9
+ export declare class SoftwareDeployments extends APIResource {
10
+ /**
11
+ * A list of software deployments.
12
+ *
13
+ * - Requires: `API Tier 2`
14
+ * - Filterable fields: `software_id`, `active_group_type`
15
+ * - Expandable fields: `software`
16
+ * - Sortable fields: `id`, `created_at`, `updated_at`
17
+ */
18
+ list(query?: SoftwareDeploymentListParams | null | undefined, options?: RequestOptions): PagePromise<SoftwareDeploymentListResponsesPageCursorURL, SoftwareDeploymentListResponse>;
19
+ /**
20
+ * Create a new software deployment
21
+ */
22
+ create(body: SoftwareDeploymentCreateParams, options?: RequestOptions): APIPromise<SoftwareDeploymentCreateResponse>;
23
+ /**
24
+ * Retrieve a specific software deployment
25
+ */
26
+ retrieve(id: string, query?: SoftwareDeploymentRetrieveParams | null | undefined, options?: RequestOptions): APIPromise<SoftwareDeploymentRetrieveResponse>;
27
+ /**
28
+ * Update a specific software deployment.
29
+ */
30
+ update(id: string, body: SoftwareDeploymentUpdateParams, options?: RequestOptions): APIPromise<SoftwareDeploymentUpdateResponse>;
31
+ /**
32
+ * Delete a software deployment
33
+ */
34
+ delete(id: string, options?: RequestOptions): APIPromise<void>;
35
+ }
36
+ export type SoftwareDeploymentListResponsesPageCursorURL = PageCursorURL<SoftwareDeploymentListResponse>;
37
+ export interface SoftwareDeploymentListResponse {
38
+ /**
39
+ * Identifier field
40
+ */
41
+ id: string;
42
+ /**
43
+ * Record creation date
44
+ */
45
+ created_at: string;
46
+ /**
47
+ * The ID of the software to deploy.
48
+ */
49
+ software_id: string;
50
+ /**
51
+ * Record update date
52
+ */
53
+ updated_at: string;
54
+ /**
55
+ * Type of group targeting: 'Role' or 'Device'.
56
+ */
57
+ active_group_type?: 'Role' | 'Device';
58
+ /**
59
+ * Group ID for role-based targeting. Required if active_group_type is 'Role'. Must
60
+ * be null if 'Device'.
61
+ */
62
+ group_id?: string;
63
+ /**
64
+ * Whether installation report syncing is in progress. When true, deployment status
65
+ * may be temporarily inconsistent.
66
+ */
67
+ is_report_syncing_in_progress?: boolean;
68
+ /**
69
+ * Device group ID for device-based targeting. Required if active_group_type is
70
+ * 'Device'. Must be null if 'Role'.
71
+ */
72
+ ma_device_group_id?: string;
73
+ /**
74
+ * The software being deployed. Expandable to get software name, icon, and
75
+ * metadata.
76
+ *
77
+ * Expandable field
78
+ */
79
+ software?: SoftwareDeploymentListResponse.Software;
80
+ }
81
+ export declare namespace SoftwareDeploymentListResponse {
82
+ /**
83
+ * The software being deployed. Expandable to get software name, icon, and
84
+ * metadata.
85
+ *
86
+ * Expandable field
87
+ */
88
+ interface Software {
89
+ /**
90
+ * Identifier field
91
+ */
92
+ id: string;
93
+ /**
94
+ * Record creation date
95
+ */
96
+ created_at: string;
97
+ /**
98
+ * Record update date
99
+ */
100
+ updated_at: string;
101
+ /**
102
+ * Platforms this software is available on (macOS, Windows, etc).
103
+ */
104
+ available_platforms?: Array<string>;
105
+ /**
106
+ * Category of the software.
107
+ */
108
+ category?: string;
109
+ /**
110
+ * Description of the software.
111
+ */
112
+ description?: string;
113
+ /**
114
+ * Custom display name for the software.
115
+ */
116
+ display_name?: string;
117
+ /**
118
+ * URL for the software icon.
119
+ */
120
+ icon_url?: string;
121
+ /**
122
+ * The name of the software.
123
+ */
124
+ name?: string;
125
+ /**
126
+ * Scope of the software (PUBLIC, CUSTOM, INTERNAL).
127
+ */
128
+ scope?: string;
129
+ }
130
+ }
131
+ export interface SoftwareDeploymentCreateResponse {
132
+ /**
133
+ * Identifier field
134
+ */
135
+ id: string;
136
+ /**
137
+ * Record creation date
138
+ */
139
+ created_at: string;
140
+ /**
141
+ * The ID of the software to deploy.
142
+ */
143
+ software_id: string;
144
+ /**
145
+ * Record update date
146
+ */
147
+ updated_at: string;
148
+ /**
149
+ * Type of group targeting: 'Role' or 'Device'.
150
+ */
151
+ active_group_type?: 'Role' | 'Device';
152
+ /**
153
+ * Group ID for role-based targeting. Required if active_group_type is 'Role'. Must
154
+ * be null if 'Device'.
155
+ */
156
+ group_id?: string;
157
+ /**
158
+ * Whether installation report syncing is in progress. When true, deployment status
159
+ * may be temporarily inconsistent.
160
+ */
161
+ is_report_syncing_in_progress?: boolean;
162
+ /**
163
+ * Device group ID for device-based targeting. Required if active_group_type is
164
+ * 'Device'. Must be null if 'Role'.
165
+ */
166
+ ma_device_group_id?: string;
167
+ /**
168
+ * The software being deployed. Expandable to get software name, icon, and
169
+ * metadata.
170
+ *
171
+ * Expandable field
172
+ */
173
+ software?: SoftwareDeploymentCreateResponse.Software;
174
+ }
175
+ export declare namespace SoftwareDeploymentCreateResponse {
176
+ /**
177
+ * The software being deployed. Expandable to get software name, icon, and
178
+ * metadata.
179
+ *
180
+ * Expandable field
181
+ */
182
+ interface Software {
183
+ /**
184
+ * Identifier field
185
+ */
186
+ id: string;
187
+ /**
188
+ * Record creation date
189
+ */
190
+ created_at: string;
191
+ /**
192
+ * Record update date
193
+ */
194
+ updated_at: string;
195
+ /**
196
+ * Platforms this software is available on (macOS, Windows, etc).
197
+ */
198
+ available_platforms?: Array<string>;
199
+ /**
200
+ * Category of the software.
201
+ */
202
+ category?: string;
203
+ /**
204
+ * Description of the software.
205
+ */
206
+ description?: string;
207
+ /**
208
+ * Custom display name for the software.
209
+ */
210
+ display_name?: string;
211
+ /**
212
+ * URL for the software icon.
213
+ */
214
+ icon_url?: string;
215
+ /**
216
+ * The name of the software.
217
+ */
218
+ name?: string;
219
+ /**
220
+ * Scope of the software (PUBLIC, CUSTOM, INTERNAL).
221
+ */
222
+ scope?: string;
223
+ }
224
+ }
225
+ /**
226
+ * Meta information for the response.
227
+ */
228
+ export interface SoftwareDeploymentRetrieveResponse extends BusinessPartnersAPI.Meta {
229
+ /**
230
+ * Identifier field
231
+ */
232
+ id: string;
233
+ /**
234
+ * Record creation date
235
+ */
236
+ created_at: string;
237
+ /**
238
+ * The ID of the software to deploy.
239
+ */
240
+ software_id: string;
241
+ /**
242
+ * Record update date
243
+ */
244
+ updated_at: string;
245
+ /**
246
+ * Type of group targeting: 'Role' or 'Device'.
247
+ */
248
+ active_group_type?: 'Role' | 'Device';
249
+ /**
250
+ * Group ID for role-based targeting. Required if active_group_type is 'Role'. Must
251
+ * be null if 'Device'.
252
+ */
253
+ group_id?: string;
254
+ /**
255
+ * Whether installation report syncing is in progress. When true, deployment status
256
+ * may be temporarily inconsistent.
257
+ */
258
+ is_report_syncing_in_progress?: boolean;
259
+ /**
260
+ * Device group ID for device-based targeting. Required if active_group_type is
261
+ * 'Device'. Must be null if 'Role'.
262
+ */
263
+ ma_device_group_id?: string;
264
+ /**
265
+ * The software being deployed. Expandable to get software name, icon, and
266
+ * metadata.
267
+ *
268
+ * Expandable field
269
+ */
270
+ software?: SoftwareDeploymentRetrieveResponse.Software;
271
+ }
272
+ export declare namespace SoftwareDeploymentRetrieveResponse {
273
+ /**
274
+ * The software being deployed. Expandable to get software name, icon, and
275
+ * metadata.
276
+ *
277
+ * Expandable field
278
+ */
279
+ interface Software {
280
+ /**
281
+ * Identifier field
282
+ */
283
+ id: string;
284
+ /**
285
+ * Record creation date
286
+ */
287
+ created_at: string;
288
+ /**
289
+ * Record update date
290
+ */
291
+ updated_at: string;
292
+ /**
293
+ * Platforms this software is available on (macOS, Windows, etc).
294
+ */
295
+ available_platforms?: Array<string>;
296
+ /**
297
+ * Category of the software.
298
+ */
299
+ category?: string;
300
+ /**
301
+ * Description of the software.
302
+ */
303
+ description?: string;
304
+ /**
305
+ * Custom display name for the software.
306
+ */
307
+ display_name?: string;
308
+ /**
309
+ * URL for the software icon.
310
+ */
311
+ icon_url?: string;
312
+ /**
313
+ * The name of the software.
314
+ */
315
+ name?: string;
316
+ /**
317
+ * Scope of the software (PUBLIC, CUSTOM, INTERNAL).
318
+ */
319
+ scope?: string;
320
+ }
321
+ }
322
+ export interface SoftwareDeploymentUpdateResponse {
323
+ /**
324
+ * Identifier field
325
+ */
326
+ id: string;
327
+ /**
328
+ * Record creation date
329
+ */
330
+ created_at: string;
331
+ /**
332
+ * The ID of the software to deploy.
333
+ */
334
+ software_id: string;
335
+ /**
336
+ * Record update date
337
+ */
338
+ updated_at: string;
339
+ /**
340
+ * Type of group targeting: 'Role' or 'Device'.
341
+ */
342
+ active_group_type?: 'Role' | 'Device';
343
+ /**
344
+ * Group ID for role-based targeting. Required if active_group_type is 'Role'. Must
345
+ * be null if 'Device'.
346
+ */
347
+ group_id?: string;
348
+ /**
349
+ * Whether installation report syncing is in progress. When true, deployment status
350
+ * may be temporarily inconsistent.
351
+ */
352
+ is_report_syncing_in_progress?: boolean;
353
+ /**
354
+ * Device group ID for device-based targeting. Required if active_group_type is
355
+ * 'Device'. Must be null if 'Role'.
356
+ */
357
+ ma_device_group_id?: string;
358
+ /**
359
+ * The software being deployed. Expandable to get software name, icon, and
360
+ * metadata.
361
+ *
362
+ * Expandable field
363
+ */
364
+ software?: SoftwareDeploymentUpdateResponse.Software;
365
+ }
366
+ export declare namespace SoftwareDeploymentUpdateResponse {
367
+ /**
368
+ * The software being deployed. Expandable to get software name, icon, and
369
+ * metadata.
370
+ *
371
+ * Expandable field
372
+ */
373
+ interface Software {
374
+ /**
375
+ * Identifier field
376
+ */
377
+ id: string;
378
+ /**
379
+ * Record creation date
380
+ */
381
+ created_at: string;
382
+ /**
383
+ * Record update date
384
+ */
385
+ updated_at: string;
386
+ /**
387
+ * Platforms this software is available on (macOS, Windows, etc).
388
+ */
389
+ available_platforms?: Array<string>;
390
+ /**
391
+ * Category of the software.
392
+ */
393
+ category?: string;
394
+ /**
395
+ * Description of the software.
396
+ */
397
+ description?: string;
398
+ /**
399
+ * Custom display name for the software.
400
+ */
401
+ display_name?: string;
402
+ /**
403
+ * URL for the software icon.
404
+ */
405
+ icon_url?: string;
406
+ /**
407
+ * The name of the software.
408
+ */
409
+ name?: string;
410
+ /**
411
+ * Scope of the software (PUBLIC, CUSTOM, INTERNAL).
412
+ */
413
+ scope?: string;
414
+ }
415
+ }
416
+ export interface SoftwareDeploymentListParams {
417
+ cursor?: string;
418
+ expand?: string;
419
+ filter?: string;
420
+ order_by?: string;
421
+ }
422
+ export interface SoftwareDeploymentCreateParams {
423
+ /**
424
+ * The ID of the software to deploy.
425
+ */
426
+ software_id: string;
427
+ /**
428
+ * Type of group targeting: 'Role' or 'Device'.
429
+ */
430
+ active_group_type?: 'Role' | 'Device';
431
+ /**
432
+ * Group ID for role-based targeting. Required if active_group_type is 'Role'. Must
433
+ * be null if 'Device'.
434
+ */
435
+ group_id?: string;
436
+ /**
437
+ * Device group ID for device-based targeting. Required if active_group_type is
438
+ * 'Device'. Must be null if 'Role'.
439
+ */
440
+ ma_device_group_id?: string;
441
+ }
442
+ export interface SoftwareDeploymentRetrieveParams {
443
+ expand?: string;
444
+ }
445
+ export interface SoftwareDeploymentUpdateParams {
446
+ /**
447
+ * The ID of the software to deploy.
448
+ */
449
+ software_id: string;
450
+ /**
451
+ * Type of group targeting: 'Role' or 'Device'.
452
+ */
453
+ active_group_type?: 'Role' | 'Device';
454
+ /**
455
+ * Group ID for role-based targeting. Required if active_group_type is 'Role'. Must
456
+ * be null if 'Device'.
457
+ */
458
+ group_id?: string;
459
+ /**
460
+ * Device group ID for device-based targeting. Required if active_group_type is
461
+ * 'Device'. Must be null if 'Role'.
462
+ */
463
+ ma_device_group_id?: string;
464
+ }
465
+ export declare namespace SoftwareDeployments {
466
+ export { type SoftwareDeploymentListResponse as SoftwareDeploymentListResponse, type SoftwareDeploymentCreateResponse as SoftwareDeploymentCreateResponse, type SoftwareDeploymentRetrieveResponse as SoftwareDeploymentRetrieveResponse, type SoftwareDeploymentUpdateResponse as SoftwareDeploymentUpdateResponse, type SoftwareDeploymentListResponsesPageCursorURL as SoftwareDeploymentListResponsesPageCursorURL, type SoftwareDeploymentListParams as SoftwareDeploymentListParams, type SoftwareDeploymentCreateParams as SoftwareDeploymentCreateParams, type SoftwareDeploymentRetrieveParams as SoftwareDeploymentRetrieveParams, type SoftwareDeploymentUpdateParams as SoftwareDeploymentUpdateParams, };
467
+ }
468
+ //# sourceMappingURL=software-deployments.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"software-deployments.d.mts","sourceRoot":"","sources":["../src/resources/software-deployments.ts"],"names":[],"mappings":"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"}