@constructive-io/sdk 0.12.23 → 0.13.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/admin/orm/index.d.ts +15 -0
- package/admin/orm/input-types.d.ts +74 -0
- package/admin/orm/mutation/index.d.ts +45 -1
- package/admin/orm/mutation/index.js +36 -0
- package/auth/orm/index.d.ts +15 -0
- package/auth/orm/input-types.d.ts +74 -0
- package/auth/orm/mutation/index.d.ts +45 -1
- package/auth/orm/mutation/index.js +36 -0
- package/esm/admin/orm/index.d.ts +15 -0
- package/esm/admin/orm/input-types.d.ts +74 -0
- package/esm/admin/orm/mutation/index.d.ts +45 -1
- package/esm/admin/orm/mutation/index.js +36 -0
- package/esm/auth/orm/index.d.ts +15 -0
- package/esm/auth/orm/input-types.d.ts +74 -0
- package/esm/auth/orm/mutation/index.d.ts +45 -1
- package/esm/auth/orm/mutation/index.js +36 -0
- package/esm/objects/orm/index.d.ts +15 -0
- package/esm/objects/orm/input-types.d.ts +74 -0
- package/esm/objects/orm/mutation/index.d.ts +45 -1
- package/esm/objects/orm/mutation/index.js +36 -0
- package/esm/public/orm/index.d.ts +15 -0
- package/esm/public/orm/input-types.d.ts +107 -1
- package/esm/public/orm/mutation/index.d.ts +45 -1
- package/esm/public/orm/mutation/index.js +36 -0
- package/objects/orm/index.d.ts +15 -0
- package/objects/orm/input-types.d.ts +74 -0
- package/objects/orm/mutation/index.d.ts +45 -1
- package/objects/orm/mutation/index.js +36 -0
- package/package.json +3 -3
- package/public/orm/index.d.ts +15 -0
- package/public/orm/input-types.d.ts +107 -1
- package/public/orm/mutation/index.d.ts +45 -1
- package/public/orm/mutation/index.js +36 -0
|
@@ -497,5 +497,41 @@ function createMutationOperations(client) {
|
|
|
497
497
|
},
|
|
498
498
|
], input_types_1.connectionFieldsMap, 'VerifyTotpPayload'),
|
|
499
499
|
}),
|
|
500
|
+
requestUploadUrl: (args, options) => new query_builder_1.QueryBuilder({
|
|
501
|
+
client,
|
|
502
|
+
operation: 'mutation',
|
|
503
|
+
operationName: 'RequestUploadUrl',
|
|
504
|
+
fieldName: 'requestUploadUrl',
|
|
505
|
+
...(0, query_builder_1.buildCustomDocument)('mutation', 'RequestUploadUrl', 'requestUploadUrl', options.select, args, [
|
|
506
|
+
{
|
|
507
|
+
name: 'input',
|
|
508
|
+
type: 'RequestUploadUrlInput!',
|
|
509
|
+
},
|
|
510
|
+
], input_types_1.connectionFieldsMap, 'RequestUploadUrlPayload'),
|
|
511
|
+
}),
|
|
512
|
+
confirmUpload: (args, options) => new query_builder_1.QueryBuilder({
|
|
513
|
+
client,
|
|
514
|
+
operation: 'mutation',
|
|
515
|
+
operationName: 'ConfirmUpload',
|
|
516
|
+
fieldName: 'confirmUpload',
|
|
517
|
+
...(0, query_builder_1.buildCustomDocument)('mutation', 'ConfirmUpload', 'confirmUpload', options.select, args, [
|
|
518
|
+
{
|
|
519
|
+
name: 'input',
|
|
520
|
+
type: 'ConfirmUploadInput!',
|
|
521
|
+
},
|
|
522
|
+
], input_types_1.connectionFieldsMap, 'ConfirmUploadPayload'),
|
|
523
|
+
}),
|
|
524
|
+
provisionBucket: (args, options) => new query_builder_1.QueryBuilder({
|
|
525
|
+
client,
|
|
526
|
+
operation: 'mutation',
|
|
527
|
+
operationName: 'ProvisionBucket',
|
|
528
|
+
fieldName: 'provisionBucket',
|
|
529
|
+
...(0, query_builder_1.buildCustomDocument)('mutation', 'ProvisionBucket', 'provisionBucket', options.select, args, [
|
|
530
|
+
{
|
|
531
|
+
name: 'input',
|
|
532
|
+
type: 'ProvisionBucketInput!',
|
|
533
|
+
},
|
|
534
|
+
], input_types_1.connectionFieldsMap, 'ProvisionBucketPayload'),
|
|
535
|
+
}),
|
|
500
536
|
};
|
|
501
537
|
}
|